@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap";*,:before,:after{box-sizing:border-box;margin:0;padding:0}:root{--primary:#155dfc;--primary-dark:#0e4fd4;--primary-light:#3b82f6;--secondary:#155dfc;--accent:#06b6d4;--success:#10b981;--warning:#f59e0b;--danger:#ef4444;--gray-50:#f9fafb;--gray-100:#f3f4f6;--gray-200:#e5e7eb;--gray-300:#d1d5db;--gray-400:#9ca3af;--gray-500:#6b7280;--gray-600:#4b5563;--gray-700:#374151;--gray-800:#1f2937;--gray-900:#111827;--white:#fff;--radius-sm:8px;--radius:12px;--radius-lg:16px;--radius-xl:24px;--shadow-sm:0 1px 2px #0000000d;--shadow:0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;--shadow-md:0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;--shadow-lg:0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a;--transition:all .2s ease}html{scroll-behavior:smooth}body{background:var(--gray-50);color:var(--gray-800);-webkit-font-smoothing:antialiased;min-height:100vh;font-family:Inter,system-ui,sans-serif}#root{min-height:100vh}a{color:inherit;text-decoration:none}button{cursor:pointer;font-family:inherit}input,textarea,select{outline:none;font-family:inherit}input:-webkit-autofill{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}input:-webkit-autofill:hover{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}input:-webkit-autofill:focus{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}input:-webkit-autofill:active{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}textarea:-webkit-autofill{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}select:-webkit-autofill{caret-color:var(--gray-900);transition:background-color 9999s ease-in-out;-webkit-box-shadow:0 0 0 1000px var(--white) inset!important;box-shadow:0 0 0 1000px var(--white) inset!important;-webkit-text-fill-color:var(--gray-900)!important}img{max-width:100%}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:var(--gray-100)}::-webkit-scrollbar-thumb{background:var(--gray-300);border-radius:3px}.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}.container-sm{max-width:900px;margin:0 auto;padding:0 1.5rem}.btn{border-radius:var(--radius);transition:var(--transition);white-space:nowrap;border:none;justify-content:center;align-items:center;gap:.5rem;padding:.6rem 1.4rem;font-size:.9rem;font-weight:600;display:inline-flex}.btn-primary{background:var(--primary);color:var(--white)}.btn-primary:hover{background:var(--primary-dark);box-shadow:var(--shadow-md);transform:translateY(-1px)}.btn-secondary{background:var(--white);color:var(--primary);border:2px solid var(--primary)}.btn-secondary:hover{background:var(--primary);color:var(--white)}.btn-ghost{color:var(--gray-600);border:1px solid var(--gray-200);background:0 0}.btn-ghost:hover{background:var(--gray-100)}.btn-danger{background:var(--danger);color:var(--white)}.btn-danger:hover{background:#dc2626}.btn-sm{padding:.4rem 1rem;font-size:.8rem}.btn-lg{padding:.85rem 2rem;font-size:1rem}.btn-full{width:100%}.btn:disabled{opacity:.6;cursor:not-allowed;transform:none!important}.card{background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);border:1px solid var(--gray-200);overflow:hidden}.badge{border-radius:999px;align-items:center;gap:.25rem;padding:.2rem .6rem;font-size:.75rem;font-weight:600;display:inline-flex}.badge-gray{background:var(--gray-100);color:var(--gray-600)}.input-group{flex-direction:column;gap:.4rem;display:flex}.input-group label{color:var(--gray-700);font-size:.85rem;font-weight:600}.input{border:1.5px solid var(--gray-200);border-radius:var(--radius);background:var(--white);width:100%;transition:var(--transition);color:var(--gray-800);padding:.7rem 1rem;font-size:.9rem}.input:focus{border-color:var(--primary);box-shadow:0 0 0 3px #155dfc1f}.input.error{border-color:var(--danger)}.star{color:#f59e0b}.gradient-text{background:var(--primary);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.verified-badge{color:var(--primary);align-items:center;gap:.2rem;font-size:.75rem;font-weight:600;display:inline-flex}.spinner{border:3px solid var(--gray-200);border-top-color:var(--primary);border-radius:50%;width:40px;height:40px;margin:2rem auto;animation:.8s linear infinite spin}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.skeleton{background:linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);border-radius:var(--radius);background-size:200% 100%;height:1rem;animation:1.5s infinite shimmer}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}@media (width<=768px){.container,.container-sm{padding:0 1rem}}.logo{flex-shrink:0;align-items:center;gap:.55rem;text-decoration:none;display:inline-flex}.logo__icon{color:#fff;background:#155dfc;border-radius:9px;flex-shrink:0;justify-content:center;align-items:center;width:34px;height:34px;font-size:.95rem;font-weight:900;display:flex}.logo__text{letter-spacing:-.3px;color:var(--gray-900);font-size:1.15rem;font-weight:800}.logo--light .logo__text{color:#fff}.logo--sm .logo__icon{border-radius:7px;width:28px;height:28px;font-size:.8rem}.logo--sm .logo__text{font-size:1rem}.logo--lg .logo__icon{border-radius:12px;width:42px;height:42px;font-size:1.1rem}.logo--lg .logo__text{font-size:1.35rem}.landing{background:var(--white);min-height:100vh}.landing-nav{z-index:100;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--gray-200);background:#ffffffe6;position:sticky;top:0}.landing-nav__inner{justify-content:space-between;align-items:center;height:64px;display:flex}.landing-nav__logo{align-items:center;display:flex}.landing-nav__links{gap:2rem;display:flex}.landing-nav__links a{color:var(--gray-600);transition:var(--transition);font-size:.9rem;font-weight:500}.landing-nav__links a:hover{color:var(--primary)}.landing-nav__cta{gap:.75rem;display:flex}.hero{color:#fff;background:linear-gradient(100deg,#1a4ef5 0%,#3730c8 35%,#6d28d9 65%,#8b1af7 100%);padding:5rem 0 7rem;position:relative;overflow:hidden}.hero__inner{z-index:1;grid-template-columns:1fr 1fr;align-items:center;gap:3rem;display:grid;position:relative}.hero__content{flex-direction:column;align-items:flex-start;display:flex}.hero__badge{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);color:#fff;background:#ffffff2e;border:1px solid #ffffff40;border-radius:999px;align-items:center;gap:.5rem;margin-bottom:1.75rem;padding:.45rem 1rem;font-size:.82rem;font-weight:500;display:inline-flex}.hero__title{letter-spacing:-1.5px;color:#fff;text-align:left;margin-bottom:1.25rem;font-size:3.75rem;font-weight:900;line-height:1.05}.hero__desc{color:#ffffffd1;text-align:left;max-width:480px;margin-bottom:2rem;font-size:1rem;line-height:1.7}.hero__actions{flex-wrap:wrap;gap:1rem;display:flex}.hero__btn-primary{color:#1a4ef5;background:#fff;border:none;border-radius:14px;font-weight:700}.hero__btn-primary:hover{background:#f0f4ff;transform:translateY(-2px);box-shadow:0 8px 24px #0000002e}.hero__btn-outline{color:#fff;background:0 0;border:2px solid #ffffffa6;border-radius:14px;font-weight:700}.hero__btn-outline:hover{background:#ffffff1f;border-color:#fff;transform:translateY(-2px)}.hero__visual{justify-content:center;align-items:center;display:flex}.hero__mockup{width:100%;max-width:420px;height:320px;position:relative}.hero__mockup-card{background:#fff;border-radius:16px;width:300px;padding:1.1rem 1.25rem;position:absolute;box-shadow:0 20px 60px #00000040}.hero__mockup-card:first-child{z-index:3;top:0;left:0}.hero__mockup-card--offset{z-index:2;top:90px;left:60px}.hero__mockup-card--back{z-index:1;opacity:.7;top:180px;left:120px}.hero__mockup-card__header{justify-content:space-between;align-items:center;margin-bottom:.6rem;display:flex}.hero__mockup-cat{color:var(--gray-500);font-size:.75rem;font-weight:600}.hero__mockup-rating{color:#f59e0b;font-size:.75rem;font-weight:700}.hero__mockup-card__title{color:var(--gray-900);margin-bottom:.75rem;font-size:.9rem;font-weight:700;line-height:1.3}.hero__mockup-card__footer{justify-content:space-between;align-items:center;display:flex}.hero__mockup-price{color:#1a4ef5;font-size:1rem;font-weight:800}.hero__mockup-tag{color:#1a4ef5;background:#eff6ff;border-radius:999px;padding:.2rem .55rem;font-size:.7rem;font-weight:600}@keyframes floatCard{0%,to{transform:translateY(0)}50%{transform:translateY(-8px)}}.hero__mockup-card:first-child{animation:4s ease-in-out infinite floatCard}.hero__mockup-card--offset{animation:4s ease-in-out .8s infinite floatCard}.hero__mockup-card--back{animation:4s ease-in-out 1.6s infinite floatCard}.hero__wave{line-height:0;position:absolute;bottom:-1px;left:0;right:0}.hero__wave svg{width:100%;height:80px;display:block}.trust-bar-wrapper{background:var(--gray-50);margin-top:-2px;padding:0 0 2rem}.trust-bar{border-radius:var(--radius-xl);border:1px solid var(--gray-200);background:var(--white);z-index:2;justify-content:space-between;align-items:center;gap:1.5rem;margin-top:-1.5rem;padding:1.5rem 2rem;display:flex;position:relative;box-shadow:0 8px 32px #155dfc1a,0 2px 8px #0000000f}.trust-bar__item{flex:1;align-items:center;gap:1rem;display:flex}.trust-bar__icon{border-radius:var(--radius);flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;display:flex}.trust-bar__title{color:var(--gray-900);margin-bottom:.2rem;font-size:.95rem;font-weight:700}.trust-bar__sub{font-size:.82rem;font-weight:500}.trust-bar__divider{background:var(--gray-200);flex-shrink:0;width:1px;height:48px}@media (width<=768px){.trust-bar{flex-direction:column;align-items:flex-start;gap:1.25rem;padding:1.25rem}.trust-bar__divider{width:100%;height:1px}}.section-header{text-align:center;margin-bottom:3rem}.section-header h2{color:var(--gray-900);margin-bottom:.75rem;font-size:2rem;font-weight:800}.section-header p{color:var(--gray-500);max-width:500px;margin:0 auto;font-size:1rem}.categories{background:var(--gray-50);padding:5rem 0}.categories__grid{grid-template-columns:repeat(4,1fr);gap:1rem;display:grid}.category-card{border:1.5px solid var(--gray-200);border-radius:var(--radius-lg);text-align:center;transition:var(--transition);cursor:pointer;background:#fff;flex-direction:column;align-items:center;gap:.75rem;padding:1.5rem 1rem;display:flex}.category-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md);transform:translateY(-3px)}.category-card__icon{font-size:2rem}.category-card__label{color:var(--gray-700);font-size:.85rem;font-weight:600}.how-it-works{background:#fff;padding:5rem 0}.steps{grid-template-columns:repeat(3,1fr);gap:3rem;display:grid;position:relative}.step{text-align:center;position:relative}.step__number{color:#fff;border-radius:16px;justify-content:center;align-items:center;width:56px;height:56px;margin:0 auto 1.25rem;font-size:1.1rem;font-weight:900;display:flex}.step__title{color:var(--gray-900);margin-bottom:.75rem;font-size:1.1rem;font-weight:700}.step__desc{color:var(--gray-500);font-size:.9rem;line-height:1.7}.features{background:var(--gray-50);padding:5rem 0}.features__grid{grid-template-columns:repeat(3,1fr);gap:1.5rem;display:grid}.feature-card{border-radius:var(--radius-lg);border:1px solid var(--gray-200);transition:var(--transition);background:#fff;padding:1.75rem}.feature-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.feature-card__icon{border-radius:var(--radius);justify-content:center;align-items:center;width:52px;height:52px;margin-bottom:1.25rem;display:flex}.feature-card h3{color:var(--gray-900);margin-bottom:.5rem;font-size:1rem;font-weight:700}.feature-card p{color:var(--gray-500);font-size:.875rem;line-height:1.6}.reviews{background:#fff;padding:5rem 0}.reviews__grid{grid-template-columns:repeat(2,1fr);gap:1.5rem;display:grid}.review-card{background:var(--gray-50);border-radius:var(--radius-lg);border:1px solid var(--gray-200);transition:var(--transition);padding:1.75rem}.review-card:hover{box-shadow:var(--shadow-md)}.review-card__stars{color:#f59e0b;margin-bottom:1rem;font-size:1.1rem}.review-card__text{color:var(--gray-600);margin-bottom:1.25rem;font-size:.9rem;font-style:italic;line-height:1.7}.review-card__author{align-items:center;gap:.75rem;display:flex}.review-card__avatar{background:var(--primary);color:#fff;border-radius:50%;justify-content:center;align-items:center;width:40px;height:40px;font-size:1rem;font-weight:700;display:flex}.review-card__name{color:var(--gray-900);font-size:.9rem;font-weight:700}.review-card__meta{color:var(--gray-500);font-size:.8rem}.universities{background:var(--gray-50);padding:4rem 0}.uni-list{flex-wrap:wrap;justify-content:center;gap:1.5rem;margin-bottom:1.5rem;display:flex}.uni-card{border:2px solid var(--gray-200);border-radius:var(--radius-lg);text-align:center;min-width:200px;transition:var(--transition);background:#fff;padding:1.5rem 2.5rem}.uni-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md)}.uni-card__code{color:var(--primary);margin-bottom:.25rem;font-size:1.5rem;font-weight:900}.uni-card__name{color:var(--gray-800);margin-bottom:.25rem;font-size:.9rem;font-weight:600}.uni-card__location{color:var(--gray-500);font-size:.8rem}.uni-coming-soon{text-align:center;color:var(--gray-400);font-size:.85rem}.cta{text-align:center;color:#fff;background:linear-gradient(135deg,#155dfc,#6d28d9,#9810fa);padding:5rem 0}.cta__inner h2{color:#fff;margin-bottom:1rem;font-size:2.25rem;font-weight:800}.cta__inner p{color:#ffffffbf;max-width:500px;margin:0 auto 2rem;font-size:1rem}.cta__actions{flex-wrap:wrap;justify-content:center;gap:1rem;display:flex}.cta__actions .btn-primary{color:var(--primary);background:#fff}.cta__actions .btn-primary:hover{background:var(--gray-100)}.cta__actions .btn-secondary{color:#fff;background:0 0;border:2px solid #fff9}.cta__actions .btn-secondary:hover{background:#ffffff26;border-color:#fff}.landing-footer{background:var(--gray-900);padding:4rem 0 0}.landing-footer__inner{grid-template-columns:1fr 2fr;gap:4rem;margin-bottom:3rem;display:grid}.landing-footer__brand{flex-direction:column;gap:.75rem;display:flex}.landing-footer__brand p{color:var(--gray-400);max-width:220px;font-size:.85rem;line-height:1.6}.landing-footer__links{grid-template-columns:repeat(3,1fr);gap:2rem;display:grid}.landing-footer__links div{flex-direction:column;gap:.75rem;display:flex}.landing-footer__links h4{color:#fff;text-transform:uppercase;letter-spacing:.05em;font-size:.85rem;font-weight:700}.landing-footer__links a{color:var(--gray-400);transition:var(--transition);font-size:.85rem}.landing-footer__links a:hover{color:#fff}.landing-footer__bottom{border-top:1px solid var(--gray-800);text-align:center;padding:1.5rem 0}.landing-footer__bottom p{color:var(--gray-500);font-size:.8rem}@media (width<=1024px){.hero__inner{grid-template-columns:1fr;gap:2rem}.hero__visual{display:none}.hero__content{text-align:center;align-items:center}.hero__title{text-align:center;font-size:3rem}.hero__desc{text-align:center}.hero__actions{justify-content:center}.features__grid{grid-template-columns:repeat(2,1fr)}}@media (width<=768px){.hero__title{letter-spacing:-1px;font-size:2.4rem}.landing-nav__links{display:none}.categories__grid{grid-template-columns:repeat(2,1fr)}.steps{grid-template-columns:1fr;gap:2rem}.features__grid,.reviews__grid{grid-template-columns:1fr}.landing-footer__inner{grid-template-columns:1fr;gap:2rem}.landing-footer__links{grid-template-columns:repeat(2,1fr)}.hero__actions{flex-direction:column}.hero__btn-primary,.hero__btn-outline{justify-content:center;width:100%}}.auth-page{background:var(--gray-50);justify-content:center;align-items:center;min-height:100vh;padding:2rem 1rem;display:flex;position:relative}.auth-bg{z-index:0;background:linear-gradient(135deg,#eff6ff 0%,#f5f3ff 50%,#dbeafe 100%);position:fixed;inset:0}.auth-container{z-index:1;width:100%;max-width:440px;position:relative}.auth-card{padding:2.5rem 2rem}@media (width>=480px){.auth-card{padding:2.5rem}}.auth-card__header{text-align:center;margin-bottom:2rem}.auth-logo{justify-content:center;margin-bottom:1rem;display:flex}.auth-card__title{color:var(--gray-900);margin-bottom:.4rem;font-size:1.6rem;font-weight:700}.auth-card__subtitle{color:var(--gray-500);font-size:.9rem}.auth-form{flex-direction:column;gap:1.1rem;margin-bottom:1.5rem;display:flex}.auth-password-wrapper,.auth-input-icon-wrapper{position:relative}.auth-input-icon{color:var(--gray-400);pointer-events:none;flex-shrink:0;position:absolute;top:50%;left:.9rem;transform:translateY(-50%)}.auth-field-hint{color:var(--gray-400);margin-top:.25rem;font-size:.78rem;line-height:1.4;display:block}.auth-password-toggle{color:var(--gray-400);cursor:pointer;background:0 0;border:none;align-items:center;padding:.25rem;display:flex;position:absolute;top:50%;right:.75rem;transform:translateY(-50%)}.auth-password-toggle:hover{color:var(--gray-700)}.spinner-inline{border:2px solid #ffffff4d;border-top-color:#fff;border-radius:50%;flex-shrink:0;width:16px;height:16px;animation:.7s linear infinite spin;display:inline-block}.auth-card__footer{text-align:center;color:var(--gray-500);font-size:.875rem}.auth-link{color:var(--primary);font-weight:600}.auth-link:hover{text-decoration:underline}.auth-deco{flex-wrap:wrap;justify-content:center;gap:.5rem;margin-top:1.25rem;display:flex}.auth-deco__pill{border:1px solid var(--gray-200);color:var(--gray-600);box-shadow:var(--shadow-sm);background:#fff;border-radius:999px;padding:.3rem .85rem;font-size:.8rem}.stepper{align-items:flex-start;margin-bottom:2rem;display:flex}.stepper__step{flex-direction:column;flex:1;align-items:center;display:flex;position:relative}.stepper__step:not(:first-child):before{content:"";background:var(--gray-200);width:100%;height:2px;transition:background .3s;position:absolute;top:15px;right:50%}.stepper__step.done:not(:first-child):before{background:var(--primary)}.stepper__dot{z-index:1;border:2px solid var(--gray-300);width:30px;height:30px;color:var(--gray-400);background:#fff;border-radius:50%;justify-content:center;align-items:center;margin-bottom:.5rem;font-size:.8rem;font-weight:700;transition:all .25s;display:flex;position:relative}.stepper__step.active .stepper__dot{border-color:var(--primary);background:var(--primary);color:#fff;box-shadow:0 0 0 4px #155dfc26}.stepper__step.done .stepper__dot{border-color:var(--primary);background:var(--primary);color:#fff}.stepper__label{color:var(--gray-400);text-align:center;font-size:.75rem;font-weight:500;transition:color .25s}.stepper__step.active .stepper__label{color:var(--primary);font-weight:700}.stepper__step.done .stepper__label{color:var(--gray-600);font-weight:600}.field-error{color:var(--danger);margin-top:.2rem;font-size:.78rem}.auth-step-nav{gap:.75rem;margin-top:1.5rem;display:flex}.file-upload-area{border:2px dashed var(--gray-300);border-radius:var(--radius);text-align:center;cursor:pointer;transition:var(--transition);background:var(--gray-50);padding:1.25rem}.file-upload-area:hover{border-color:var(--primary);background:#eff6ff}.file-upload-area.has-file{border-color:var(--success);background:#d1fae5}.file-upload-area input[type=file]{display:none}.file-upload-label{cursor:pointer;color:var(--gray-500);flex-direction:column;align-items:center;gap:.4rem;font-size:.85rem;display:flex}.file-upload-label span{color:var(--primary);font-weight:600}.nb-wrapper{position:relative}.nb-bell{cursor:pointer;width:38px;height:38px;color:var(--gray-600);background:0 0;border:none;border-radius:50%;justify-content:center;align-items:center;transition:background .15s,color .15s;display:flex;position:relative}.nb-bell:hover,.nb-bell--open{background:var(--gray-100);color:var(--gray-900)}.nb-badge{background:var(--danger);color:#fff;border:2px solid #fff;border-radius:999px;justify-content:center;align-items:center;min-width:17px;height:17px;padding:0 3px;font-size:.62rem;font-weight:800;line-height:1;animation:.2s nb-pop;display:flex;position:absolute;top:2px;right:2px}@keyframes nb-pop{0%{transform:scale(0)}70%{transform:scale(1.2)}to{transform:scale(1)}}.nb-ws-dot{background:var(--gray-300);border:1px solid #fff;border-radius:50%;width:6px;height:6px;position:absolute;bottom:5px;right:5px}.nb-ws-dot--live{background:var(--success);animation:2s infinite nb-pulse}@keyframes nb-pulse{0%,to{opacity:1}50%{opacity:.4}}.nb-dropdown{z-index:1000;border-radius:var(--radius-lg);flex-direction:column;width:360px;max-height:520px;animation:.15s nb-slide-in;display:flex;position:absolute;top:calc(100% + 8px);right:0;overflow:hidden;box-shadow:0 8px 30px #0000001f}@keyframes nb-slide-in{0%{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}@media (width<=767px){.nb-dropdown{border-radius:0 0 var(--radius-lg) var(--radius-lg);width:100%;max-height:calc(100dvh - 120px);animation:.2s nb-slide-down;position:fixed;top:60px;left:0;right:0}}@keyframes nb-slide-down{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.nb-header{border-bottom:1px solid var(--gray-100);flex-wrap:wrap;flex-shrink:0;justify-content:space-between;align-items:center;gap:.5rem;padding:.85rem 1rem .7rem;display:flex}.nb-header__title{color:var(--gray-900);font-size:.95rem;font-weight:700}.nb-header__count{color:var(--danger);background:#fee2e2;border-radius:999px;margin-left:6px;padding:2px 6px;font-size:.72rem;font-weight:700}.nb-header__actions{flex-wrap:wrap;gap:.5rem;display:flex}.nb-text-btn{color:var(--primary);cursor:pointer;background:0 0;border:none;border-radius:4px;align-items:center;gap:3px;padding:.2rem .3rem;font-size:.75rem;font-weight:600;transition:background .1s;display:inline-flex}.nb-text-btn:hover{background:var(--gray-100)}.nb-list{flex:1;overflow-y:auto}.nb-empty{text-align:center;color:var(--gray-400);flex-direction:column;align-items:center;padding:2.5rem 1rem;font-size:.875rem;display:flex}.nb-item{border-bottom:1px solid var(--gray-100);cursor:pointer;align-items:flex-start;gap:.7rem;padding:.8rem 1rem;transition:background .12s;display:flex;position:relative}.nb-item:hover{background:var(--gray-50)}.nb-item--unread{background:#f8faff}.nb-item--unread:hover{background:#eff4ff}.nb-item:last-child{border-bottom:none}.nb-notif-icon{border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:34px;height:34px;display:flex}.nb-item__body{flex:1;min-width:0}.nb-item__title{color:var(--gray-900);white-space:nowrap;text-overflow:ellipsis;margin:0 0 2px;font-size:.82rem;font-weight:600;overflow:hidden}.nb-item__body-text{color:var(--gray-500);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0 0 3px;font-size:.76rem;display:-webkit-box;overflow:hidden}.nb-item__time{color:var(--gray-400);font-size:.7rem}.nb-item__actions{opacity:0;flex-direction:column;gap:2px;transition:opacity .15s;display:flex}.nb-item:hover .nb-item__actions{opacity:1}@media (width<=767px){.nb-item__actions{opacity:1}}.nb-action-btn{background:var(--gray-100);width:22px;height:22px;color:var(--gray-500);cursor:pointer;border:none;border-radius:4px;justify-content:center;align-items:center;transition:background .1s;display:flex}.nb-action-btn:hover{background:var(--gray-200);color:var(--gray-800)}.nb-action-btn--danger:hover{color:var(--danger);background:#fee2e2}.nb-item__confirm{flex-shrink:0;align-items:center;gap:4px;display:flex}.nb-confirm__label{color:var(--gray-600);white-space:nowrap;font-size:.72rem;font-weight:600}.nb-confirm-btn{cursor:pointer;border:none;border-radius:4px;padding:3px 7px;font-size:.7rem;font-weight:700;transition:background .1s}.nb-confirm-btn--yes{color:var(--danger);background:#fee2e2}.nb-confirm-btn--yes:hover{background:#fecaca}.nb-confirm-btn--no{background:var(--gray-100);color:var(--gray-600)}.nb-confirm-btn--no:hover{background:var(--gray-200)}.nb-unread-dot{background:var(--primary);border-radius:50%;width:6px;height:6px;position:absolute;top:50%;left:6px;transform:translateY(-50%)}.nb-footer{border-top:1px solid var(--gray-100);text-align:center;flex-shrink:0;padding:.6rem 1rem}.nb-backdrop{display:none}@media (width<=767px){.nb-backdrop{z-index:999;background:#0000004d;animation:.15s nb-fade-in;display:block;position:fixed;inset:0}}@keyframes nb-fade-in{0%{opacity:0}to{opacity:1}}.ai-fab{z-index:1100;cursor:pointer;color:#fff;background:linear-gradient(135deg,#6366f1 0%,#8b5cf6 60%,#a78bfa 100%);border:none;border-radius:50%;justify-content:center;align-items:center;width:52px;height:52px;transition:transform .2s,box-shadow .2s;display:flex;position:fixed;bottom:86px;right:18px;box-shadow:0 4px 20px #6366f173}@media (width>=768px){.ai-fab{bottom:28px}}.ai-fab:hover{transform:scale(1.08);box-shadow:0 6px 24px #6366f18c}.ai-fab--open{background:#ef4444;box-shadow:0 4px 16px #ef444466}.ai-fab__badge{color:#fff;background:#ef4444;border:2px solid #fff;border-radius:999px;justify-content:center;align-items:center;min-width:16px;height:16px;padding:0 3px;font-size:.6rem;font-weight:800;display:flex;position:absolute;top:-3px;right:-3px}.ai-panel{z-index:1099;opacity:0;pointer-events:none;transform-origin:100% 100%;background:#fff;border:1px solid #6366f126;border-radius:20px;flex-direction:column;width:340px;max-height:520px;transition:opacity .2s,transform .2s;display:flex;position:fixed;bottom:150px;right:18px;overflow:hidden;transform:translateY(12px)scale(.97);box-shadow:0 12px 40px #00000029,0 2px 8px #00000014}.ai-panel--open{opacity:1;pointer-events:all;transform:translateY(0)scale(1)}@media (width>=768px){.ai-panel{bottom:92px}}@media (width<=400px){.ai-panel{width:calc(100vw - 24px);right:12px}}.ai-panel__header{background:linear-gradient(135deg,#6366f1 0%,#8b5cf6 100%);flex-shrink:0;justify-content:space-between;align-items:center;padding:.875rem 1rem;display:flex}.ai-panel__header-left{align-items:center;gap:.6rem;display:flex}.ai-panel__avatar{color:#fff;background:#ffffff40;border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;display:flex}.ai-panel__title{color:#fff;letter-spacing:-.01em;font-size:.92rem;font-weight:800}.ai-panel__subtitle{color:#ffffffbf;margin-top:1px;font-size:.68rem}.ai-panel__close{color:#fff;cursor:pointer;background:#ffffff26;border:none;border-radius:8px;justify-content:center;align-items:center;width:30px;height:30px;transition:background .15s;display:flex}.ai-panel__close:hover{background:#ffffff40}.ai-panel__messages{scroll-behavior:smooth;flex-direction:column;flex:1;gap:.625rem;padding:.875rem .75rem;display:flex;overflow-y:auto}.ai-panel__messages::-webkit-scrollbar{width:4px}.ai-panel__messages::-webkit-scrollbar-track{background:0 0}.ai-panel__messages::-webkit-scrollbar-thumb{background:#e2e8f0;border-radius:4px}.ai-bubble{align-items:flex-end;gap:.4rem;max-width:88%;display:flex}.ai-bubble--user{flex-direction:row-reverse;align-self:flex-end}.ai-bubble--bot{align-self:flex-start}.ai-bubble__avatar{color:#fff;background:linear-gradient(135deg,#6366f1,#8b5cf6);border-radius:6px;flex-shrink:0;justify-content:center;align-items:center;width:22px;height:22px;margin-bottom:2px;display:flex}.ai-bubble__text{word-break:break-word;border-radius:14px;padding:.55rem .75rem;font-size:.83rem;line-height:1.55}.ai-bubble--user .ai-bubble__text{color:#fff;background:linear-gradient(135deg,#6366f1,#8b5cf6);border-bottom-right-radius:4px}.ai-bubble--bot .ai-bubble__text{color:#1e293b;background:#f1f5f9;border-bottom-left-radius:4px}.ai-bubble__text strong{font-weight:700}.ai-list-num,.ai-list-dot{color:#6366f1;margin-right:2px;font-weight:700}.ai-typing{align-items:center;gap:4px;min-width:52px;display:flex;padding:.65rem .875rem!important}.ai-typing span{background:#94a3b8;border-radius:50%;width:7px;height:7px;animation:1.2s infinite ai-bounce}.ai-typing span:nth-child(2){animation-delay:.2s}.ai-typing span:nth-child(3){animation-delay:.4s}@keyframes ai-bounce{0%,80%,to{opacity:.5;transform:translateY(0)}40%{opacity:1;transform:translateY(-5px)}}.ai-chips{flex-wrap:wrap;flex-shrink:0;gap:.4rem;padding:0 .75rem .625rem;display:flex}.ai-chip{color:#2563eb;cursor:pointer;white-space:nowrap;background:#eff6ff;border:1px solid #bfdbfe;border-radius:999px;padding:.3rem .65rem;font-size:.74rem;font-weight:600;transition:background .15s,border-color .15s}.ai-chip:hover{background:#dbeafe;border-color:#93c5fd}.ai-panel__input-row{border-top:1px solid #f1f5f9;flex-shrink:0;align-items:flex-end;gap:.4rem;padding:.625rem .75rem;display:flex}.ai-panel__input{resize:none;color:#1e293b;border:1px solid #e2e8f0;border-radius:12px;outline:none;flex:1;max-height:100px;padding:.5rem .75rem;font-family:inherit;font-size:.83rem;line-height:1.5;transition:border-color .15s;overflow-y:auto}.ai-panel__input:focus{border-color:#8b5cf6;box-shadow:0 0 0 3px #8b5cf61a}.ai-panel__input::placeholder{color:#94a3b8}.ai-panel__send{color:#fff;cursor:pointer;background:linear-gradient(135deg,#6366f1,#8b5cf6);border:none;border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:36px;height:36px;transition:opacity .15s,transform .15s;display:flex}.ai-panel__send:disabled{opacity:.4;cursor:not-allowed;transform:none!important}.ai-panel__send:not(:disabled):hover{transform:scale(1.08)}.app-layout{flex-direction:column;min-height:100vh;display:flex}.app-navbar{z-index:100;background:var(--white);border-bottom:1px solid var(--gray-200);box-shadow:var(--shadow-sm);position:sticky;top:0}.app-navbar__inner{align-items:center;gap:1.5rem;height:60px;display:flex}.app-navbar__logo{flex-shrink:0}.app-navbar__desktop-nav{flex:1;align-items:center;gap:.25rem;display:none}@media (width>=768px){.app-navbar__desktop-nav{display:flex}}.app-navbar__nav-link{border-radius:var(--radius);color:var(--gray-600);transition:var(--transition);padding:.4rem .9rem;font-size:.875rem;font-weight:500}.app-navbar__nav-link:hover{background:var(--gray-100);color:var(--gray-900)}.app-navbar__nav-link.active{color:var(--primary);background:#eff6ff;font-weight:600}.app-navbar__actions{align-items:center;gap:.5rem;margin-left:auto;display:flex}.app-navbar__icon-btn{border-radius:var(--radius);color:var(--gray-600);transition:var(--transition);background:0 0;border:none;align-items:center;padding:.5rem;display:flex;position:relative}.app-navbar__icon-btn:hover{background:var(--gray-100);color:var(--gray-900)}.app-navbar__badge{background:var(--danger);color:#fff;border-radius:999px;justify-content:center;align-items:center;min-width:16px;height:16px;padding:0 3px;font-size:.65rem;font-weight:700;line-height:1;display:flex;position:absolute;top:2px;right:2px}.app-navbar__avatar{background:var(--primary);color:#fff;cursor:pointer;width:36px;height:36px;transition:var(--transition);border:none;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;padding:0;font-size:.8rem;font-weight:700;display:flex;overflow:hidden}.app-navbar__avatar:hover{box-shadow:var(--shadow-md);transform:scale(1.05)}.app-navbar__avatar--sm{width:32px;height:32px;padding:0;font-size:.75rem;overflow:hidden}.app-navbar__avatar-img{object-fit:cover;object-position:center;border-radius:0;width:36px;height:36px;display:block}.app-navbar__avatar--sm .app-navbar__avatar-img{width:32px;height:32px}.app-navbar__user-menu{position:relative}.app-navbar__dropdown{z-index:200;min-width:220px;padding:.75rem;position:absolute;top:calc(100% + 8px);right:0}.app-navbar__dropdown-header{border-bottom:1px solid var(--gray-100);align-items:center;gap:.75rem;margin-bottom:.5rem;padding:.5rem .5rem .75rem;display:flex}.app-navbar__dropdown-items{flex-direction:column;gap:.125rem;display:flex}.app-navbar__dropdown-item{border-radius:var(--radius);color:var(--gray-700);text-align:left;cursor:pointer;width:100%;transition:var(--transition);background:0 0;border:none;align-items:center;gap:.6rem;padding:.6rem .75rem;font-size:.875rem;font-weight:500;display:flex}.app-navbar__dropdown-item:hover{background:var(--gray-100);color:var(--gray-900)}.app-navbar__dropdown-item--danger{color:var(--danger)}.app-navbar__dropdown-item--danger:hover{color:#991b1b;background:#fee2e2}.app-main{flex:1;padding-bottom:70px}@media (width>=768px){.app-main{padding-bottom:0}}.app-bottom-nav{z-index:100;background:var(--white);border-top:1px solid var(--gray-200);align-items:stretch;height:60px;display:flex;position:fixed;bottom:0;left:0;right:0;box-shadow:0 -2px 10px #0000000f}@media (width>=768px){.app-bottom-nav{display:none}}.pwa-install-banner{z-index:99;color:#fff;background:linear-gradient(135deg,#2b7fff,#9810fa);justify-content:space-between;align-items:center;padding:.6rem 1rem;font-size:.82rem;font-weight:600;display:flex;position:fixed;bottom:60px;left:0;right:0;box-shadow:0 -2px 12px #2b7fff40}@media (width>=768px){.pwa-install-banner{border-radius:12px 12px 0 0;max-width:420px;bottom:0;left:auto;right:1.5rem}}.app-bottom-nav__item{color:var(--gray-400);transition:var(--transition);flex-direction:column;flex:1;justify-content:center;align-items:center;gap:.2rem;font-size:.65rem;font-weight:500;display:flex}.app-bottom-nav__item:hover,.app-bottom-nav__item.active{color:var(--primary)}.home-page{padding:1.5rem 0 3rem}.home-hero{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.25rem;display:flex}.home-search-bar{background:var(--white);border:1.5px solid var(--gray-200);cursor:pointer;transition:var(--transition);border-radius:999px;align-items:center;gap:.75rem;margin-bottom:1.5rem;padding:.75rem 1.25rem;font-size:.9rem;display:flex}.home-search-bar:hover{border-color:var(--primary);box-shadow:0 0 0 3px #4f46e514}.home-stats{grid-template-columns:repeat(3,1fr);gap:.75rem;margin-bottom:1.75rem;display:grid}.home-stat-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);cursor:pointer;transition:var(--transition);box-shadow:var(--shadow-sm);align-items:center;gap:.75rem;min-width:0;padding:1rem 1.1rem;display:flex}@media (width<=600px){.home-stats{-webkit-overflow-scrolling:touch;scrollbar-width:none;flex-direction:row;padding-bottom:4px;display:flex;overflow-x:auto}.home-stats::-webkit-scrollbar{display:none}.home-stat-card{flex:none;min-width:130px}}.home-stat-card:hover{box-shadow:var(--shadow);transform:translateY(-1px)}.home-stat-card__icon{border-radius:var(--radius);flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;display:flex}.home-stat-card__value{color:var(--gray-900);font-size:1.3rem;font-weight:800;line-height:1}.home-stat-card__label{color:var(--gray-500);margin-top:.2rem;font-size:.7rem}.home-cats{grid-template-columns:repeat(4,1fr);gap:.75rem;display:grid}@media (width>=640px){.home-cats{grid-template-columns:repeat(8,1fr)}}.home-cat-item{cursor:pointer;border-radius:var(--radius);transition:var(--transition);background:0 0;border:none;flex-direction:column;align-items:center;gap:.4rem;padding:.5rem;display:flex}.home-cat-item:hover{background:var(--gray-100);transform:translateY(-1px)}.home-cat-item__icon{border-radius:var(--radius);justify-content:center;align-items:center;width:48px;height:48px;display:flex}.home-cat-item__label{color:var(--gray-600);text-align:center;font-size:.7rem;font-weight:500;line-height:1.2}.home-services-scroll{grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.75rem;display:grid}@media (width<=640px){.home-services-scroll{scrollbar-width:none;gap:.75rem;padding-bottom:.5rem;display:flex;overflow-x:auto}.home-services-scroll::-webkit-scrollbar{display:none}}.home-service-card{cursor:pointer;transition:var(--transition);flex-shrink:0;width:180px}@media (width>=641px){.home-service-card{width:auto}}.home-service-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.home-service-card__img{height:110px;overflow:hidden}.home-service-card__img img{object-fit:cover;width:100%;height:100%}.browse-page{padding:1.5rem 0 2rem}.browse-header{margin-bottom:1.25rem}.browse-search-row{flex-direction:column;gap:.75rem;margin-bottom:1rem;display:flex}@media (width>=640px){.browse-search-row{flex-direction:row;align-items:center}}.browse-search-form{flex:1;gap:.5rem;display:flex}.browse-sort{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.browse-cats{flex-wrap:wrap;gap:.5rem;margin-bottom:1.25rem;display:flex}.browse-cat-pill{border:1.5px solid var(--gray-200);background:var(--white);color:var(--gray-600);cursor:pointer;transition:var(--transition);white-space:nowrap;border-radius:999px;padding:.35rem .9rem;font-size:.82rem;font-weight:500}.browse-cat-pill:hover{border-color:var(--primary);color:var(--primary)}.browse-cat-pill.active{background:var(--primary);border-color:var(--primary);color:#fff}.browse-grid{grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem;display:grid}.browse-empty{text-align:center;color:var(--gray-500);flex-direction:column;grid-column:1/-1;align-items:center;gap:.5rem;padding:3rem 0;display:flex}.service-card{cursor:pointer;transition:var(--transition)}.service-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.service-card__img{justify-content:center;align-items:center;height:160px;display:flex;overflow:hidden}.service-card__img img{object-fit:cover;width:100%;height:100%}.service-card__cat-label{color:#00000080;text-transform:uppercase;letter-spacing:.05em;font-size:.8rem;font-weight:600}.service-card__body{padding:1rem}.service-card__title{color:var(--gray-900);-webkit-line-clamp:2;-webkit-box-orient:vertical;flex:1;font-size:.95rem;font-weight:600;line-height:1.3;display:-webkit-box;overflow:hidden}.service-card__price{color:var(--gray-900);white-space:nowrap;flex-shrink:0;font-size:.95rem;font-weight:700}.service-card__desc{color:var(--gray-500);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin-bottom:.75rem;font-size:.82rem;line-height:1.4;display:-webkit-box;overflow:hidden}.service-card__provider{align-items:center;gap:.4rem;margin-bottom:.5rem;display:flex}.service-card__avatar{background:var(--primary);color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:24px;height:24px;font-size:.65rem;font-weight:700;display:flex}.service-card__meta{justify-content:space-between;align-items:center;margin-bottom:.6rem;display:flex}.service-card__tags{flex-wrap:wrap;gap:.25rem;display:flex}.service-detail-page{padding:1.5rem 0 3rem}.service-detail-layout{grid-template-columns:1fr;gap:2rem;display:grid}@media (width>=1024px){.service-detail-layout{grid-template-columns:1fr 320px}}.service-gallery{overflow:visible}.service-gallery__main{border-radius:var(--radius-lg) var(--radius-lg) 0 0;height:320px;position:relative;overflow:hidden}.service-gallery__main img{object-fit:cover;width:100%;height:100%}.service-gallery__placeholder{background:linear-gradient(135deg,#eff6ff,#dbeafe);justify-content:center;align-items:center;width:100%;height:100%;display:flex}.gallery-btn{cursor:pointer;width:36px;height:36px;box-shadow:var(--shadow);color:var(--gray-700);background:#ffffffe6;border:none;border-radius:50%;justify-content:center;align-items:center;display:flex;position:absolute;top:50%;transform:translateY(-50%)}.gallery-btn--prev{left:.75rem}.gallery-btn--next{right:.75rem}.service-gallery__thumbs{gap:.5rem;padding:.75rem;display:flex;overflow-x:auto}.service-gallery__thumb{border-radius:var(--radius-sm);cursor:pointer;background:0 0;border:2px solid #0000;flex-shrink:0;width:64px;height:48px;padding:0;overflow:hidden}.service-gallery__thumb.active{border-color:var(--primary)}.service-gallery__thumb img{object-fit:cover;width:100%;height:100%}.provider-card{margin-top:0}.provider-card__inner{align-items:flex-start;gap:.75rem;padding:1rem;display:flex}.provider-card__avatar{background:var(--primary);color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;font-size:1rem;font-weight:700;display:flex}.service-detail-sidebar{height:fit-content;position:sticky;top:80px}.service-sidebar-card{overflow:visible}.service-sidebar-price{color:var(--gray-900);align-items:baseline;gap:.4rem;margin-bottom:1.25rem;font-size:2rem;font-weight:800;display:flex}.messages-page{height:calc(100vh - 60px);display:flex;overflow:hidden}@media (width<=767px){.messages-page{height:calc(100vh - 120px)}}.messages-list-panel{border-right:1px solid var(--gray-200);background:var(--white);flex-direction:column;width:100%;display:flex;overflow:hidden}@media (width>=768px){.messages-list-panel{flex-shrink:0;width:320px}}.messages-list-header{border-bottom:1px solid var(--gray-200);flex-shrink:0;padding:1rem}.messages-list-body{flex:1;overflow-y:auto}.messages-empty-panel{background:var(--gray-50);flex-direction:column;flex:1;justify-content:center;align-items:center;display:none}@media (width>=768px){.messages-empty-panel{display:flex}}.convo-item{text-align:left;border:none;border-bottom:1px solid var(--gray-100);cursor:pointer;width:100%;transition:var(--transition);background:0 0;align-items:center;gap:.75rem;padding:.875rem 1rem;display:flex}.convo-item:hover{background:var(--gray-50)}.convo-item.unread{background:#f5f3ff}.convo-item.unread:hover{background:#ede9fe}.convo-item__avatar{background:var(--primary);color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:42px;height:42px;font-size:.85rem;font-weight:700;display:flex}.convo-item__body{flex:1;min-width:0}.convo-item__header{justify-content:space-between;align-items:center;margin-bottom:.2rem;display:flex}.convo-item__name{color:var(--gray-900);white-space:nowrap;text-overflow:ellipsis;font-size:.875rem;font-weight:600;overflow:hidden}.convo-item__time{color:var(--gray-400);flex-shrink:0;margin-left:.5rem;font-size:.72rem}.convo-item__preview{justify-content:space-between;align-items:center;display:flex}.convo-item__last-msg{color:var(--gray-400);white-space:nowrap;text-overflow:ellipsis;flex:1;font-size:.8rem;overflow:hidden}.convo-item.unread .convo-item__last-msg{color:var(--gray-700);font-weight:500}.convo-item__unread-dot{background:var(--primary);color:#fff;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;min-width:18px;height:18px;margin-left:.5rem;padding:0 4px;font-size:.65rem;font-weight:700;display:flex}.convo-page{background:var(--gray-50);flex-direction:column;height:calc(100vh - 60px);display:flex}@media (width<=767px){.convo-page{height:calc(100vh - 120px)}}.convo-header{background:var(--white);border-bottom:1px solid var(--gray-200);box-shadow:var(--shadow-sm);flex-shrink:0;align-items:center;gap:.75rem;padding:.75rem 1rem;display:flex}.convo-header__avatar{background:var(--primary);color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;font-size:.85rem;font-weight:700;display:flex}.convo-header__info{flex-direction:column;display:flex}.convo-header__name{font-size:.95rem;font-weight:600}.convo-header__status{font-size:.75rem}.convo-header__status.connected{color:var(--success)}.convo-header__status.connecting{color:var(--warning)}.convo-header__status.disconnected,.convo-header__status.error{color:var(--danger)}.convo-messages{flex-direction:column;flex:1;gap:.5rem;padding:1rem;display:flex;overflow-y:auto}.convo-empty{color:var(--gray-400);text-align:center;flex:1;justify-content:center;align-items:center;font-size:.875rem;display:flex}.msg-row{align-items:flex-end;gap:.5rem;display:flex}.msg-row.self{flex-direction:row-reverse}.msg-avatar{background:var(--primary);color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:30px;height:30px;font-size:.7rem;font-weight:700;display:flex}.msg-bubble-group{flex-direction:column;gap:.15rem;max-width:70%;display:flex}.msg-bubble{word-break:break-word;border-radius:18px;flex-direction:column;max-width:100%;padding:.5rem .75rem .45rem;font-size:.9rem;line-height:1.5;display:inline-flex}.msg-bubble--self{background:var(--primary);color:#fff;border-bottom-right-radius:4px}.msg-bubble--other{background:var(--white);color:var(--gray-900);box-shadow:var(--shadow-sm);border-bottom-left-radius:4px}.msg-meta{white-space:nowrap;align-self:flex-end;align-items:center;gap:3px;margin-top:3px;margin-left:8px;font-size:.7rem;line-height:1;display:flex}.msg-meta--self{color:#ffffffeb}.msg-meta--other{color:var(--gray-500)}.msg-ticks{color:#fffffff2;letter-spacing:-2px;margin-left:2px;font-size:.8rem;font-weight:700}.msg-ticks--read{color:#7dd3fc}.typing-indicator{background:var(--white);box-shadow:var(--shadow-sm);border-radius:18px 18px 18px 4px;align-items:center;gap:4px;padding:.6rem .9rem;display:flex}.typing-indicator span{background:var(--gray-400);border-radius:50%;width:7px;height:7px;animation:1.4s ease-in-out infinite typing-bounce}.typing-indicator span:nth-child(2){animation-delay:.2s}.typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes typing-bounce{0%,60%,to{transform:translateY(0)}30%{transform:translateY(-5px)}}.convo-input-bar{background:var(--white);border-top:1px solid var(--gray-200);flex-shrink:0;align-items:flex-end;gap:.5rem;padding:.75rem 1rem;display:flex}.convo-input{resize:none;border:1.5px solid var(--gray-200);max-height:120px;transition:var(--transition);border-radius:20px;outline:none;flex:1;padding:.65rem 1rem;font-family:inherit;font-size:.9rem;line-height:1.4}.convo-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px #155dfc1f}.convo-send-btn{border-radius:50%;flex-shrink:0;width:40px;height:40px;padding:0}.convo-safety-banner{color:#92400e;background:#fffbeb;border-bottom:1px solid #fde68a;flex-shrink:0;align-items:center;gap:.5rem;padding:.5rem .75rem .5rem 1rem;font-size:.75rem;line-height:1.45;display:flex}.convo-safety-tip{flex:1;animation:.5s tip-fade}@keyframes tip-fade{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.convo-safety-dismiss{cursor:pointer;color:#92400e;opacity:.6;background:0 0;border:none;border-radius:4px;flex-shrink:0;align-items:center;padding:.2rem;transition:opacity .2s;display:flex}.convo-safety-dismiss:hover{opacity:1}.convo-banned-notice{color:var(--danger);background:#fef2f2;border-bottom:1px solid #fecaca;flex-shrink:0;align-items:center;gap:.5rem;padding:.65rem 1rem;font-size:.82rem;font-weight:500;display:flex}.convo-e2e-badge{border-radius:999px;flex-shrink:0;align-items:center;gap:3px;margin-left:auto;padding:.2rem .5rem;font-size:.68rem;font-weight:700;display:flex}.convo-e2e-badge.ready{color:#065f46;background:#d1fae5}.convo-e2e-badge.pending{background:var(--gray-100);color:var(--gray-500)}.convo-date-divider{color:var(--gray-400);text-transform:uppercase;letter-spacing:.05em;align-items:center;gap:.75rem;margin:.75rem 0;font-size:.72rem;font-weight:600;display:flex}.convo-date-divider:before,.convo-date-divider:after{content:"";background:var(--gray-200);flex:1;height:1px}.convo-empty{text-align:center;flex-direction:column;flex:1;justify-content:center;align-items:center;padding:2rem;display:flex}.dashboard-page{background:#f1f5f9;min-height:100vh;padding:1.5rem 0 4rem}.dash-hero{color:#fff;background:linear-gradient(135deg,#0f172a 0%,#1e3a8a 60%,#1d4ed8 100%);border-radius:18px;margin-bottom:1.5rem;padding:1.75rem 2rem;position:relative;overflow:hidden}.dash-hero:before{content:"";background:#ffffff0a;border-radius:50%;width:220px;height:220px;position:absolute;top:-60px;right:-60px}.dash-hero:after{content:"";background:#ffffff08;border-radius:50%;width:140px;height:140px;position:absolute;bottom:-40px;right:80px}.dash-hero__inner{z-index:1;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1.25rem;display:flex;position:relative}.dash-hero__greeting{letter-spacing:-.03em;margin-bottom:.25rem;font-size:1.6rem;font-weight:800}.dash-hero__sub{color:#ffffffa6;font-size:.875rem}.dash-hero__cta{flex-wrap:wrap;gap:.5rem;display:flex}.dash-hero-btn{cursor:pointer;border:none;border-radius:10px;align-items:center;gap:.4rem;padding:.55rem 1.1rem;font-size:.85rem;font-weight:600;transition:all .15s;display:inline-flex}.dash-hero-btn--primary{color:#1d4ed8;background:#fff}.dash-hero-btn--primary:hover{background:#f0f9ff;transform:translateY(-1px);box-shadow:0 4px 12px #0003}.dash-hero-btn--ghost{color:#fff;background:#ffffff1f;border:1px solid #fff3}.dash-hero-btn--ghost:hover{background:#fff3}.dash-kpi-grid{-webkit-overflow-scrolling:touch;scrollbar-width:none;flex-direction:row;gap:1rem;margin-bottom:1.5rem;padding-bottom:4px;display:flex;overflow-x:auto}.dash-kpi-grid::-webkit-scrollbar{display:none}.dash-kpi-card{cursor:pointer;background:#fff;border:1px solid #e2e8f0;border-radius:14px;flex:none;min-width:140px;padding:1.1rem;transition:box-shadow .2s,transform .2s;box-shadow:0 1px 3px #0000000a}.dash-kpi-card:hover{transform:translateY(-1px);box-shadow:0 4px 16px #00000014}.dash-kpi-icon{border-radius:10px;justify-content:center;align-items:center;width:38px;height:38px;margin-bottom:.75rem;display:flex}.dash-kpi-value{color:#0f172a;letter-spacing:-.03em;font-size:1.7rem;font-weight:800;line-height:1}.dash-kpi-label{color:#64748b;margin-top:.25rem;font-size:.72rem;font-weight:500}.dash-tabs{-webkit-overflow-scrolling:touch;border-bottom:2px solid #e2e8f0;gap:0;margin-bottom:1.5rem;display:flex;overflow-x:auto}.dash-tab{color:#64748b;cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;align-items:center;gap:.4rem;margin-bottom:-2px;padding:.7rem 1.1rem;font-size:.85rem;font-weight:500;transition:all .15s;display:flex}.dash-tab:hover{color:#1e293b}.dash-tab.active{color:#1d4ed8;border-bottom-color:#1d4ed8;font-weight:600}.dash-tab__badge{color:#dc2626;text-align:center;background:#fee2e2;border-radius:999px;min-width:18px;padding:.1rem .35rem;font-size:.65rem;font-weight:700}.dash-tab.active .dash-tab__badge{color:#1d4ed8;background:#dbeafe}@keyframes dashFadeIn{0%{opacity:0;transform:translateY(5px)}to{opacity:1;transform:none}}.dash-overview-grid{grid-template-columns:1fr;gap:1.25rem;display:grid}@media (width>=900px){.dash-overview-grid{grid-template-columns:1fr 300px}}.dash-panel{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden;box-shadow:0 1px 3px #0000000a}.dash-panel__head{border-bottom:1px solid #f1f5f9;justify-content:space-between;align-items:center;padding:1rem 1.25rem;display:flex}.dash-panel__title{color:#0f172a;align-items:center;gap:.4rem;font-size:.9rem;font-weight:700;display:flex}.booking-row{cursor:pointer;border-bottom:1px solid #f1f5f9;justify-content:space-between;align-items:center;gap:.75rem;padding:.875rem 1.25rem;transition:background .1s;display:flex}.booking-row:last-child{border-bottom:none}.booking-row:hover{background:#f8fafc}.booking-row__info{flex:1;min-width:0}.booking-row__title{color:#1e293b;white-space:nowrap;text-overflow:ellipsis;font-size:.875rem;font-weight:600;overflow:hidden}.booking-row__meta{color:#64748b;margin-top:.15rem;font-size:.78rem}.booking-pipeline{-webkit-overflow-scrolling:touch;scrollbar-width:none;flex-direction:row;gap:.875rem;margin-bottom:1.5rem;padding-bottom:4px;display:flex;overflow-x:auto}.booking-pipeline::-webkit-scrollbar{display:none}.booking-pipeline .pipeline-col{flex:none;min-width:200px}.pipeline-col{background:#fff;border:1px solid #e2e8f0;border-radius:12px;overflow:hidden}.pipeline-col__head{text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid #f1f5f9;justify-content:space-between;align-items:center;padding:.65rem .875rem;font-size:.72rem;font-weight:700;display:flex}.pipeline-col__count{color:#475569;background:#f1f5f9;border-radius:999px;padding:.1rem .4rem;font-size:.68rem;font-weight:700}.pipeline-item{cursor:pointer;border-bottom:1px solid #f8fafc;padding:.65rem .875rem;font-size:.8rem;transition:background .1s}.pipeline-item:last-child{border-bottom:none}.pipeline-item:hover{background:#f8fafc}.pipeline-item__title{color:#1e293b;-webkit-line-clamp:1;-webkit-box-orient:vertical;margin-bottom:.2rem;font-weight:600;display:-webkit-box;overflow:hidden}.pipeline-item__client{color:#94a3b8;font-size:.72rem}.pipeline-empty{color:#cbd5e1;text-align:center;padding:1rem .875rem;font-size:.78rem}.services-list{flex-direction:column;gap:0;display:flex}.service-list-item{border-bottom:1px solid #f1f5f9;justify-content:space-between;align-items:center;gap:1rem;padding:.875rem 1.25rem;transition:background .1s;display:flex}.service-list-item:last-child{border-bottom:none}.service-list-item:hover{background:#f8fafc}.service-list-item__info{flex:1;min-width:0}.service-list-item__title{color:#1e293b;white-space:nowrap;text-overflow:ellipsis;font-size:.875rem;font-weight:600;overflow:hidden}.service-list-item__meta{color:#64748b;margin-top:.15rem;font-size:.78rem}.service-list-item__actions{flex-shrink:0;gap:.35rem;display:flex}.quick-actions-list{flex-direction:column;gap:.4rem;padding:.875rem;display:flex}.quick-action-item{cursor:pointer;color:#1e293b;background:#f8fafc;border:1px solid #f1f5f9;border-radius:10px;align-items:center;gap:.75rem;padding:.75rem .875rem;font-size:.85rem;font-weight:600;text-decoration:none;transition:all .15s;display:flex}.quick-action-item:hover{color:#1d4ed8;background:#eff6ff;border-color:#bfdbfe;transform:translate(3px)}.quick-action-item__icon{border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;display:flex}.quick-action-item__arrow{color:#94a3b8;flex-shrink:0;margin-left:auto}.badge-primary{color:#1d4ed8;background:#dbeafe}.badge-warning{color:#92400e;background:#fef3c7}.badge-success{color:#15803d;background:#dcfce7}.badge-danger{color:#dc2626;background:#fee2e2}.badge-gray{color:#475569;background:#f1f5f9}.dashboard-header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;display:flex}.stat-cards-grid{-webkit-overflow-scrolling:touch;scrollbar-width:none;flex-direction:row;gap:1rem;margin-bottom:2rem;padding-bottom:4px;display:flex;overflow-x:auto}.stat-cards-grid::-webkit-scrollbar{display:none}.stat-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;flex:none;align-items:center;gap:.875rem;min-width:150px;padding:1.25rem;display:flex}.stat-card__icon{border-radius:var(--radius);flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;display:flex}.stat-card__value{color:var(--gray-900);font-size:1.4rem;font-weight:800;line-height:1}.stat-card__label{color:var(--gray-500);margin-top:.2rem;font-size:.78rem}.stat-card__sub{color:var(--gray-400);font-size:.72rem}.dashboard-tabs{border-bottom:2px solid var(--gray-200);gap:0;margin-bottom:1.5rem;display:flex;overflow-x:auto}.dashboard-tab{color:var(--gray-500);cursor:pointer;transition:var(--transition);white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;margin-bottom:-2px;padding:.65rem 1.1rem;font-size:.875rem;font-weight:500}.dashboard-tab:hover{color:var(--gray-800)}.dashboard-tab.active{color:var(--primary);border-bottom-color:var(--primary);font-weight:600}.dashboard-tab-content{animation:.2s fadeIn}@keyframes fadeIn{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}.dashboard-grid{grid-template-columns:1fr;gap:1.5rem;display:grid}@media (width>=768px){.dashboard-grid{grid-template-columns:1fr 280px}}.post-service-page{padding:1.5rem 0 3rem}.post-form-grid{grid-template-columns:1fr;gap:1.1rem;display:grid}@media (width>=640px){.post-form-grid{grid-template-columns:1fr 1fr}}.tag-chip{color:var(--primary);background:#eff6ff;border-radius:999px;align-items:center;gap:.3rem;padding:.3rem .65rem;font-size:.8rem;font-weight:500;display:inline-flex}.tag-chip button{cursor:pointer;color:var(--primary);background:0 0;border:none;align-items:center;padding:0;display:flex}.image-upload-grid{grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:.75rem;margin-top:.5rem;display:grid}.image-preview-item{aspect-ratio:1;border-radius:var(--radius);border:1.5px solid var(--gray-200);position:relative;overflow:hidden}.image-preview-item img{object-fit:cover;width:100%;height:100%}.image-remove-btn{color:#fff;cursor:pointer;background:#0009;border:none;border-radius:50%;justify-content:center;align-items:center;width:22px;height:22px;display:flex;position:absolute;top:4px;right:4px}.image-upload-slot{aspect-ratio:1;border:2px dashed var(--gray-300);border-radius:var(--radius);cursor:pointer;transition:var(--transition);flex-direction:column;justify-content:center;align-items:center;gap:.35rem;display:flex}.image-upload-slot:hover{border-color:var(--primary);background:#eff6ff}.verification-gate-card{text-align:center;border-radius:var(--radius-lg,16px);flex-direction:column;align-items:center;gap:1rem;margin-top:2rem;padding:2.5rem 2rem;display:flex}.verification-gate-card h2{margin:0;font-size:1.25rem;font-weight:700}.verification-gate-card p{max-width:480px;margin:0;font-size:.9rem;line-height:1.6}.verification-gate-card__sub{color:var(--gray-400)!important;font-size:.82rem!important}.verification-gate-card__icon{border-radius:50%;justify-content:center;align-items:center;width:72px;height:72px;display:flex}.verification-gate-card--pending{background:#fffbeb;border:1.5px solid #fcd34d}.verification-gate-card--pending h2{color:#92400e}.verification-gate-card--pending p{color:#78350f}.verification-gate-card--pending .verification-gate-card__icon{color:#d97706;background:#fef3c7}.verification-gate-card__can-buy{color:#166534;background:#f0fdf4;border:1px solid #86efac;border-radius:8px;max-width:420px;padding:.7rem 1rem;font-size:.85rem;line-height:1.5}.verification-gate-card--rejected{background:#fff1f2;border:1.5px solid #fca5a5}.verification-gate-card--rejected h2{color:#9f1239}.verification-gate-card--rejected p{color:#7f1d1d}.verification-gate-card--rejected .verification-gate-card__icon{color:#dc2626;background:#fee2e2}.moderation-error-banner{border-radius:var(--radius);background:#fff1f2;border:1.5px solid #fca5a5;border-left:5px solid #ef4444;align-items:flex-start;gap:.75rem;margin-bottom:1.25rem;padding:1rem 1.1rem;animation:.25s banner-slide-in;display:flex}@keyframes banner-slide-in{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}.moderation-error-banner__icon{flex-shrink:0;margin-top:.05rem;font-size:1.3rem}.moderation-error-banner__body{flex:1;min-width:0}.moderation-error-banner__title{color:#b91c1c;margin:0 0 .25rem;font-size:.9rem;font-weight:700}.moderation-error-banner__msg{color:#7f1d1d;margin:0;font-size:.85rem;line-height:1.5}.moderation-error-banner__close{color:#ef4444;cursor:pointer;opacity:.7;background:0 0;border:none;flex-shrink:0;padding:0;font-size:.95rem;transition:opacity .15s}.moderation-error-banner__close:hover{opacity:1}.profile-page{padding:1.5rem 0 3rem}.profile-header{overflow:visible}.profile-header__inner{flex-wrap:wrap;align-items:flex-start;gap:1.5rem;padding:1.5rem;display:flex}.profile-header__info{flex-direction:column;flex:1;gap:.4rem;min-width:0;display:flex}.profile-meta{color:var(--gray-500);flex-wrap:wrap;gap:.5rem;margin-top:.25rem;font-size:.8rem;display:flex}.profile-meta span{align-items:center;gap:.25rem;display:inline-flex}.avatar-uploader{flex-direction:column;flex-shrink:0;align-items:center;gap:.6rem;display:flex}.avatar-uploader__circle{background:var(--primary);cursor:pointer;width:100px;height:100px;box-shadow:0 0 0 3px white, 0 0 0 4px var(--gray-200);border-radius:50%;flex-shrink:0;transition:box-shadow .2s;position:relative;overflow:hidden}.avatar-uploader__circle:hover{box-shadow:0 0 0 3px white, 0 0 0 4px var(--primary)}.avatar-uploader__img{object-fit:cover;border-radius:50%;width:100%;height:100%;display:block}.avatar-uploader__initials{color:#fff;justify-content:center;align-items:center;font-size:2rem;font-weight:700;display:flex;position:absolute;inset:0}.avatar-uploader__overlay{color:#fff;letter-spacing:.04em;opacity:0;background:#00000085;border-radius:50%;flex-direction:column;justify-content:center;align-items:center;gap:3px;font-size:.65rem;font-weight:600;transition:opacity .18s;display:flex;position:absolute;inset:0}.avatar-uploader__circle:hover .avatar-uploader__overlay{opacity:1}.avatar-uploader__overlay--busy{opacity:1!important}.avatar-uploader__staged-ring{border:3px solid var(--primary);pointer-events:none;border-radius:50%;animation:1.4s infinite pulse-ring;position:absolute;inset:-3px}@keyframes pulse-ring{0%{opacity:1;transform:scale(1)}60%{opacity:.4;transform:scale(1.06)}to{opacity:1;transform:scale(1)}}.avatar-uploader__actions{flex-direction:column;align-items:center;gap:.35rem;width:100%;display:flex}.avatar-uploader__file-info{color:var(--gray-600);align-items:center;gap:.4rem;max-width:160px;font-size:.72rem;display:flex}.avatar-uploader__filename{text-overflow:ellipsis;white-space:nowrap;max-width:110px;font-weight:600;overflow:hidden}.avatar-uploader__filesize{color:var(--gray-400);flex-shrink:0}.avatar-uploader__error{color:var(--danger);text-align:center;max-width:180px;margin:0;font-size:.75rem;line-height:1.4}.avatar-uploader__remove-btn{color:var(--danger)!important}.avatar-uploader__remove-btn:hover{background:#fee2e2!important;border-color:#fecaca!important}.verification-banner{border-top:1px solid var(--gray-100);align-items:flex-start;gap:.75rem;margin-top:0;padding:.875rem 1.25rem;font-size:.85rem;line-height:1.5;display:flex}.verification-banner strong{margin-bottom:.15rem;font-weight:600;display:block}.verification-banner p{color:inherit;opacity:.85;margin:0}.verification-banner__icon{flex-shrink:0;margin-top:2px}.verification-banner--pending{color:#92400e;background:#fffbeb;border-top-color:#fde68a}.verification-banner--rejected{color:#991b1b;background:#fef2f2;border-top-color:#fecaca}.verification-chip{letter-spacing:.02em;border-radius:999px;align-items:center;gap:.25rem;padding:.2rem .5rem;font-size:.7rem;font-weight:600;display:inline-flex}.verification-chip--pending{color:#92400e;background:#fef3c7}.profile-edit-grid{grid-template-columns:1fr;gap:1rem;display:grid}@media (width>=640px){.profile-edit-grid{grid-template-columns:1fr 1fr}}.bookings-page{background:#f1f5f9;min-height:100vh;padding:1.5rem 0 4rem}.bookings-header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;display:flex}.bookings-title{color:#0f172a;letter-spacing:-.02em;font-size:1.4rem;font-weight:800}.bookings-subtitle{color:#64748b;margin-top:.2rem;font-size:.82rem}.bookings-tabs{border-bottom:2px solid #e2e8f0;gap:0;margin-bottom:1.25rem;display:flex}.bookings-tab{color:#64748b;cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;align-items:center;gap:.5rem;margin-bottom:-2px;padding:.65rem 1.25rem;font-size:.875rem;font-weight:500;transition:color .15s;display:flex}.bookings-tab:hover{color:#1e293b}.bookings-tab.active{color:#1d4ed8;border-bottom-color:#1d4ed8;font-weight:600}.bookings-tab__count{color:#fff;text-align:center;background:#1d4ed8;border-radius:999px;min-width:18px;padding:.1rem .45rem;font-size:.68rem;font-weight:700}.bookings-list-wrap{background:#fff;border:1px solid #e2e8f0;border-radius:16px;overflow:hidden;box-shadow:0 1px 3px #0000000a}.booking-card{cursor:pointer;border-bottom:1px solid #f1f5f9;align-items:center;gap:0;transition:background .12s;display:flex;position:relative;overflow:hidden}.booking-card:last-child{border-bottom:none}.booking-card:hover{background:#f8fafc}.booking-card__accent{flex-shrink:0;align-self:stretch;width:4px}.booking-card__body{flex:1;min-width:0;padding:.875rem 1rem}.booking-card__top{justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:.5rem;display:flex}.booking-card__title{color:#0f172a;white-space:nowrap;text-overflow:ellipsis;font-size:.925rem;font-weight:600;overflow:hidden}.booking-card__meta{color:#64748b;margin-top:.15rem;font-size:.8rem}.booking-card__footer{flex-wrap:wrap;align-items:center;gap:.5rem 1rem;display:flex}.booking-card__detail{color:#94a3b8;font-size:.76rem}.booking-card__detail--note{color:#64748b;font-style:italic}.booking-empty{text-align:center;color:#94a3b8;padding:4rem 1.5rem}.booking-empty__title{color:#475569;margin-bottom:.4rem;font-size:1rem;font-weight:600}.booking-empty__sub{color:#94a3b8;max-width:300px;margin:0 auto;font-size:.85rem;line-height:1.6}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107, M12=.707107, M21=-.707107, M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.llm-wrapper{border-radius:var(--radius);border:1px solid var(--gray-200);background:#fff;flex-direction:column;display:flex;overflow:hidden}.llm-desktop-gate{text-align:center;background:var(--gray-50);border-radius:var(--radius);border:1px dashed var(--gray-300);flex-direction:column;align-items:center;padding:2.5rem 1.5rem;display:flex}.llm-inactive{text-align:center;color:var(--gray-500);background:var(--gray-50);border-radius:var(--radius);border:1px dashed var(--gray-300);flex-direction:column;align-items:center;gap:.75rem;padding:2rem;font-size:.875rem;display:flex}.llm-safety-banner{background:#fffbeb;border-bottom:1px solid #fde68a;align-items:flex-start;gap:.6rem;padding:.75rem 1rem;display:flex}.llm-safety-icon{color:#d97706;flex-shrink:0;margin-top:1px}.llm-safety-content{flex:1}.llm-safety-title{color:#92400e;margin-bottom:2px;font-size:.78rem;font-weight:700}.llm-safety-tip{color:#78350f;font-size:.78rem;line-height:1.4;transition:opacity .3s}.llm-dismiss{color:#92400e;cursor:pointer;background:0 0;border:none;flex-shrink:0;padding:2px}.llm-status-bar{background:var(--gray-50);border-bottom:1px solid var(--gray-200);color:var(--gray-600);align-items:center;gap:.4rem;padding:.4rem 1rem;font-size:.75rem;display:flex}.llm-divider{color:var(--gray-300)}.llm-dot{border-radius:50%;flex-shrink:0;width:8px;height:8px}.llm-dot--me{background:#155dfc}.llm-dot--other{background:#9810fa}.llm-error{color:var(--danger);background:#fef2f2;border-bottom:1px solid #fecaca;align-items:center;gap:.4rem;padding:.4rem 1rem;font-size:.75rem;display:flex}.llm-map-container{position:relative}.llm-map{z-index:0;width:100%;height:320px}.llm-centre-btn{z-index:500;border:1px solid var(--gray-300);cursor:pointer;width:34px;height:34px;box-shadow:var(--shadow-sm);color:var(--gray-700);transition:var(--transition);background:#fff;border-radius:6px;justify-content:center;align-items:center;display:flex;position:absolute;bottom:12px;right:12px}.llm-centre-btn:hover{background:var(--gray-50)}.llm-legend{background:var(--gray-50);border-top:1px solid var(--gray-200);color:var(--gray-600);align-items:center;gap:.85rem;padding:.45rem 1rem;font-size:.75rem;display:flex}.llm-legend-dot{vertical-align:middle;border-radius:50%;width:8px;height:8px;margin-right:3px;display:inline-block}@keyframes llm-pulse{0%{opacity:.5;transform:translate(-50%,-50%)scale(1)}to{opacity:0;transform:translate(-50%,-50%)scale(2.6)}}.leaflet-marker-icon{transition:left .8s,top .8s!important}.booking-detail-page{padding:1.5rem 0 3rem}.booking-detail-header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.5rem;display:flex}.booking-detail-grid{grid-template-columns:1fr;gap:1rem;display:grid}@media (width>=640px){.booking-detail-grid{grid-template-columns:1fr 1fr}}.booking-info-card{overflow:visible}.card-section-header{border-bottom:1px solid var(--gray-100);color:var(--gray-700);background:var(--gray-50);align-items:center;gap:.5rem;padding:.875rem 1rem;font-size:.875rem;font-weight:600;display:flex}.modal-overlay{z-index:1000;background:#00000080;justify-content:center;align-items:center;padding:1rem;display:flex;position:fixed;inset:0}.modal-box{width:100%;max-width:480px;max-height:90vh;overflow-y:auto}.modal-header{justify-content:space-between;align-items:center;padding:1.25rem 1.25rem 0;display:flex}.modal-header h3{font-size:1.1rem;font-weight:700}.review-popup{animation:.35s cubic-bezier(.34,1.56,.64,1) review-pop-in}@keyframes review-pop-in{0%{opacity:0;transform:scale(.88)translateY(20px)}to{opacity:1;transform:scale(1)translateY(0)}}.review-popup__header{text-align:center;color:#fff;background:linear-gradient(135deg,#155dfc 0%,#3b82f6 100%);padding:2rem 1.5rem 2.5rem;position:relative}.review-popup__close{color:#fff;cursor:pointer;background:#fff3;border:none;border-radius:50%;justify-content:center;align-items:center;width:28px;height:28px;transition:background .15s;display:flex;position:absolute;top:.75rem;right:.75rem}.review-popup__close:hover{background:#ffffff59}.review-popup__confetti{margin-bottom:.5rem;font-size:2.5rem;animation:.6s .3s both confetti-bounce}@keyframes confetti-bounce{0%{transform:scale(0)rotate(-15deg)}60%{transform:scale(1.2)rotate(5deg)}to{transform:scale(1)rotate(0)}}.review-popup__headline{color:#fff;margin:0 0 .35rem;font-size:1.35rem;font-weight:800}.review-popup__sub{color:#ffffffd9;margin:0 0 1.25rem;font-size:.875rem}.review-popup__avatar{width:58px;height:58px;color:var(--primary);z-index:1;background:#fff;border-radius:50%;justify-content:center;align-items:center;margin:0 auto -29px;font-size:1.4rem;font-weight:800;display:flex;position:relative;box-shadow:0 4px 14px #0000002e}@media (width<=480px){.review-popup__header{padding:1.5rem 1.25rem 2rem}.review-popup__headline{font-size:1.15rem}}.notif-page{min-height:100%;padding:1.5rem 0 4rem}.notif-page__header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;margin-bottom:1.25rem;display:flex}.notif-page__title{color:var(--gray-900);align-items:center;gap:.5rem;margin:0;font-size:1.35rem;font-weight:800;display:flex}.notif-page__unread-chip{color:var(--danger);background:#fee2e2;border-radius:999px;padding:2px 8px;font-size:.72rem;font-weight:700}.notif-page__header-actions{gap:.5rem;display:flex}.notif-filters{border:1px solid var(--gray-200);border-radius:var(--radius);background:#fff;flex-wrap:wrap;align-items:center;gap:.35rem;margin-bottom:1.25rem;padding:.45rem .75rem;display:flex}.notif-filter-btn{cursor:pointer;color:var(--gray-500);background:0 0;border:none;border-radius:999px;align-items:center;gap:4px;padding:.3rem .65rem;font-size:.8rem;font-weight:500;transition:all .15s;display:inline-flex}.notif-filter-btn:hover{background:var(--gray-100);color:var(--gray-800)}.notif-filter-btn.active{background:var(--primary);color:#fff;font-weight:700}.notif-filter-count{background:#ffffff40;border-radius:999px;padding:1px 5px;font-size:.68rem;font-weight:700}.notif-filter-btn:not(.active) .notif-filter-count{background:var(--gray-200);color:var(--gray-600)}.notif-group{margin-bottom:1.25rem}.notif-group__label{color:var(--gray-400);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.5rem;padding:0 .25rem;font-size:.75rem;font-weight:700}.notif-group__items{padding:0;overflow:hidden}.notif-row{cursor:pointer;align-items:flex-start;gap:.85rem;padding:.9rem 1.1rem;transition:background .12s;display:flex;position:relative}.notif-row:hover{background:var(--gray-50)}.notif-row--unread{background:#f8faff}.notif-row--unread:hover{background:#eff4ff}.notif-row__stripe{background:var(--primary);border-radius:0 2px 2px 0;width:3px;position:absolute;top:0;bottom:0;left:0}.notif-row__icon{border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;display:flex}.notif-row__content{flex:1;min-width:0}.notif-row__top{justify-content:space-between;align-items:flex-start;gap:.5rem;margin-bottom:3px;display:flex}.notif-row__title{color:var(--gray-900);font-size:.875rem;font-weight:600;line-height:1.3}.notif-row__time{color:var(--gray-400);white-space:nowrap;flex-shrink:0;font-size:.7rem}.notif-row__body{color:var(--gray-500);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0 0 5px;font-size:.8rem;line-height:1.45;display:-webkit-box;overflow:hidden}.notif-row__type-chip{text-transform:uppercase;letter-spacing:.04em;border-radius:999px;padding:2px 7px;font-size:.68rem;font-weight:700;display:inline-block}.notif-row__actions{opacity:0;flex-direction:column;flex-shrink:0;gap:3px;transition:opacity .15s;display:flex}.notif-row:hover .notif-row__actions{opacity:1}.notif-row__action-btn{border:1px solid var(--gray-200);width:26px;height:26px;color:var(--gray-400);cursor:pointer;background:#fff;border-radius:6px;justify-content:center;align-items:center;transition:all .1s;display:flex}.notif-row__action-btn:hover{background:var(--gray-100);color:var(--gray-700);border-color:var(--gray-300)}.notif-row__action-btn--danger:hover{color:var(--danger);background:#fee2e2;border-color:#fecaca}.notif-row__confirm{flex-shrink:0;align-items:center;gap:5px;display:flex}.notif-confirm__label{color:var(--gray-600);white-space:nowrap;font-size:.75rem;font-weight:600}.notif-confirm-btn{cursor:pointer;border:none;border-radius:5px;padding:4px 9px;font-size:.72rem;font-weight:700;transition:background .1s}.notif-confirm-btn--yes{color:var(--danger);background:#fee2e2}.notif-confirm-btn--yes:hover{background:#fecaca}.notif-confirm-btn--no{background:var(--gray-100);color:var(--gray-600)}.notif-confirm-btn--no:hover{background:var(--gray-200)}.notif-page__empty{text-align:center;color:var(--gray-500);padding:4rem 2rem}.notif-page__empty h3{color:var(--gray-700);margin-bottom:.4rem;font-size:1.1rem;font-weight:700}.notif-page__empty p{font-size:.875rem}.admin-layout{background:#f1f5f9;min-height:100vh;display:flex}.admin-overlay{z-index:150;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);background:#00000080;position:fixed;inset:0}.admin-sidebar{color:#fff;z-index:200;background:#0f172a;flex-direction:column;width:256px;transition:transform .28s cubic-bezier(.4,0,.2,1);display:flex;position:fixed;top:0;bottom:0;left:0;transform:translate(-100%)}@media (width>=1024px){.admin-sidebar{flex-shrink:0;height:100vh;position:sticky;transform:translate(0)}.admin-content{flex:1;min-width:0}.admin-topbar__menu-btn{display:none!important}}.admin-sidebar.open{transform:translate(0)}.admin-sidebar__header{border-bottom:1px solid #ffffff0f;justify-content:space-between;align-items:center;padding:1.25rem 1.25rem 1rem;display:flex}.admin-sidebar__brand{align-items:center;gap:.6rem;display:flex}.admin-sidebar__logo-box{color:#fff;background:#2b7fff;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;font-size:.9rem;font-weight:900;display:flex}.admin-sidebar__brand-text{color:#fff;letter-spacing:-.02em;font-size:1rem;font-weight:800}.admin-sidebar__badge{color:#93c5fd;letter-spacing:.06em;text-transform:uppercase;background:#2b7fff33;border:1px solid #93c5fd33;border-radius:999px;padding:.15rem .45rem;font-size:.6rem;font-weight:700}.admin-sidebar__nav{flex-direction:column;flex:1;gap:.15rem;padding:1rem .875rem;display:flex;overflow-y:auto}.admin-nav-label{color:#ffffff4d;text-transform:uppercase;letter-spacing:.08em;padding:.75rem .75rem .3rem;font-size:.62rem;font-weight:700}.admin-sidebar__link{color:#ffffff8c;border-radius:10px;align-items:center;gap:.75rem;padding:.65rem .875rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex;position:relative}.admin-sidebar__link:hover{color:#ffffffe6;background:#ffffff12}.admin-sidebar__link.active{color:#93c5fd;background:#2b7fff2e;font-weight:600}.admin-sidebar__link.active:before{content:"";background:#2b7fff;border-radius:0 3px 3px 0;width:3px;position:absolute;top:20%;bottom:20%;left:0}.admin-sidebar__footer{border-top:1px solid #ffffff0f;align-items:center;gap:.75rem;padding:1rem .875rem;display:flex}.admin-sidebar__user{flex:1;align-items:center;gap:.6rem;min-width:0;display:flex}.admin-sidebar__user-info{flex-direction:column;min-width:0;display:flex;overflow:hidden}.admin-sidebar__user-name{color:#fff;white-space:nowrap;text-overflow:ellipsis;font-size:.82rem;font-weight:600;overflow:hidden}.admin-sidebar__user-role{color:#fff6;font-size:.7rem}.admin-sidebar__avatar{color:#fff;background:#2b7fff;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:34px;height:34px;font-size:.78rem;font-weight:700;display:flex}.admin-sidebar__avatar--sm{border-radius:7px;width:30px;height:30px;font-size:.72rem}.admin-sidebar__logout{color:#ffffff80;cursor:pointer;background:#ffffff0f;border:1px solid #ffffff14;border-radius:8px;flex-shrink:0;align-items:center;padding:.45rem;transition:all .15s;display:flex}.admin-sidebar__logout:hover{color:#fca5a5;background:#ef444426;border-color:#ef44444d}.admin-content{flex-direction:column;flex:1;min-width:0;display:flex}.admin-topbar{z-index:100;background:#fff;border-bottom:1px solid #e2e8f0;align-items:center;gap:1rem;height:60px;padding:0 1.5rem;display:flex;position:sticky;top:0;box-shadow:0 1px 3px #0000000d}.admin-topbar__menu-btn{color:#64748b;cursor:pointer;background:0 0;border:none;border-radius:8px;align-items:center;padding:.4rem;transition:all .15s;display:flex}.admin-topbar__menu-btn:hover{color:#1e293b;background:#f1f5f9}.admin-topbar__left{flex:1;align-items:center;gap:.75rem;display:flex}.admin-topbar__title{color:#1e293b;font-size:.95rem;font-weight:700}.admin-topbar__right{align-items:center;gap:.75rem;margin-left:auto;display:flex}.admin-topbar__search{background:#f8fafc;border:1px solid #e2e8f0;border-radius:8px;align-items:center;gap:.5rem;width:240px;padding:.4rem .875rem;display:none}@media (width>=768px){.admin-topbar__search{display:flex}}.admin-topbar__search input{color:#1e293b;background:0 0;border:none;outline:none;width:100%;font-size:.85rem}.admin-topbar__search input::placeholder{color:#94a3b8}.admin-topbar__dot{background:#10b981;border-radius:50%;flex-shrink:0;width:8px;height:8px}.admin-main{flex:1;padding:1.75rem;overflow-y:auto}@media (width<=1023px){.admin-layout{display:block}.admin-main{padding:1.25rem}}.admin-page{max-width:1280px}.admin-page__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.75rem;display:flex}.admin-page__title{color:#0f172a;letter-spacing:-.02em;font-size:1.4rem;font-weight:800}.admin-page__subtitle{color:#64748b;margin-top:.2rem;font-size:.82rem}.admin-kpi-grid{grid-template-columns:repeat(2,1fr);gap:1rem;margin-bottom:1.75rem;display:grid}@media (width>=640px){.admin-kpi-grid{grid-template-columns:repeat(4,1fr)}}@media (width>=1024px){.admin-kpi-grid{grid-template-columns:repeat(8,1fr)}}.admin-kpi-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:1.1rem 1.1rem 1rem;transition:box-shadow .2s;position:relative;overflow:hidden;box-shadow:0 1px 3px #0000000a}.admin-kpi-card:hover{box-shadow:0 4px 16px #00000014}.admin-kpi-card__icon-wrap{border-radius:10px;justify-content:center;align-items:center;width:38px;height:38px;margin-bottom:.75rem;display:flex}.admin-kpi-card__value{color:#0f172a;letter-spacing:-.03em;font-size:1.45rem;font-weight:800;line-height:1}.admin-kpi-card__label{color:#64748b;margin-top:.3rem;font-size:.72rem;font-weight:500}.admin-kpi-card__trend{border-radius:999px;align-items:center;gap:.2rem;margin-top:.4rem;padding:.15rem .4rem;font-size:.68rem;font-weight:700;display:inline-flex}.admin-kpi-card__trend--up{color:#16a34a;background:#dcfce7}.admin-kpi-card__trend--down{color:#dc2626;background:#fee2e2}.admin-kpi-card__trend--neutral{color:#64748b;background:#f1f5f9}.admin-kpi-card__glow{opacity:.06;border-radius:50%;width:80px;height:80px;position:absolute;top:-20px;right:-20px}.admin-dash-grid{grid-template-columns:1fr;gap:1.25rem;display:grid}@media (width>=1024px){.admin-dash-grid{grid-template-columns:1fr 360px}}.admin-section-header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.5rem;margin-bottom:.875rem;display:flex}.admin-section-title{color:#0f172a;letter-spacing:-.01em;font-size:.9rem;font-weight:700}.admin-table-wrap{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden;box-shadow:0 1px 3px #0000000a}.admin-table-scroll{overflow-x:auto}.admin-table{border-collapse:collapse;width:100%;min-width:560px;font-size:.85rem}.admin-table thead th{text-align:left;color:#64748b;text-transform:uppercase;letter-spacing:.05em;white-space:nowrap;background:#f8fafc;border-bottom:1px solid #e2e8f0;padding:.7rem 1rem;font-size:.72rem;font-weight:700}.admin-table tbody td{color:#334155;vertical-align:middle;border-bottom:1px solid #f1f5f9;padding:.8rem 1rem}.admin-table tbody tr:last-child td{border-bottom:none}.admin-table tbody tr{cursor:default;transition:background .1s}.admin-table tbody tr:hover td{background:#f8fafc}.admin-avatar{color:#fff;background:#2b7fff;border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:32px;height:32px;font-size:.72rem;font-weight:700;display:flex}.admin-avatar--round{border-radius:50%}.admin-filter-bar{flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:1.25rem;display:flex}.admin-filter-bar .input{background:#fff;border-color:#e2e8f0;font-size:.85rem}.admin-filter-bar .input:focus{border-color:#2b7fff}.badge-cyan{color:#164e63;background:#cffafe}.badge-indigo{color:#3730a3;background:#e0e7ff}.badge-rose{color:#9f1239;background:#ffe4e6}.badge-emerald{color:#065f46;background:#d1fae5}.badge-amber{color:#92400e;background:#fef3c7}.badge-slate{color:#475569;background:#f1f5f9}.admin-activity-wrap{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden;box-shadow:0 1px 3px #0000000a}.admin-activity-item{border-bottom:1px solid #f1f5f9;gap:.875rem;padding:.875rem 1rem;transition:background .1s;display:flex}.admin-activity-item:last-child{border-bottom:none}.admin-activity-item:hover{background:#f8fafc}.admin-activity-icon{border-radius:8px;flex-shrink:0;justify-content:center;align-items:center;width:34px;height:34px;display:flex}.admin-activity-body{flex:1;min-width:0}.admin-activity-title{color:#1e293b;margin-bottom:.15rem;font-size:.85rem;font-weight:600}.admin-activity-sub{color:#64748b;white-space:nowrap;text-overflow:ellipsis;font-size:.78rem;overflow:hidden}.admin-activity-actions{flex-shrink:0;align-items:center;gap:.4rem;display:flex}.admin-expanded-row td{background:#f8fafc!important;padding:1rem!important}.admin-expanded-content{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:1rem 1.25rem}.toggle-switch{cursor:pointer;align-items:center;gap:.4rem;display:inline-flex}.toggle-switch input{display:none}.toggle-track{background:#cbd5e1;border-radius:999px;width:38px;height:21px;transition:background .2s;position:relative}.toggle-track.on{background:#22c55e}.toggle-thumb{background:#fff;border-radius:50%;width:17px;height:17px;transition:left .2s;position:absolute;top:2px;left:2px;box-shadow:0 1px 4px #0003}.toggle-track.on .toggle-thumb{left:19px}.report-expanded{background:#f8fafc;border-top:1px solid #f1f5f9}.admin-action-btn{cursor:pointer;white-space:nowrap;border:none;border-radius:7px;align-items:center;gap:.3rem;padding:.3rem .7rem;font-size:.78rem;font-weight:600;transition:all .15s;display:inline-flex}.admin-action-btn--approve{color:#15803d;background:#dcfce7}.admin-action-btn--approve:hover{background:#bbf7d0}.admin-action-btn--reject{color:#dc2626;background:#fee2e2}.admin-action-btn--reject:hover{background:#fecaca}.admin-action-btn--ghost{color:#475569;background:#f1f5f9}.admin-action-btn--ghost:hover{background:#e2e8f0}.admin-empty{text-align:center;color:#94a3b8;padding:3rem 1rem}.admin-empty p{margin-top:.5rem;font-size:.875rem}.admin-spinner{justify-content:center;align-items:center;padding:3rem;display:flex}.admin-stats-grid{grid-template-columns:repeat(2,1fr);gap:1rem;margin-bottom:2rem;display:grid}@media (width>=768px){.admin-stats-grid{grid-template-columns:repeat(3,1fr)}}@media (width>=1024px){.admin-stats-grid{grid-template-columns:repeat(6,1fr)}}.admin-stat-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;align-items:center;gap:.875rem;padding:1.1rem;display:flex}.admin-stat-card__icon{border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:42px;height:42px;display:flex}.admin-stat-card__value{color:#0f172a;font-size:1.4rem;font-weight:800;line-height:1}.admin-stat-card__label{color:#64748b;margin-top:.2rem;font-size:.72rem}.admin-report-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:1rem}.safety-privacy-badge{color:#15803d;white-space:nowrap;background:#f0fdf4;border:1px solid #bbf7d0;border-radius:999px;flex-shrink:0;align-items:center;gap:.4rem;padding:.35rem .875rem;font-size:.75rem;font-weight:700;display:inline-flex}.safety-banner{color:#1d4ed8;background:#eff6ff;border:1px solid #bfdbfe;border-radius:10px;align-items:flex-start;gap:.6rem;margin-bottom:1.5rem;padding:.75rem 1rem;font-size:.82rem;line-height:1.55;display:flex}.safety-stats-grid{grid-template-columns:repeat(2,1fr);gap:.875rem;margin-bottom:1.75rem;display:grid}@media (width>=640px){.safety-stats-grid{grid-template-columns:repeat(3,1fr)}}@media (width>=1024px){.safety-stats-grid{grid-template-columns:repeat(6,1fr)}}.safety-stat-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:1rem 1rem .875rem;transition:box-shadow .2s;box-shadow:0 1px 3px #0000000a}.safety-stat-card:hover{box-shadow:0 4px 12px #00000012}.safety-stat-card--danger{background:#fff5f5;border-color:#fecaca}.safety-stat-card__icon{border-radius:9px;justify-content:center;align-items:center;width:36px;height:36px;margin-bottom:.65rem;display:flex}.safety-stat-card__val{color:#0f172a;letter-spacing:-.03em;font-size:1.65rem;font-weight:800;line-height:1}.safety-stat-card__label{color:#64748b;margin-top:.25rem;font-size:.7rem;font-weight:500;line-height:1.4}.safety-section{margin-bottom:1.75rem}.auto-actions-grid{grid-template-columns:1fr;gap:.75rem;display:grid}@media (width>=768px){.auto-actions-grid{grid-template-columns:repeat(3,1fr)}}.auto-action-card{background:#fff;border:1px solid #e2e8f0;border-radius:12px;align-items:center;gap:.875rem;padding:.875rem 1rem;transition:box-shadow .15s,border-color .15s;display:flex;box-shadow:0 1px 3px #0000000a}.auto-action-card:hover{border-color:#c7d7fe;box-shadow:0 4px 12px #00000012}.auto-action-card__icon{border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;display:flex}.auto-action-card__body{flex:1;min-width:0}.auto-action-card__title{color:#0f172a;flex-wrap:wrap;align-items:center;gap:.4rem;margin-bottom:.2rem;font-size:.88rem;font-weight:700;display:flex}.auto-action-card__badge{border-radius:999px;padding:.1rem .45rem;font-size:.68rem;font-weight:700}.auto-action-card__desc{color:#64748b;font-size:.75rem;line-height:1.5}.auto-action-card__btn{color:#fff;cursor:pointer;white-space:nowrap;background:#2b7fff;border:none;border-radius:8px;flex-shrink:0;align-items:center;gap:.35rem;padding:.4rem .85rem;font-size:.8rem;font-weight:700;transition:background .15s,opacity .15s;display:inline-flex}.auto-action-card__btn:hover:not(:disabled){background:#1d6ef0}.auto-action-card__btn:disabled{opacity:.4;cursor:not-allowed}.safety-violation-badge{border-radius:999px;padding:.2rem .55rem;font-size:.75rem;font-weight:700;display:inline-block}.safety-violation-badge[data-count="1"]{color:#92400e;background:#fef3c7}.safety-violation-badge[data-count="2"]{color:#9a3412;background:#ffedd5}.safety-violation-badge[data-count="3"],.safety-violation-badge[data-count="4"],.safety-violation-badge[data-count="5"],.safety-violation-badge[data-count="6"],.safety-violation-badge[data-count="7"],.safety-violation-badge[data-count="8"],.safety-violation-badge[data-count="9"]{color:#991b1b;background:#fee2e2}.safety-filter-tabs{background:#f1f5f9;border-radius:8px;gap:.25rem;padding:.2rem;display:flex}.safety-filter-tab{color:#64748b;cursor:pointer;background:0 0;border:none;border-radius:6px;padding:.3rem .75rem;font-size:.78rem;font-weight:600;transition:all .15s}.safety-filter-tab:hover{color:#1e293b}.safety-filter-tab.active{color:#2b7fff;background:#fff;box-shadow:0 1px 3px #0000001a}.spin{animation:.8s linear infinite spin}.ver-tabs{border-bottom:2px solid #e2e8f0;flex-wrap:wrap;gap:0;margin-bottom:1.5rem;display:flex}.ver-tab{color:#64748b;cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;align-items:center;gap:.45rem;margin-bottom:-2px;padding:.65rem 1.1rem;font-size:.85rem;font-weight:500;transition:all .15s;display:inline-flex}.ver-tab:hover{color:#1e293b}.ver-tab--active{color:#2b7fff;border-bottom-color:#2b7fff;font-weight:700}.ver-tab-count{color:#475569;background:#e2e8f0;border-radius:999px;justify-content:center;align-items:center;min-width:20px;height:20px;padding:0 6px;font-size:.7rem;font-weight:700;display:inline-flex}.ver-tab-count--active{color:#fff;background:#2b7fff}.ver-list{flex-direction:column;gap:.875rem;display:flex}.ver-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;transition:box-shadow .2s;overflow:hidden;box-shadow:0 1px 3px #0000000a}.ver-card--open{border-color:#bfdbfe;box-shadow:0 4px 16px #2b7fff14}.ver-card__header{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:1rem;padding:1rem 1.25rem;display:flex}.ver-card__header:hover{background:#fafbff}.ver-card__avatar{color:#fff;background:#2b7fff;border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:42px;height:42px;font-size:1rem;font-weight:700;display:flex}.ver-card__meta{flex:1;min-width:0}.ver-card__name{color:#0f172a;flex-wrap:wrap;align-items:center;gap:.5rem;margin-bottom:.2rem;font-size:.95rem;font-weight:700;display:flex}.ver-card__sub{color:#475569;white-space:nowrap;text-overflow:ellipsis;font-size:.78rem;overflow:hidden}.ver-card__sub--muted{color:#94a3b8;margin-top:.15rem}.ver-card__chevron{flex-shrink:0}.ver-badge{border-radius:999px;flex-shrink:0;align-items:center;gap:.3rem;padding:.2rem .6rem;font-size:.7rem;font-weight:700;display:inline-flex}.ver-score{border-radius:10px;flex-direction:column;flex-shrink:0;justify-content:center;align-items:center;gap:.1rem;min-width:68px;height:52px;padding:.5rem .75rem;display:flex}.ver-card__body{background:#fafbff;border-top:1px solid #f1f5f9;padding:1.25rem 1.5rem 1.5rem}.ver-section-title{color:#64748b;text-transform:uppercase;letter-spacing:.07em;margin-bottom:.75rem;font-size:.72rem;font-weight:700}.ver-docs-grid{grid-template-columns:1fr 1fr;gap:.875rem;display:grid}@media (width<=640px){.ver-docs-grid{grid-template-columns:1fr}}.ver-doc-card{background:#fff;border:1px solid #e2e8f0;border-radius:10px;flex-direction:column;gap:.5rem;padding:.875rem;display:flex}.ver-doc-card--empty{border-style:dashed;justify-content:center;align-items:center;min-height:90px}.ver-doc-card--notes{overflow:hidden}.ver-doc-thumb{object-fit:contain;background:#f8fafc;border:1px solid #f1f5f9;border-radius:6px;width:100%;max-height:140px}.ver-doc-info{justify-content:space-between;align-items:center;display:flex}.ver-doc-name{color:#1e293b;font-size:.82rem;font-weight:600}.ver-doc-link{color:#2b7fff;align-items:center;gap:.3rem;font-size:.78rem;font-weight:600;text-decoration:none;display:inline-flex}.ver-doc-link:hover{text-decoration:underline}.ver-notes{color:#475569;white-space:pre-wrap;max-height:140px;margin:0;font-family:inherit;font-size:.78rem;line-height:1.65;overflow-y:auto}.ver-reason-input{resize:vertical;width:100%;margin-bottom:1rem;font-size:.85rem}.ver-actions{flex-direction:column;gap:.5rem;display:flex}.ver-btn{cursor:pointer;border:none;border-radius:10px;justify-content:center;align-items:center;gap:.5rem;width:100%;padding:.75rem 1.25rem;font-size:.88rem;font-weight:700;transition:all .15s;display:flex}.ver-btn:disabled{opacity:.45;cursor:not-allowed}.ver-btn--approve{color:#fff;background:#16a34a}.ver-btn--approve:not(:disabled):hover{background:#15803d}.ver-btn--reject{color:#475569;background:#f1f5f9;border:1px solid #e2e8f0}.ver-btn--reject:not(:disabled){color:#dc2626;background:#fee2e2;border-color:#fecaca}.ver-btn--reject:not(:disabled):hover{background:#fecaca}
