/* /assets/css/main.css */
:root{--color-primary: #3b82f6;--color-primary-dk: #2563eb;--color-primary-lt: #eff6ff;--color-secondary: #f59e0b;--color-success: #10b981;--color-danger: #ef4444;--color-warning: #f59e0b;--color-dark: #1e293b;--color-mid: #64748b;--color-light: #f1f5f9;--color-white: #ffffff;--color-bg: #f8fafc;--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--font-size-base: 16px;--line-height: 1.6;--container-max: 1200px;--radius-sm: 8px;--radius-md: 16px;--radius-lg: 24px;--shadow-sm: 0 2px 4px rgba(0,0,0,.02);--shadow-md: 0 4px 12px rgba(0,0,0,.04);--shadow-lg: 0 12px 24px rgba(0,0,0,.06);--shadow-soft: 0 8px 30px rgba(0,0,0,.04);--shadow-hover: 0 20px 40px rgba(0,0,0,.08);--transition: .3s cubic-bezier(.4, 0, .2, 1)}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-sans);font-size:var(--font-size-base);line-height:var(--line-height);color:var(--color-dark);background-color:var(--color-bg);-webkit-font-smoothing:antialiased;min-height:100vh;display:flex;flex-direction:column}main{flex:1}a{color:var(--color-primary);text-decoration:none;transition:color var(--transition)}a:hover{color:var(--color-primary-dk)}.container{max-width:var(--container-max);margin:0 auto;padding:0 24px}.page-padding{padding-top:40px;padding-bottom:60px}.text-center{text-align:center}.text-muted{color:var(--color-mid)}.mt-3{margin-top:16px}.mt-4{margin-top:24px}.mb-3{margin-bottom:16px}h1,h2,h3,h4{font-weight:700;line-height:1.2;color:var(--color-dark)}.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 24px;border-radius:var(--radius-sm);font-weight:600;font-size:.95rem;cursor:pointer;border:none;transition:all var(--transition);text-decoration:none}.btn--primary{background-color:var(--color-primary);color:var(--color-white);box-shadow:0 4px 6px -1px #3b82f666}.btn--primary:hover{background-color:var(--color-primary-dk);color:var(--color-white);transform:translateY(-2px);box-shadow:0 10px 15px -3px #3b82f666}.btn--outline{background-color:transparent;color:var(--color-primary);border:2px solid var(--color-primary)}.btn--outline:hover{background-color:var(--color-primary-lt);transform:translateY(-2px)}.header{background:#ffffffd9;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(226,232,240,.8);position:sticky;top:0;z-index:1000;height:72px;display:flex;align-items:center}.header__inner{width:100%;max-width:1400px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center}.header__left{display:flex;align-items:center;justify-content:flex-start}.header__center{display:flex;align-items:center;justify-content:center;gap:32px}.header__right{display:flex;align-items:center;justify-content:flex-end;gap:20px}.logo{font-size:1.5rem;font-weight:800;color:#3b82f6;letter-spacing:-.5px;text-decoration:none}.nav-links a{font-size:15px;font-weight:500;color:#64748b;text-decoration:none;transition:color .2s ease}.nav-links a:hover{color:#0f172a}.btn--sm{padding:10px 24px;font-size:14px;border-radius:20px}.hero{padding:120px 0;background:linear-gradient(135deg,#1e3a8a,#3b82f6);color:var(--color-white);position:relative}.hero:after{content:"";position:absolute;bottom:0;left:0;right:0;height:60px;background:linear-gradient(to top,var(--color-bg),transparent)}.hero h1{font-size:3.5rem;margin-bottom:24px;color:var(--color-white);letter-spacing:-1px}.hero p{font-size:1.25rem;margin-bottom:48px;opacity:.9;font-weight:400}.search-bar{display:flex;max-width:650px;margin:0 auto;background:var(--color-white);border-radius:var(--radius-md);padding:8px;box-shadow:0 20px 25px -5px #0003;position:relative;z-index:10}.search-bar input{flex:1;border:none;padding:16px 24px;font-size:1.1rem;outline:none;border-radius:var(--radius-sm);background:transparent;color:var(--color-dark)}.search-bar .btn{padding:16px 40px;border-radius:calc(var(--radius-md) - 4px);font-size:1.1rem}.results-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:32px;margin-top:32px}.card{background:var(--color-white);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-md);transition:var(--transition);display:flex;flex-direction:column;border:1px solid rgba(0,0,0,.05)}.card:hover{transform:translateY(-8px);box-shadow:var(--shadow-hover)}.card__img{position:relative;height:220px;width:100%;overflow:hidden}.card__img img,.card__img-placeholder{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.card:hover .card__img img{transform:scale(1.05)}.badge{position:absolute;top:16px;right:16px;background:var(--color-primary);color:var(--color-white);padding:6px 12px;border-radius:30px;font-size:.8rem;font-weight:600;box-shadow:0 2px 4px #0003;z-index:2}.card__content{padding:24px;display:flex;flex-direction:column;flex:1}.card__content h3{font-size:1.25rem;margin-bottom:8px}.card__content h3 a{color:var(--color-dark)}.card__content h3 a:hover{color:var(--color-primary)}.card__city{color:var(--color-mid);font-size:.95rem;margin-bottom:16px;display:flex;align-items:center}.card__meta{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:16px;border-top:1px solid var(--color-light)}.stars{color:var(--color-warning);font-weight:600}.distance{color:var(--color-mid);font-size:.9rem}.place-hero{height:400px;position:relative;background:var(--color-dark)}.place-hero__img,.place-hero__placeholder{width:100%;height:100%;object-fit:cover;opacity:.6}.place-hero__overlay{position:absolute;bottom:0;left:0;right:0;padding:60px 0 40px;background:linear-gradient(to top,rgba(0,0,0,.8),transparent);color:var(--color-white)}.place-hero__overlay h1{color:var(--color-white);font-size:3rem;margin:16px 0 8px}.place-layout{display:grid;grid-template-columns:2fr 1fr;gap:40px}.place-main{background:var(--color-white);padding:40px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);border:1px solid rgba(0,0,0,.05)}.place-sidebar .sidebar-box{background:var(--color-white);padding:32px;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);border:1px solid rgba(0,0,0,.05);position:sticky;top:100px}.pet-policy-box{background:var(--color-primary-lt);padding:24px;border-radius:var(--radius-sm);border-left:4px solid var(--color-primary)}.pet-policy-box ul{list-style:none}.pet-policy-box li{margin-bottom:12px;font-size:1.05rem}.map-container-full{display:flex;height:calc(100vh - 80px);width:100%}.map-sidebar{width:400px;background:var(--color-white);box-shadow:2px 0 10px #0000000d;z-index:10;display:flex;flex-direction:column;padding:24px}.map-results{flex:1;overflow-y:auto;margin-top:16px;padding-right:8px}.map-wrapper{flex:1;background:#e5e5e5;z-index:1}.map-popup{display:flex;flex-direction:column;width:200px}.map-popup img{width:100%;height:120px;object-fit:cover;border-radius:4px 4px 0 0}.map-popup__body{padding:12px}.map-popup h3{font-size:1rem;margin-bottom:4px}.footer{position:relative;background:#f8fafc;padding:80px 40px 32px;color:var(--color-text-secondary, #64748b);margin-top:60px;overflow:hidden;border-top:none}.footer:before,.footer:after{content:"";position:absolute;background:#eff6ff;border-radius:50%;z-index:0;pointer-events:none}.footer:before{width:250px;height:250px;top:-120px;left:-80px}.footer:after{width:350px;height:350px;bottom:-150px;right:-100px}.footer .section__inner{max-width:1080px;margin:0 auto;width:100%;position:relative;z-index:1}.footer__top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:64px;gap:64px}.footer__brand{max-width:300px;text-align:left}.footer__logo{display:flex;align-items:center;gap:8px;font-size:24px;font-weight:700;color:var(--color-text-primary, #0f172a);letter-spacing:-.03em;margin-bottom:12px}.footer__logo-img{height:56px;width:auto;object-fit:contain}.footer__title{font-size:20px;font-weight:700;color:var(--color-text-primary, #0f172a);margin:16px 0 8px;line-height:1.3}.footer__tagline{font-size:15px;color:var(--color-text-secondary, #64748b);line-height:1.6;margin-bottom:24px}.footer__socials{display:flex;gap:16px}.footer__socials a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:#fff;border:1px solid #e2e8f0;color:var(--color-text-primary, #0f172a);transition:all .2s ease}.footer__socials a:hover{background:var(--color-primary-lt, #eff6ff);color:var(--color-primary, #3b82f6);border-color:var(--color-primary, #3b82f6);transform:translateY(-2px)}.footer__nav{display:grid;grid-template-columns:repeat(4,1fr);gap:40px;flex:1;text-align:left}.footer__col-title{font-size:13px;font-weight:600;color:var(--color-text-primary, #0f172a);text-transform:uppercase;letter-spacing:.05em;margin-bottom:20px}.footer__links{display:flex;flex-direction:column;gap:16px}.footer__link{font-size:15px;color:var(--color-text-secondary, #64748b);text-decoration:none;transition:color .15s}.footer__link:hover{color:var(--color-primary, #3b82f6)}.footer__bottom{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--color-border-tertiary, #e2e8f0);padding-top:32px;flex-wrap:wrap;gap:24px}.footer__copy{font-size:14px;color:var(--color-text-secondary, #64748b)}.footer__legal-links{display:flex;gap:24px}.footer__legal-links a{font-size:14px;color:var(--color-text-secondary, #64748b);text-decoration:none;transition:color .15s}.footer__legal-links a:hover{color:var(--color-primary, #3b82f6)}.footer__selectors{display:flex;gap:16px}.footer__select-wrapper{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--color-text-secondary, #64748b)}.footer__select-wrapper svg{color:var(--color-text-secondary, #64748b)}.footer__select{-webkit-appearance:none;appearance:none;background:transparent;border:none;font-size:14px;color:var(--color-text-secondary, #64748b);font-family:inherit;font-weight:500;cursor:pointer;outline:none}.footer__select:hover{color:var(--color-text-primary, #0f172a)}@media (max-width: 900px){.footer__nav{gap:24px}}@media (max-width: 768px){.footer{padding:48px 20px 80px;text-align:center}.footer__top{flex-direction:column;gap:40px;align-items:center}.footer__brand{max-width:100%;text-align:center;display:flex;flex-direction:column;align-items:center}.footer__logo,.footer__socials{justify-content:center}.footer__nav{grid-template-columns:1fr;gap:32px;width:100%;text-align:center}.footer__bottom{flex-direction:column;align-items:center;gap:24px;text-align:center}.footer__legal-links{justify-content:center;flex-wrap:wrap;gap:16px}.footer__selectors{align-items:center;justify-content:center;width:100%;flex-direction:column;gap:12px}.footer__select-wrapper{justify-content:center;width:100%}}#tab-politica .policy-list>.policy-row:not(.policy-row--detail){height:82px;min-height:82px;box-sizing:border-box}#tab-politica .policy-list .policy-left{display:grid;grid-template-columns:40px minmax(0,1fr);align-items:center;column-gap:12px;min-width:0}#tab-politica .policy-list .policy-left>svg,#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-left>svg,#tab-politica .policy-row--detail .policy-left>svg{display:block;box-sizing:border-box;width:40px;height:40px;margin:0;padding:10px}#tab-politica .policy-list .policy-label{display:block;min-height:0;margin:0;padding:0;color:#26344a;font-size:14px;font-weight:700;line-height:1.3}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-right{display:flex;align-items:center;justify-content:center;min-width:92px;min-height:34px;box-sizing:border-box;gap:6px;padding:7px 11px}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-right>svg{width:15px;height:15px}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-val{display:block;line-height:1;white-space:nowrap}#tab-politica .policy-row--detail .policy-right>svg{display:none}#tab-politica .policy-row--restrictions,#tab-politica .policy-list>.policy-row--restrictions{display:block;padding:20px 22px 22px;border-color:#e4eaf2!important}#tab-politica .policy-row--restrictions .policy-left,#tab-politica .policy-list>.policy-row--restrictions .policy-left{width:100%;padding:0 0 15px;border-bottom:1px solid #EDF1F6}#tab-politica .policy-row--restrictions .policy-left>svg{background:#fff3e8}#tab-politica .policy-row--restrictions .policy-right,#tab-politica .policy-list>.policy-row--restrictions .policy-right{display:block;width:100%;margin-top:16px}#tab-politica .policy-row--restrictions .policy-detail-kicker{margin:0 0 11px;color:#8290a5}#tab-politica .policy-row--restrictions .policy-detail-content li{min-height:44px;box-sizing:border-box;padding:11px 13px 11px 33px}#tab-politica .policy-row--restrictions .policy-detail-content li:before{top:9px}#tab-politica .policy-row--restrictions .policy-right>.policy-val{display:block;width:100%;padding:16px 18px;border-radius:13px;color:#3b4a60!important;background:#f7f9fc;font-size:14px;font-weight:500;line-height:1.75;text-align:left}#tab-politica .policy-row--fee,#tab-politica .policy-list>.policy-row--fee{display:grid;grid-template-columns:minmax(180px,240px) minmax(0,1fr);align-items:center;gap:24px;min-height:82px;padding:16px 22px;border-color:#dce8fa!important;background:linear-gradient(100deg,#fff,#f4f8ff)}#tab-politica .policy-row--fee .policy-left{width:auto;padding:0}#tab-politica .policy-row--fee .policy-left>svg{background:#fff3e8}#tab-politica .policy-row--fee .policy-left .policy-label{padding:0;white-space:nowrap}#tab-politica .policy-row--fee .policy-right{display:flex;width:100%;margin:0}#tab-politica .policy-row--fee .policy-fee-content{min-height:50px;box-sizing:border-box;padding:10px 16px}#tab-politica .policy-row--fee .policy-right>.policy-val{display:flex;align-items:center;min-height:50px;width:100%;box-sizing:border-box;padding:10px 16px;border:1px solid #DBEAFE;border-radius:13px;color:#1d4ed8!important;background:#eff6ff;font-size:15px;font-weight:750;line-height:1.35;text-align:left}@media (max-width: 768px){#tab-politica .policy-list>.policy-row:not(.policy-row--detail){height:76px;min-height:76px}#tab-politica .policy-list .policy-left{grid-template-columns:40px minmax(0,1fr)}#tab-politica .policy-row--restrictions{display:block;padding:17px!important}#tab-politica .policy-row--restrictions .policy-left{padding-bottom:13px}#tab-politica .policy-row--restrictions .policy-right{margin-top:13px}#tab-politica .policy-row--restrictions .policy-detail-content li{min-height:0}#tab-politica .policy-row--fee{display:grid;grid-template-columns:1fr;gap:12px;padding:17px!important}#tab-politica .policy-row--fee .policy-left .policy-label{white-space:normal}#tab-politica .policy-row--fee .policy-fee-content{align-items:flex-start}}.policy-intro{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:18px;padding:24px 26px;overflow:hidden;border:1px solid #D9E7FF;border-radius:20px;background:linear-gradient(135deg,#f8fbff,#eef5ff 58%,#ecfdf5)}.policy-intro__eyebrow{display:inline-flex;align-items:center;gap:7px;color:#2563eb;font-size:12px;font-weight:750;letter-spacing:.07em;text-transform:uppercase}.policy-intro__eyebrow svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.policy-intro h2{margin:7px 0 5px;color:#0f172a;font-size:24px;letter-spacing:-.025em}.policy-intro p{max-width:650px;margin:0;color:#52627a;font-size:14px;line-height:1.6}.policy-intro__date{flex:0 0 auto;padding:9px 12px;border:1px solid rgba(37,99,235,.12);border-radius:12px;color:#64748b;background:#ffffffb3;font-size:11px;line-height:1.35;text-align:right}.policy-intro__date strong{color:#0f172a;font-size:12px}#tab-politica .policy-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}#tab-politica .policy-list>.policy-row:not(.policy-row--detail){min-height:78px;margin:0;padding:17px 18px;border:1px solid #E4EAF2;border-radius:16px;background:#fff;box-shadow:0 7px 20px #0f172a09}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-left{gap:11px}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-left>svg{box-sizing:content-box;flex:0 0 auto;width:20px;height:20px;padding:9px;border-radius:12px;background:#f1f5f9;stroke:#52627a}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-label{color:#334155;font-size:14px;font-weight:650}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-right{flex:0 0 auto;padding:6px 9px;border-radius:999px;background:#f8fafc}#tab-politica .policy-list>.policy-row:not(.policy-row--detail) .policy-val{font-size:13px;font-weight:750}#tab-politica .policy-val.val-unknown{color:#64748b}#tab-politica .policy-row--detail{grid-column:1 / -1;margin:0;padding:22px;border:1px solid #E2E8F0!important;background:#fff;box-shadow:0 8px 24px #0f172a0a}#tab-politica .policy-row--detail .policy-left{align-items:flex-start;padding-top:1px}#tab-politica .policy-row--detail .policy-left>svg{box-sizing:content-box;width:20px;height:20px;padding:9px;border-radius:12px;background:#fff7ed;stroke:#ea580c}#tab-politica .policy-row--detail .policy-left .policy-label{padding-top:10px;color:#0f172a;font-weight:750}.policy-detail-content{width:100%}.policy-detail-kicker{display:block;margin-bottom:10px;color:#64748b;font-size:11px;font-weight:750;letter-spacing:.07em;text-transform:uppercase}.policy-detail-content ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px 18px;margin:0;padding:0;list-style:none}.policy-detail-content li{position:relative;padding:10px 12px 10px 31px;border-radius:11px;color:#334155;background:#f8fafc;font-size:13px;font-weight:500;line-height:1.55}.policy-detail-content li:before{content:"\2022";position:absolute;left:13px;top:9px;color:#f97316;font-size:18px;font-weight:800}.policy-consult{display:block;padding:12px 14px;border-radius:11px;color:#64748b!important;background:#f8fafc}.policy-fee-content{display:flex;align-items:center;justify-content:space-between;width:100%;gap:18px;padding:14px 16px;border:1px solid #DBEAFE;border-radius:13px;background:#eff6ff}.policy-fee-content span{color:#64748b;font-size:12px}.policy-fee-content strong{color:#1d4ed8;font-size:15px;text-align:right}#tab-politica .policy-warning-box{margin-top:16px;border-color:#e0e7ff;background:linear-gradient(90deg,#eef2ff,#f5f7ff)}@media (max-width: 768px){.policy-intro{align-items:flex-start;padding:20px;border-radius:16px}.policy-intro h2{font-size:21px}.policy-intro__date{display:none}#tab-politica .policy-list{grid-template-columns:1fr;padding:0;background:transparent}#tab-politica .policy-list>.policy-row:not(.policy-row--detail){min-height:70px;padding:14px}#tab-politica .policy-row--detail{padding:17px!important}#tab-politica .policy-row--detail .policy-left{padding:0}#tab-politica .policy-row--detail .policy-left .policy-label{padding-top:10px}.policy-detail-content ul{grid-template-columns:1fr;gap:8px}.policy-fee-content{align-items:flex-start;flex-direction:column;gap:4px}.policy-fee-content strong{text-align:left}}@media (max-width: 768px){.hero h1{font-size:2.2rem}.place-layout{grid-template-columns:1fr}.map-container-full{flex-direction:column-reverse}.map-sidebar{width:100%;height:50vh}.map-wrapper{height:50vh}.header__inner{display:flex;justify-content:space-between;padding:0 20px}.header__center{display:none}}.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#fff;box-shadow:0 -4px 24px #0f172a14;z-index:9999;padding:24px;border-top:1px solid rgba(15,23,42,.05);animation:slideUp .4s cubic-bezier(.16,1,.3,1)}@keyframes slideUp{0%{transform:translateY(100%)}to{transform:translateY(0)}}.cookie-banner__inner{max-width:var(--container-max);margin:0 auto;display:flex;flex-direction:column;gap:20px}@media (min-width: 1024px){.cookie-banner__inner{flex-direction:row;align-items:center;justify-content:space-between}}.cookie-banner__content{flex:1}.cookie-banner__title{font-size:18px;font-weight:700;color:var(--color-dark);margin-bottom:8px;display:flex;align-items:center;gap:8px}.cookie-banner__text{font-size:14px;color:var(--color-mid);line-height:1.6}.cookie-banner__actions{display:flex;gap:12px;flex-wrap:wrap}.cookie-banner__btn{padding:10px 20px;font-size:14px}.cookie-modal{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;padding:16px}.cookie-modal[hidden]{display:none}.cookie-modal__overlay{position:absolute;inset:0;background:#0f172a99;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.cookie-modal__box{position:relative;background:#fff;width:100%;max-width:560px;border-radius:var(--radius-md);box-shadow:0 24px 48px #0f172a1f;display:flex;flex-direction:column;max-height:90vh;animation:modalScale .3s cubic-bezier(.16,1,.3,1)}@keyframes modalScale{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.cookie-modal__header{padding:24px;border-bottom:1px solid var(--color-light);display:flex;align-items:center;justify-content:space-between}.cookie-modal__title{font-size:20px;font-weight:700;color:var(--color-dark);margin:0}.cookie-modal__close{background:none;border:none;color:var(--color-mid);cursor:pointer;padding:4px;border-radius:50%;transition:all .2s;display:flex;align-items:center;justify-content:center}.cookie-modal__close:hover{background:var(--color-light);color:var(--color-dark)}.cookie-modal__body{padding:24px;overflow-y:auto}.cookie-modal__desc{font-size:14px;color:var(--color-mid);margin-bottom:24px;line-height:1.6}.cookie-option{display:flex;align-items:flex-start;gap:16px;padding:16px 0;border-bottom:1px solid var(--color-light)}.cookie-option:last-child{border-bottom:none;padding-bottom:0}.cookie-option__info{flex:1}.cookie-option__title{font-size:15px;font-weight:600;color:var(--color-dark);margin-bottom:4px}.cookie-option__desc{font-size:13px;color:var(--color-mid);line-height:1.5}.toggle-switch{position:relative;display:inline-block;width:44px;height:24px;flex-shrink:0;margin-top:2px}.toggle-switch input{opacity:0;width:0;height:0}.toggle-slider{position:absolute;cursor:pointer;inset:0;background-color:#cbd5e1;transition:.3s;border-radius:34px}.toggle-slider:before{position:absolute;content:"";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;transition:.3s;border-radius:50%;box-shadow:0 2px 4px #0000001a}.toggle-switch input:checked+.toggle-slider{background-color:var(--color-primary)}.toggle-switch input:checked+.toggle-slider:before{transform:translate(20px)}.toggle-slider.disabled{cursor:not-allowed;background-color:var(--color-primary);opacity:.6}.cookie-modal__footer{padding:24px;border-top:1px solid var(--color-light);display:flex;justify-content:flex-end}.cookie-modal__btn-save{width:100%}@media (min-width: 640px){.cookie-modal__btn-save{width:auto}}.modal-overlay{position:fixed;inset:0;background:#0f172a80;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:10000;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;visibility:hidden;transition:all .3s ease}.modal-overlay.active{opacity:1;visibility:visible}.modal-content{background:#fff;width:100%;box-shadow:0 24px 48px #00000026;transform:translateY(20px) scale(.95);transition:all .3s ease;display:flex;flex-direction:column;overflow:hidden}.modal-overlay.active .modal-content{transform:translateY(0) scale(1)}.modal-content--premium{max-width:720px;border-radius:24px;background:#fff;box-shadow:0 20px 40px -10px #0000001a,0 0 20px #00000008;border:1px solid rgba(0,0,0,.05)}.modal-handle{display:none}@media (max-width: 640px){.modal-overlay{align-items:flex-end;padding:0}.modal-content--premium{border-radius:28px 28px 0 0;max-height:90vh;box-shadow:0 -10px 40px #0000001a;border:none}.modal-handle{display:block;width:40px;height:4px;background:#fff6;border-radius:2px;margin:-8px auto 16px}.modal-header{padding:20px 24px 24px!important}.modal-body--premium{padding:32px 24px 24px!important}.modal-close-premium{top:20px!important;right:20px!important}}.modal-header{padding:32px 40px 24px;border-bottom:none;display:block;text-align:center;position:relative;flex-shrink:0;background-color:#1d4ed8;border-radius:24px 24px 0 0}@media (max-width: 640px){.modal-header{border-radius:28px 28px 0 0}}.modal-header>div{display:flex;flex-direction:column;align-items:center}.modal-title-premium{font-size:24px;font-weight:800;color:#fff;margin:0 0 8px;display:flex;align-items:center;justify-content:center;gap:12px;letter-spacing:-.02em}.title-icon{display:flex;align-items:center;justify-content:center;width:32px;height:32px;background:#fff3;color:#fff;border-radius:50%;flex-shrink:0}.modal-subtitle{font-size:14px;color:#ffffffe6;margin:0 auto;line-height:1.5;max-width:90%}.modal-close-premium{position:absolute;top:32px;right:40px;background:transparent;border:1px solid rgba(255,255,255,.3);width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#fff;transition:all .2s;flex-shrink:0}.modal-close-premium:hover{background:#ffffff1a;border-color:#ffffff80;transform:rotate(90deg)}.modal-body--premium{padding:40px 40px 32px;flex:1;overflow-y:auto}.form-group--premium{margin-bottom:32px}.form-group--premium>label{display:block;font-size:16px;font-weight:700;color:#1e293b;margin-bottom:16px;text-align:center;letter-spacing:-.01em}.star-rating-input--huge{display:flex;justify-content:center;flex-direction:row-reverse;gap:16px;margin:16px 0}.star-rating-input--huge svg{width:56px;height:56px;transition:transform .2s cubic-bezier(.34,1.56,.64,1)}@media (max-width: 640px){.star-rating-input--huge svg{width:48px;height:48px}}.star-rating-input--huge input{display:none}.star-rating-input--huge label{color:#cbd5e1;fill:#f8fafc;cursor:pointer;transition:all .2s}.star-rating-input--huge label:hover svg,.star-rating-input--huge label:hover~label svg{transform:scale(1.15)}.star-rating-input--huge label:hover,.star-rating-input--huge label:hover~label,.star-rating-input--huge input:checked~label{color:#2563eb;fill:#3b82f6}.star-rating-hint{font-size:14px;color:#64748b;margin-top:12px;text-align:center;display:block;font-weight:500}.segmented-control{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;background:transparent}.segmented-option input{display:none}.segmented-inner{display:flex;flex-direction:column;align-items:center;gap:12px;padding:16px 12px;background:#f8fafc;transition:all .2s cubic-bezier(.4,0,.2,1);font-size:15px;font-weight:600;color:#475569;border:1px solid #E2E8F0;border-radius:16px;cursor:pointer}.segmented-inner svg{width:24px;height:24px}.segmented-option:hover .segmented-inner{border-color:#cbd5e1;background:#f1f5f9;transform:translateY(-2px);box-shadow:0 4px 12px #0000000a}.segmented-option input:checked+.segmented-inner--ok{border-color:#10b981;background:#f0fdf4;color:#065f46;box-shadow:0 0 0 4px #10b9811a;transform:translateY(0)}.segmented-inner--ok svg{color:#10b981}.segmented-option input:checked+.segmented-inner--no{border-color:#ef4444;background:#fef2f2;color:#991b1b;box-shadow:0 0 0 4px #ef44441a;transform:translateY(0)}.segmented-inner--no svg{color:#ef4444}.segmented-option input:checked+.segmented-inner--neutral{border-color:#64748b;background:#f8fafc;color:#1e293b;box-shadow:0 0 0 4px #64748b1a;transform:translateY(0)}.segmented-inner--neutral svg{color:#64748b}.review-step{display:none}.review-step.active{display:block}.mobile-only-footer{margin-top:32px;margin-bottom:8px}.desktop-only-btn{display:none!important}.mobile-only-btn{display:inline-flex!important}.modal-overlay[data-step="1"] #review-footer-desktop{display:none}.form-row--premium{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:32px}@media (max-width: 640px){.form-row--premium{grid-template-columns:1fr}}.form-row--premium .form-group--premium{margin-bottom:0}.custom-select-wrapper{position:relative;width:100%}.custom-select--premium{width:100%;-webkit-appearance:none;appearance:none;background:#fff;border:1px solid #E2E8F0;border-radius:12px;padding:16px 16px 16px 44px;font-size:15px;color:#1e293b;outline:none;cursor:pointer;transition:all .2s;box-shadow:0 2px 4px #00000005}.custom-select--premium:focus{border-color:#3b82f6;box-shadow:0 0 0 4px #3b82f61a}.custom-select-leading-icon{position:absolute;left:16px;top:50%;transform:translateY(-50%);color:#94a3b8;pointer-events:none}.custom-select-icon{position:absolute;right:16px;top:50%;transform:translateY(-50%);pointer-events:none;color:#64748b}.custom-textarea--premium{width:100%;border:1px solid #E2E8F0;border-radius:16px;padding:16px;font-size:15px;outline:none;resize:vertical;min-height:80px;font-family:inherit;transition:all .2s;background:#f8fafc;color:#1e293b}.custom-textarea--premium:focus{border-color:#3b82f6;background:#fff;box-shadow:0 0 0 4px #3b82f61a}.textarea-counter{text-align:right;font-size:12px;color:#94a3b8;margin-top:8px}.modal-footer-wrapper{border-top:1px solid #F1F5F9;flex-shrink:0}.modal-secure-notice{display:flex;align-items:center;justify-content:center;gap:8px;padding:16px;font-size:12px;color:#64748b;background:#f8fafc}.modal-secure-notice svg{color:#94a3b8}.modal-footer--premium{padding:20px 32px 32px;display:flex;justify-content:space-between;align-items:center;gap:16px;background:#fff}@media (max-width: 640px){.modal-footer--premium{padding:16px 24px 24px}}.btn-modal-cancel{background:transparent;border:none;color:#475569;font-weight:600;padding:14px 24px;border-radius:12px;cursor:pointer;font-size:16px;flex:1;transition:all .2s;display:flex;align-items:center;justify-content:center}.btn-modal-cancel:hover{background:#f1f5f9;color:#0f172a}.btn-modal-submit{background:#2563eb;border:none;color:#fff;font-weight:600;padding:14px 24px;border-radius:12px;cursor:pointer;font-size:16px;flex:1.5;display:flex;align-items:center;justify-content:center;transition:all .2s;box-shadow:0 4px 14px #2563eb33}.btn-modal-submit:hover{background:#1d4ed8;transform:translateY(-1px);box-shadow:0 6px 20px #2563eb4d}@media (max-width: 768px){.place-detail{padding-bottom:100px}.place-tabs-nav{margin:0 -20px;padding:0 20px}.w-50{width:100%}.pr-2,.pl-2{padding:0}.sidebar-card{margin-bottom:40px}}.place-detail-page{background-color:#f7f9fc;min-height:100vh;min-height:100dvh;font-family:Inter,sans-serif;color:#0f172a;overflow-x:hidden;width:100%;box-sizing:border-box}@media (max-width: 768px){.place-detail-page{padding-bottom:calc(120px + env(safe-area-inset-bottom,0px))}}.place-main-layout{max-width:100%;margin:0;padding:0 40px}.place-hero{position:relative;border-radius:0 24px 24px 0;overflow:hidden;min-height:240px;display:flex;flex-direction:column;justify-content:center;padding-top:0;padding-bottom:12px;margin-top:0;margin-left:-40px;width:calc(100% + 40px)}@media (max-width: 768px){html,body{overflow-x:hidden!important;width:100%!important;max-width:100%!important;margin:0!important}.place-detail-page *,.place-detail-page *:before,.place-detail-page *:after{box-sizing:border-box!important}.place-hero{border-radius:0;margin:-16px -16px 0;width:calc(100% + 32px)!important;max-width:calc(100% + 32px)!important;padding:24px 16px 40px;min-height:200px;justify-content:flex-end;box-sizing:border-box}.place-hero__rating-row,.hide-on-mobile{display:none!important}.place-hero__title{margin-bottom:0!important;font-size:28px;word-break:break-word;line-height:1.2}}.place-hero__bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1}.place-hero__overlay{position:absolute;inset:0;background:linear-gradient(to right,#061a3af2,#061a3a99,#061a3a1a),linear-gradient(to top,#061a3ae6,#061a3a00 70%);z-index:2}.place-hero__content{padding:0 32px 0 72px;margin:0 auto;position:relative;z-index:3;width:100%;max-width:1280px;color:#fff}@media (max-width: 768px){.place-hero__content{padding:0;text-align:left}}.place-hero__chips-top{display:flex;align-items:center;gap:12px;margin-bottom:16px;flex-wrap:wrap}.chip-location,.chip-category{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;background:#ffffff26;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:6px 14px;border-radius:100px;border:1px solid rgba(255,255,255,.2)}.place-hero__title{font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.1;margin:0 0 16px;letter-spacing:-.02em;max-width:900px}.place-hero__rating-row{display:flex;align-items:center;gap:16px;margin-bottom:24px;flex-wrap:wrap}.rating-badge-inline{display:flex;align-items:center;gap:6px;font-size:16px}.rating-badge-inline strong{font-weight:700;font-size:16px}.rating-badge-inline .stars{display:flex;align-items:center;margin-top:-2px}.rating-badge-inline .reviews-count{font-size:14px;font-weight:400;opacity:.8;margin-left:4px}.btn-hero-review{background:#ffffff26;border:1px solid rgba(255,255,255,.3);color:#fff;border-radius:100px;padding:6px 14px;font-size:13px;font-weight:600;display:flex;align-items:center;gap:6px;cursor:pointer;transition:all .2s;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.btn-hero-review:hover{background:#ffffff40;border-color:#fff}.place-hero__pet-chips{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:32px}.pet-chip{display:flex;align-items:center;gap:8px;background:transparent;border:1px solid rgba(255,255,255,.3);padding:8px 16px;border-radius:100px;font-size:14px;font-weight:500;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.pet-chip--no{opacity:.5}.place-hero__actions{display:flex;gap:12px;flex-wrap:wrap}.btn-hero-primary,.btn-hero-secondary{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 20px;border-radius:12px;font-size:15px;font-weight:600;text-decoration:none;transition:all .2s;cursor:pointer}.btn-hero-primary{background-color:#2563eb;color:#fff;border:1px solid #2563EB}.btn-hero-primary:hover{background-color:#1d4ed8}.btn-hero-secondary{background-color:#ffffff1a;color:#fff;border:1px solid rgba(255,255,255,.3);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.btn-hero-secondary:hover{background-color:#fff3;border-color:#fff}@media (max-width: 768px){.place-main-layout{margin:0 auto!important;padding:16px!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;overflow-x:hidden!important;display:flex;flex-direction:column;align-items:center}.place-columns{width:100%!important;max-width:100%!important;margin:0 auto}}.mobile-hero-ctas,.mobile-accordion-header{display:none}.premium-mobile-ctas{background-color:#112d64;display:flex;flex-direction:row;padding:24px 20px;gap:20px;color:#fff;margin-bottom:24px}@media (min-width: 769px){.premium-mobile-ctas{display:none!important}}@media (max-width: 768px){.mobile-hero-ctas.premium-mobile-ctas{display:flex;flex-direction:column;margin:16px auto 24px!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;align-items:stretch;border-radius:16px;box-shadow:0 8px 24px #112d6426;padding:20px!important;gap:16px}}.premium-mobile-ctas-left{flex:auto;display:flex;flex-direction:column;align-items:center;text-align:center;border-right:none;border-bottom:1px solid rgba(255,255,255,.15);padding-right:0;padding-bottom:16px}.premium-mobile-ctas-left .btn-premium-outline-mobile{width:100%}.premium-mobile-ctas-right{flex:1;display:flex;flex-direction:column;justify-content:center}.mobile-rating-score{display:flex;align-items:center;gap:6px;font-size:28px;font-weight:800;line-height:1;margin-bottom:4px}.mobile-rating-text{font-size:13px;font-weight:500;margin-bottom:12px;color:#ffffffe6}.mobile-rating-stars{display:flex;gap:4px;margin-bottom:16px}.btn-premium-outline-mobile{background:#ffffff0d;border:1px solid rgba(255,255,255,.3);color:#fff;border-radius:12px;padding:10px;font-size:13px;font-weight:600;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all .2s;cursor:pointer;box-sizing:border-box}.btn-premium-outline-mobile:hover{background:#ffffff26}.btn-premium-primary-mobile{background-color:#2563eb;color:#fff;border:none;border-radius:12px;padding:12px;font-size:15px;font-weight:600;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all .2s;width:100%;box-sizing:border-box}.btn-premium-primary-mobile:hover{background-color:#1d4ed8}.premium-mobile-ctas-row{display:flex;gap:12px}.summary-cards-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:32px;margin-top:-32px;position:relative;z-index:10;padding:0 16px}@media (max-width: 1024px){.summary-cards-row{grid-template-columns:repeat(2,1fr)}}@media (max-width: 768px){.summary-cards-row{margin:0 auto!important;padding:0!important;gap:12px;grid-template-columns:repeat(2,1fr);width:100%!important;max-width:100%!important;box-sizing:border-box!important}.summary-card{padding:12px;gap:10px;border-radius:12px;box-sizing:border-box!important;width:100%!important;margin:0!important}.summary-icon{width:36px;height:36px;padding:8px}.summary-label{font-size:12px;margin-bottom:2px}.summary-val{font-size:14px}.mobile-accordion-header{display:flex;justify-content:space-between;align-items:center;width:100%;padding:16px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;margin-bottom:8px;font-weight:600;color:#0f172a;font-size:15px;cursor:pointer;transition:all .2s ease;box-sizing:border-box}.mobile-accordion-header svg{color:#64748b;flex-shrink:0}.mobile-accordion-header span{flex:1;text-align:left;white-space:normal;word-break:break-word;margin-right:8px}.mobile-accordion-header.active{background:#eff6ff;border-color:#bfdbfe;color:#1d4ed8}.mobile-accordion-header.active svg{color:#2563eb}.mobile-accordion-header .chevron{transition:transform .3s ease}.mobile-accordion-header.active .chevron{transform:rotate(180deg)}.tab-content{display:none;margin-bottom:24px;padding:8px 4px;box-sizing:border-box;width:100%}.tab-content.mobile-open{display:block!important;animation:fadeIn .3s ease}}@media (max-width: 640px){.summary-cards-row{grid-template-columns:repeat(2,1fr)}}.summary-card{background:#fff;border-radius:20px;padding:20px;display:flex;align-items:center;gap:16px;box-shadow:0 4px 12px #0f172a08;border:1px solid #E5EAF2;transition:transform .2s,box-shadow .2s}.summary-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px #0f172a0f}.summary-icon{color:#2563eb;flex-shrink:0;background:#eff6ff;padding:12px;border-radius:12px;width:44px;height:44px;box-sizing:border-box}.summary-text{display:flex;flex-direction:column}.summary-label{font-size:13px;color:#64748b;margin-bottom:4px;font-weight:500}.summary-val{font-size:15px;font-weight:700;color:#0f172a}.summary-val.val-ok{color:#10b981}.summary-val.val-no{color:#ef4444}.summary-val.val-blue{color:#2563eb}.place-columns{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:0}@media (max-width: 1024px){.place-columns{grid-template-columns:1fr}}.content-card{background:#fff;border-radius:24px;padding:32px;box-shadow:0 4px 12px #0f172a05;border:1px solid #E5EAF2;position:relative;overflow:hidden}#seccion-principal{background:transparent!important;box-shadow:none!important;border:none!important;padding:0!important;margin-top:40px!important}@media (max-width: 768px){.content-card{margin:0 auto!important;padding:16px!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;border-radius:16px}}.content-card-title{font-size:20px;font-weight:700;margin:0 0 20px;color:#0f172a}.content-card-tabs{display:flex;gap:24px;border-bottom:1px solid #E5EAF2;margin-bottom:24px;overflow-x:auto;scrollbar-width:none}.content-card-tabs::-webkit-scrollbar{display:none}@media (max-width: 768px){.content-card-tabs{display:none!important}}.tab-link{display:flex;align-items:center;gap:8px;padding:0 0 16px;font-size:15px;font-weight:600;color:#64748b;text-decoration:none;border:none;background:none;border-bottom:2px solid transparent;transition:all .2s;white-space:nowrap;cursor:pointer}.tab-link:hover{color:#0f172a}.tab-link.active{color:#2563eb;border-bottom-color:#2563eb}.tab-content{display:none;animation:fadeInTab .3s ease}.tab-content.active{display:block}@keyframes fadeInTab{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.policy-list{display:flex;flex-direction:column}.policy-row{display:flex;justify-content:space-between;align-items:center;padding:16px 0;border-bottom:1px solid #F1F5F9}.policy-row:last-child{border-bottom:none;padding-bottom:0}.policy-label{font-size:15px;color:#475569;font-weight:500}.policy-val{font-size:15px;font-weight:600;text-align:right}@media (max-width: 768px){.policy-row{flex-direction:column;align-items:flex-start;gap:4px;padding:12px 0}.policy-val{text-align:left;width:100%;word-break:break-word}}.policy-warning-box{display:flex;align-items:flex-start;gap:12px;background:#eef2ff;padding:16px;border-radius:12px;border:1px solid #E0E7FF;margin-top:24px}.policy-warning-box p{margin:0;font-size:14px;color:#3730a3;line-height:1.5;font-weight:500}.place-description{font-size:15px;line-height:1.6;color:#334155;position:relative}.place-description p{margin:0 0 16px}.place-description p:last-child{margin:0}.bg-icon{position:absolute;right:-20px;bottom:-20px;color:#0f172a08;transform:rotate(-10deg);z-index:0;pointer-events:none}.bg-icon svg{width:120px;height:120px}.place-about-intro{position:relative;overflow:hidden;padding:30px 32px;margin-bottom:24px;border:1px solid #DBEAFE;border-radius:20px;background:linear-gradient(135deg,#f8fbff,#eff6ff 58%,#f0fdfa)}.place-about-intro h2{margin:7px 0 12px;color:#0f172a;font-size:26px;line-height:1.2;letter-spacing:-.025em}.place-about-intro .place-description{max-width:850px;font-size:16px;line-height:1.75}.place-about-intro .place-description p{position:relative;z-index:1}.place-about-kicker,.place-info-eyebrow{color:#2563eb;font-size:12px;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.place-about-kicker{display:flex;align-items:center;gap:8px}.place-about-kicker span{width:20px;height:3px;border-radius:9px;background:#2563eb}.place-information{display:grid;gap:24px;color:#334155}.place-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.place-info-card,.place-info-section,.place-sources{border:1px solid #E2E8F0;border-radius:20px;background:#fff;box-shadow:0 10px 30px #0f172a0b}.place-info-card{padding:22px}.place-info-section,.place-sources{padding:24px}.place-info-heading,.place-section-heading,.place-sources-heading{display:flex;align-items:center;justify-content:space-between;gap:14px}.place-info-heading{justify-content:flex-start;margin-bottom:18px}.place-info-heading h3,.place-section-heading h3,.place-sources-heading h3{margin:3px 0 0;color:#0f172a;font-size:19px;line-height:1.25}.place-info-icon{display:grid;place-items:center;flex:0 0 44px;width:44px;height:44px;border-radius:14px}.place-info-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.place-info-icon--blue{color:#2563eb;background:#eff6ff}.place-info-icon--mint{color:#059669;background:#ecfdf5}.place-contact-list{display:grid;gap:8px}.place-contact-link{display:flex;align-items:center;justify-content:space-between;gap:16px;min-width:0;padding:11px 12px;color:#0f172a;text-decoration:none;border-radius:12px;background:#f8fafc;transition:background .2s,transform .2s}.place-contact-link:hover{background:#eff6ff;transform:translate(2px)}.place-contact-link>span{flex:0 0 auto;color:#64748b;font-size:13px}.place-contact-link strong{min-width:0;overflow-wrap:anywhere;color:#1d4ed8;font-size:14px;text-align:right}.place-contact-link strong span{color:inherit}.place-hours-list{margin:0}.place-hours-row{display:grid;grid-template-columns:1fr auto;gap:20px;padding:7px 2px;border-bottom:1px dashed #E2E8F0}.place-hours-row:last-child{border-bottom:0}.place-hours-row dt{color:#475569;font-size:14px;text-transform:capitalize}.place-hours-row dd{margin:0;color:#0f172a;font-size:14px;font-weight:650;text-align:right}.place-info-note{margin:12px 0 0;color:#94a3b8;font-size:12px}.place-section-heading{margin-bottom:18px}.place-section-count{padding:6px 10px;border-radius:999px;color:#475569;background:#f1f5f9;font-size:12px;font-weight:650;white-space:nowrap}.place-amenities{display:flex;flex-wrap:wrap;gap:10px}.place-amenity{display:inline-flex;align-items:center;gap:7px;padding:9px 13px;border:1px solid #DCE7F5;border-radius:999px;color:#334155;background:#f8fbff;font-size:13px;font-weight:600}.place-amenity svg{width:15px;height:15px;fill:none;stroke:#10b981;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}.place-social-links{display:flex;flex-wrap:wrap;gap:10px}.place-social-links a{display:inline-flex;gap:8px;align-items:center;padding:10px 14px;color:#1d4ed8;background:#eff6ff;border-radius:11px;font-size:14px;font-weight:650;text-decoration:none}.place-photo-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}.place-photo-card{margin:0;overflow:hidden;border:1px solid #E2E8F0;border-radius:15px;background:#f8fafc}.place-photo-card img{display:block;width:100%;height:180px;object-fit:cover}.place-photo-card figcaption{padding:9px 11px;color:#64748b;font-size:11px;line-height:1.45}.place-external-rating{display:flex;align-items:center;gap:14px;padding:18px 22px;border:1px solid #FDE68A;border-radius:18px;background:#fffbeb}.place-rating-star{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;color:#d97706;background:#fef3c7;font-size:22px}.place-external-rating div{display:grid;flex:1}.place-external-rating div>span,.place-external-rating small{color:#78716c;font-size:12px}.place-external-rating strong{color:#0f172a;font-size:20px}.place-external-rating>a{color:#92400e;font-size:13px;font-weight:700;text-decoration:none}.place-sources{background:#f8fafc;box-shadow:none}.place-sources-heading{margin-bottom:15px}.place-verified-badge{display:inline-flex;align-items:center;gap:5px;padding:6px 10px;border-radius:999px;color:#047857;background:#d1fae5;font-size:12px;font-weight:700}.place-verified-badge svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2.5}.place-source-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.place-source-links a{display:flex;align-items:center;justify-content:space-between;gap:12px;min-width:0;padding:11px 12px;border:1px solid #E2E8F0;border-radius:12px;color:#0f172a;background:#fff;font-size:13px;text-decoration:none}.place-source-domain{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:650}.place-source-action{flex:0 0 auto;color:#2563eb}.place-sources-note,.place-location-credit{margin:14px 0 0;color:#64748b;font-size:12px;line-height:1.55}.place-location-credit{margin-top:4px}.policy-row--detail{align-items:flex-start;gap:20px;margin-top:12px;padding:18px 20px;border:1px solid #E2E8F0!important;border-radius:16px;background:#f8fafc}.policy-row--detail+.policy-row--detail{margin-top:10px}.policy-row--detail .policy-left{flex:0 0 145px}.policy-row--detail .policy-right{width:auto;min-width:0;flex:1;align-items:flex-start}.policy-row--detail .policy-val{width:100%;color:#334155!important;font-size:14px;font-weight:550;line-height:1.65;text-align:left;overflow-wrap:anywhere}.policy-row--detail .policy-right>svg{flex:0 0 auto;margin-top:4px}@media (max-width: 768px){.place-about-intro{padding:24px 20px;margin-bottom:18px;border-radius:16px}.place-about-intro h2{font-size:23px}.place-about-intro .place-description{font-size:15px;line-height:1.7}.place-information{gap:18px}.place-info-grid{grid-template-columns:1fr}.place-info-card,.place-info-section,.place-sources{padding:20px;border-radius:16px}.place-contact-link{align-items:flex-start;flex-direction:column;gap:3px}.place-contact-link strong{text-align:left}.place-section-heading,.place-sources-heading{align-items:flex-start}.place-external-rating{flex-wrap:wrap}.place-external-rating>a{margin-left:56px}.policy-row--detail{flex-direction:column;align-items:flex-start;gap:9px;padding:16px}.policy-row--detail .policy-left{flex:none}.policy-row--detail .policy-right{width:100%}}.reviews-summary-block{display:flex;align-items:center;gap:32px;background:#f8fafc;padding:24px;border-radius:16px;border:1px solid #E5EAF2}@media (max-width: 640px){.reviews-summary-block{flex-direction:column;align-items:center;text-align:center;gap:20px}}.reviews-avg-display{display:flex;flex-direction:column;align-items:center;border-right:1px solid #E2E8F0;padding-right:32px;min-width:140px}@media (max-width: 640px){.reviews-avg-display{border-right:none;border-bottom:1px solid #E2E8F0;padding-right:0;padding-bottom:20px;width:100%}}.avg-number{font-size:48px;font-weight:800;line-height:1;color:#0f172a}.avg-stars{margin:8px 0 4px}.avg-text{font-size:13px;color:#64748b}.first-review-cta{display:flex;flex-direction:column;align-items:flex-start;gap:16px}@media (max-width: 640px){.first-review-cta{align-items:center}}.first-review-icon{width:48px;height:48px;background:#eff6ff;border-radius:12px;display:flex;align-items:center;justify-content:center}.first-review-text{display:flex;flex-direction:column;gap:4px}.first-review-text strong{font-size:16px;color:#0f172a}.first-review-text span{font-size:14px;color:#64748b}.place-col-right{margin-top:0;width:calc(100% + 40px)}@media (max-width: 768px){.place-col-right{display:none}}.sticky-sidebar{position:sticky;top:80px}.sidebar-card{background:#fff;border-radius:24px;padding:32px;box-shadow:0 12px 32px #0f172a0a;border:1px solid #E5EAF2;position:relative;overflow:hidden}.premium-sidebar:before{content:"";position:absolute;top:0;left:0;right:0;height:6px;background:#0f172a;border-radius:24px 24px 0 0}.sidebar-address{display:flex;align-items:flex-start;gap:12px;font-size:15px;color:#334155;line-height:1.5;margin-bottom:24px}.sidebar-address svg{color:#64748b;flex-shrink:0;margin-top:2px}.sidebar-grid-btns{display:grid;grid-template-columns:1fr 1fr;gap:12px}.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;border-radius:12px;font-weight:600;font-size:15px;cursor:pointer;transition:all .2s;border:none}.btn-primary{background:#2563eb;color:#fff}.btn-primary:hover{background:#1d4ed8}.btn-outline-primary{background:#fff;color:#2563eb;border:1px solid #2563EB}.btn-outline-primary:hover{background:#eff6ff}.btn-outline-gray{background:#fff;color:#334155;border:1px solid #E2E8F0}.btn-outline-gray:hover{background:#f8fafc;border-color:#cbd5e1}.w-100{width:100%}.mb-3{margin-bottom:12px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.mt-2{margin-top:8px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}.sidebar-rating-mini{background:#f8fafc;padding:20px;border-radius:16px;border:1px solid #F1F5F9;display:flex;flex-direction:column;align-items:center;text-align:center}.rating-mini-score{display:flex;align-items:center;gap:6px;font-size:28px;font-weight:800;color:#0f172a;line-height:1}.rating-mini-text{font-size:13px;color:#64748b;margin-top:4px}.rating-mini-stars{display:flex;gap:2px;align-items:center}.verified-info-block{display:flex;align-items:flex-start;gap:12px;background:#eff6ff;padding:16px;border-radius:16px;border:1px solid #DBEAFE;margin-top:24px;position:relative}.verified-icon{color:#3b82f6;flex-shrink:0;margin-top:2px}.verified-text{display:flex;flex-direction:column;gap:2px}.verified-text strong{font-size:14px;color:#1e3a8a}.verified-text span{font-size:13px;color:#60a5fa;line-height:1.4}.verified-check{position:absolute;top:16px;right:16px}@media (max-width: 768px){.hide-on-mobile{display:none!important}.show-on-mobile{display:block!important}.show-on-mobile.mobile-tabs-bar,.show-on-mobile.mobile-actions-row,.show-on-mobile.mobile-actions-block,.show-on-mobile.mobile-rating-card{display:flex!important}.show-on-mobile.place-hero__top-nav{display:flex!important;justify-content:space-between!important}.show-on-mobile.summary-cards-row{display:grid!important}.place-main-layout{padding:0!important;background-color:#061a3a}.place-columns{display:block!important}.place-hero{position:relative;width:100%!important;max-width:100%!important;border-radius:0;margin:0!important;padding:0!important;min-height:140px;display:flex;flex-direction:column;justify-content:space-between}.place-hero__overlay{background:linear-gradient(to bottom,#061a3a66,#061a3a1a 40%,#061a3acc)}.place-hero__top-nav{position:absolute;top:env(safe-area-inset-top,20px);left:0;width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px;z-index:10;box-sizing:border-box}.btn-hero-icon{background:#ffffffe6;border:none;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#0f172a;box-shadow:0 4px 12px #0000001a;cursor:pointer}.place-hero__top-actions{display:flex;gap:12px}.place-hero__content{position:absolute;bottom:32px;left:0;padding:0 16px;z-index:10;width:100%;box-sizing:border-box}.mobile-main-card{background:#fff;border-radius:24px 24px 0 0;position:relative;margin-top:-24px;z-index:15;padding:24px 16px 40px;min-height:500px;width:100%;box-sizing:border-box;box-shadow:0 -4px 16px #0000000d}.mobile-place-title{font-size:24px;font-weight:800;color:#0f172a;margin:0 0 8px;line-height:1.2;font-family:Inter,sans-serif}.mobile-rating-summary{display:flex;align-items:center;gap:6px;margin-bottom:24px;color:#64748b;font-size:14px}.mobile-rating-summary .score{color:#0f172a;font-weight:700;font-size:15px}.summary-cards-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 0 24px!important;padding:0!important}.summary-card{padding:16px;border-radius:16px;flex-direction:column;align-items:flex-start;gap:12px;border:1px solid #F1F5F9;box-shadow:0 2px 8px #0f172a05}.summary-icon{width:32px;height:32px;padding:6px;background:#f8fafc;border-radius:8px;color:#4f46e5}.summary-label{font-size:12px;color:#64748b;margin-bottom:2px}.summary-val{font-size:14px;font-weight:700}.summary-val.val-ok{color:#10b981}.summary-val.val-no{color:#ef4444}.mobile-actions-block{display:flex;flex-direction:column;gap:12px;margin-bottom:32px}.btn-action-primary{background-color:#061a3a;color:#fff;border-radius:12px;padding:14px;font-size:15px;font-weight:600;display:flex;align-items:center;justify-content:center;text-decoration:none;text-align:center;width:100%;box-sizing:border-box}.btn-action-secondary{background:#fff;border:1px solid #E2E8F0;color:#0f172a;border-radius:12px;padding:12px;font-size:14px;font-weight:600;display:flex;align-items:center;justify-content:center;gap:8px;text-decoration:none;flex:1}.mobile-actions-row{display:flex;gap:12px}.mobile-rating-card{background:#fff;border:1px solid #F1F5F9;border-radius:16px;padding:20px;display:flex;gap:24px;box-shadow:0 2px 12px #0f172a08;margin-bottom:32px}.rating-card-left{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:90px}.rating-big-score{font-size:40px;font-weight:800;line-height:1;color:#0f172a;display:flex;align-items:center;gap:4px}.rating-word{font-size:13px;color:#64748b;margin:4px 0 8px}.rating-total-stars{display:flex;gap:2px;margin-bottom:4px}.rating-total-count{font-size:12px;color:#94a3b8}.rating-card-right{flex:1;display:flex;flex-direction:column;justify-content:space-between}.rating-bar-row{display:flex;align-items:center;gap:6px;font-size:12px;color:#64748b}.bar-track{flex:1;height:4px;background:#f1f5f9;border-radius:2px;overflow:hidden}.bar-fill{height:100%;background:#0f172a;border-radius:2px}.bar-pct{min-width:24px;text-align:right}.mobile-tabs-bar{display:flex;justify-content:center;gap:16px;border-bottom:1px solid #F1F5F9;margin-bottom:24px;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch}.mobile-tabs-bar::-webkit-scrollbar{display:none}.mobile-tab-btn{background:none;border:none;padding:0 0 12px;font-size:15px;font-weight:600;color:#64748b;border-bottom:2px solid transparent;white-space:nowrap;cursor:pointer}.mobile-tab-btn.active{color:#061a3a;border-bottom-color:#4f46e5}.content-card{padding:0!important;border:none!important;box-shadow:none!important;background:transparent!important}.policy-list{background:#f8fafc;border-radius:16px;padding:4px 16px;margin-bottom:16px}.policy-row{display:flex;justify-content:space-between;align-items:center;flex-direction:row;padding:16px 0;border-bottom:1px solid #F1F5F9;gap:12px}.policy-row:last-child{border-bottom:none}.policy-left{display:flex;align-items:center;gap:12px}.policy-label{font-size:15px;color:#334155;font-weight:500}.policy-right{display:flex;align-items:center;gap:8px}.policy-val{font-size:14px;text-align:right}.policy-val.val-ok{color:#10b981}.policy-val.val-no{color:#ef4444}.policy-val.val-blue{color:#4f46e5}.policy-warning-box{display:flex;align-items:flex-start;gap:12px;background:#eef2ff;padding:16px;border-radius:12px;border:1px solid #E0E7FF}.policy-warning-box p{margin:0;font-size:13px;color:#3730a3;line-height:1.5}}@media (min-width: 769px){.hide-on-desktop,.show-on-mobile,.place-hero__top-nav{display:none!important}}.review-list-compact{display:flex;flex-direction:column;gap:16px;margin-top:24px}.review-item-compact{background:#fff;border:1px solid #F1F5F9;border-radius:20px;padding:24px;box-shadow:0 8px 24px #0f172a0a,0 1px 3px #0f172a05;transition:transform .2s ease,box-shadow .2s ease;margin-bottom:20px}.review-item-compact:hover{transform:translateY(-3px);box-shadow:0 12px 32px #0f172a14,0 2px 6px #0f172a0a}.review-item__header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px}.review-item__user{display:flex;align-items:center;gap:14px}.review-item__avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,#eff6ff,#dbeafe);color:#1d4ed8;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;border:2px solid #FFFFFF;box-shadow:0 2px 8px #2563eb26}.review-item__meta h5{margin:0 0 4px;font-size:16px;font-weight:700;color:#0f172a;line-height:1.2}.review-item__meta span{font-size:13px;color:#64748b;font-weight:500}.review-item__rating-stars{display:flex;gap:2px;background:#f8fafc;padding:6px 10px;border-radius:100px;border:1px solid #F1F5F9}.review-item__tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}.review-item__tag{background:#f8fafc;border:1px solid #E2E8F0;color:#475569;font-size:13px;font-weight:600;padding:6px 14px;border-radius:100px;display:inline-flex;align-items:center;transition:background .2s}.review-item__tag:hover{background:#f1f5f9}.review-item__tag.tag-ok{background:#ecfdf5;border-color:#a7f3d0;color:#065f46}.review-item__text{margin:0;font-size:15px;color:#334155;line-height:1.7}#tab-politica .policy-list .policy-left{display:grid!important;grid-template-columns:40px minmax(0,1fr)!important;align-items:center!important;column-gap:12px!important}#tab-politica .policy-list .policy-left>svg{display:block!important;box-sizing:border-box!important;width:40px!important;height:40px!important;margin:0!important;padding:10px!important}#tab-politica .policy-list .policy-left .policy-label{align-self:center!important;min-height:0!important;margin:0!important;padding:0!important;line-height:1.3!important}#tab-politica .policy-list>.policy-row:not(.policy-row--detail){height:82px!important;min-height:82px!important;box-sizing:border-box!important}#tab-politica .policy-row--restrictions{display:block!important;padding:20px 22px 22px!important}#tab-politica .policy-row--restrictions .policy-left{width:100%!important;padding:0 0 15px!important;border-bottom:1px solid #EDF1F6}#tab-politica .policy-row--restrictions .policy-right{display:block!important;width:100%!important;margin:16px 0 0!important}#tab-politica .policy-row--fee{display:grid!important;grid-template-columns:minmax(190px,240px) minmax(0,1fr)!important;align-items:center!important;gap:24px!important;min-height:82px!important;padding:16px 22px!important}#tab-politica .policy-row--fee .policy-left,#tab-politica .policy-list>.policy-row--fee .policy-left{width:auto!important;padding:0!important}#tab-politica .policy-row--fee .policy-left .policy-label,#tab-politica .policy-list>.policy-row--fee .policy-left .policy-label{white-space:nowrap}#tab-politica .policy-row--fee .policy-right,#tab-politica .policy-list>.policy-row--fee .policy-right{display:flex!important;width:100%!important;margin:0!important}#tab-politica .policy-row--detail .policy-right>svg{display:none!important}@media (max-width: 768px){#tab-politica .policy-list>.policy-row:not(.policy-row--detail){height:76px!important;min-height:76px!important}#tab-politica .policy-row--restrictions,#tab-politica .policy-list>.policy-row--restrictions{display:block!important;padding:17px!important}#tab-politica .policy-row--restrictions .policy-left,#tab-politica .policy-list>.policy-row--restrictions .policy-left{padding:0 0 13px!important}#tab-politica .policy-row--restrictions .policy-right,#tab-politica .policy-list>.policy-row--restrictions .policy-right{margin-top:13px!important}#tab-politica .policy-row--fee,#tab-politica .policy-list>.policy-row--fee{grid-template-columns:1fr!important;gap:12px!important;padding:17px!important}#tab-politica .policy-row--fee .policy-left .policy-label,#tab-politica .policy-list>.policy-row--fee .policy-left .policy-label{white-space:normal}}@media (max-width: 768px){.policy-list .policy-row--detail{flex-direction:column;align-items:flex-start;gap:9px;padding:16px}.policy-list .policy-row--detail .policy-left{flex:none}.policy-list .policy-row--detail .policy-right{width:100%;align-items:flex-start}.policy-list .policy-row--detail .policy-val{width:100%;text-align:left}}#tab-politica .policy-list>.policy-row--restrictions{display:block!important;padding:20px 22px 22px!important}#tab-politica .policy-list>.policy-row--restrictions .policy-left{width:100%!important;padding:0 0 15px!important;border-bottom:1px solid #EDF1F6}#tab-politica .policy-list>.policy-row--restrictions .policy-right{display:block!important;width:100%!important;margin:16px 0 0!important}#tab-politica .policy-list>.policy-row--restrictions .policy-right>.policy-val{display:block;width:100%;box-sizing:border-box;padding:16px 18px;border-radius:13px;color:#3b4a60!important;background:#f7f9fc;font-size:14px;font-weight:500;line-height:1.75;text-align:left}#tab-politica .policy-list>.policy-row--fee{display:grid!important;grid-template-columns:minmax(190px,240px) minmax(0,1fr)!important;align-items:center!important;gap:24px!important;min-height:82px!important;padding:16px 22px!important}#tab-politica .policy-list>.policy-row--fee .policy-left{width:auto!important;padding:0!important}#tab-politica .policy-list>.policy-row--fee .policy-left .policy-label{white-space:nowrap}#tab-politica .policy-list>.policy-row--fee .policy-right{display:flex!important;width:100%!important;margin:0!important}#tab-politica .policy-list>.policy-row--fee .policy-right>.policy-val{display:flex;align-items:center;min-height:50px;width:100%;box-sizing:border-box;padding:10px 16px;border:1px solid #DBEAFE;border-radius:13px;color:#1d4ed8!important;background:#eff6ff;font-size:15px;font-weight:750;line-height:1.35;text-align:left}@media (max-width: 768px){#tab-politica .policy-list>.policy-row--restrictions{padding:17px!important}#tab-politica .policy-list>.policy-row--restrictions .policy-left{padding-bottom:13px!important}#tab-politica .policy-list>.policy-row--restrictions .policy-right{margin-top:13px!important}#tab-politica .policy-list>.policy-row--fee{grid-template-columns:1fr!important;gap:12px!important;padding:17px!important}#tab-politica .policy-list>.policy-row--fee .policy-left .policy-label{white-space:normal}}
/* /assets/css/header.css */
.site-header{background:#fff;border-bottom:1px solid rgba(15,23,42,.05);box-shadow:0 4px 12px #0f172a05;position:sticky;top:0;z-index:200}.site-header__inner{display:flex;align-items:center;justify-content:space-between;height:72px;padding:0 40px;max-width:1400px;margin:0 auto;gap:24px}.site-header__logo{flex:1;display:flex;align-items:center;gap:8px;text-decoration:none;transition:opacity .2s}.site-header__logo:hover{opacity:.8}.site-header__logo-img{height:48px;width:auto;object-fit:contain}.site-header__nav{display:flex;align-items:center;justify-content:center;gap:32px}.site-header__link{font-size:15px;color:#475569;text-decoration:none;font-weight:500;font-family:-apple-system,BlinkMacSystemFont,Inter,sans-serif;transition:all .2s cubic-bezier(.2,.8,.2,1);padding:8px 12px;border-radius:8px;white-space:nowrap}.site-header__link:hover{color:#0f172a;background:#f8fafc}.site-header__link--active{color:#0f172a;font-weight:600;background:#f1f5f9}.site-header__actions{flex:1;display:flex;align-items:center;justify-content:flex-end;gap:16px}.site-header__icon-btn{background:none;border:none;padding:10px;cursor:pointer;color:#64748b;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .2s cubic-bezier(.2,.8,.2,1)}.site-header__icon-btn:hover{color:#e11d48;background:#fff1f2;transform:scale(1.05)}.site-header__btn{padding:10px 24px;background:#0f172a;color:#fff;border-radius:999px;font-size:14px;font-weight:600;text-decoration:none;font-family:-apple-system,BlinkMacSystemFont,Inter,sans-serif;transition:all .2s cubic-bezier(.2,.8,.2,1);white-space:nowrap}.site-header__btn:hover{background:#1e293b;transform:translateY(-1px);box-shadow:0 4px 12px #0f172a26}.site-header__btn:active{transform:translateY(0)}.site-header__user{font-size:14px;color:#4a90d9;text-decoration:none;font-weight:500}.site-header__hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;background:none;border:none;margin-left:8px;flex-shrink:0}.site-header__hamburger span{display:block;width:22px;height:1.5px;background:#0b1d35;border-radius:2px;transition:all .2s}.site-header__hamburger[aria-expanded=true] span:nth-child(1){transform:rotate(45deg) translateY(9px)}.site-header__hamburger[aria-expanded=true] span:nth-child(2){opacity:0}.site-header__hamburger[aria-expanded=true] span:nth-child(3){transform:rotate(-45deg) translateY(-9px)}.site-header__mobile-menu{display:none}.site-header__mobile-link{padding:11px 12px;font-size:15px;color:#333;text-decoration:none;border-radius:8px;font-family:-apple-system,BlinkMacSystemFont,Inter,sans-serif}.site-header__mobile-link:hover{background:#f5f5f5}.site-header__mobile-btn{margin-top:8px;padding:12px;background:#0b1d35;color:#fff;text-align:center;border-radius:10px;font-size:15px;font-weight:500;text-decoration:none;font-family:-apple-system,BlinkMacSystemFont,Inter,sans-serif}@media (max-width: 768px){.site-header{padding-top:env(safe-area-inset-top,0px)}.site-header__inner{padding:0 16px;justify-content:center;height:56px}.site-header__search-container{display:none!important}.site-header__logo{width:auto;margin:0 auto;justify-content:center}.site-header__nav,.site-header__actions,.site-header__hamburger{display:none}.site-header__logo-img{height:44px}.site-header__logo-text{font-size:18px}.site-header__mobile-menu.is-open{display:flex;flex-direction:column;gap:4px;border-top:1px solid #f0f0f0;padding:8px 16px 16px;background:#fff}}@media (max-width: 360px){.site-header__btn{padding:7px 14px;font-size:13px}}.mobile-bottom-nav{display:none}@media (max-width: 768px){.mobile-bottom-nav{display:flex;position:fixed;bottom:0;left:0;right:0;width:100%;height:calc(56px + env(safe-area-inset-bottom,0px));padding-bottom:env(safe-area-inset-bottom,0px);background:#fffffffa;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-top:1px solid rgba(0,0,0,.08);z-index:9999;justify-content:space-around;align-items:center}.mobile-bottom-nav__item{display:flex;align-items:center;justify-content:center;flex:1;height:100%;color:#94a3b8;transition:color .2s}.mobile-bottom-nav__item svg{transition:all .2s}.mobile-bottom-nav__item.active{color:#2563eb}html,body{overflow-x:hidden;width:100%;max-width:100%}body{padding-bottom:calc(60px + env(safe-area-inset-bottom,0px))}}.page-home .site-header{background:#ffffffd9;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(0,0,0,.04);box-shadow:none}.page-home .site-header__inner{height:72px}.page-home .site-header__search{background:#f8fafc;border:1px solid transparent;box-shadow:inset 0 2px 4px #00000005}.page-home .site-header__search:focus-within{background:#fff;border-color:#e2e8f0;box-shadow:0 4px 12px #0000000d}@media (max-width: 768px){body.page-guest-plan-preparation{padding-bottom:env(safe-area-inset-bottom,0px)}.page-guest-plan-preparation .site-header__hamburger,.page-guest-plan-preparation .site-header__mobile-menu{display:none!important}}@media (max-width: 768px){.mobile-bottom-nav__business{flex-direction:column;gap:2px}.mobile-bottom-nav__business svg{width:24px;height:24px}.mobile-bottom-nav__business span{font-size:11px;line-height:1.2;font-weight:600}}
/* /assets/css/directory.css */
.directory-page{--d-blue:#2667e8;--d-navy:#102747;--d-muted:#61738b;background:#fff;color:var(--d-navy)}.directory-shell{width:min(1160px,calc(100% - 36px));margin-inline:auto}.directory-hero{padding:42px 0 66px;background:linear-gradient(135deg,#f3f7ff,#eefaf7)}.directory-hero nav{display:flex;gap:8px;color:#73849a;font-size:.8rem;margin-bottom:48px}.directory-hero nav a{color:inherit;text-decoration:none}.directory-kicker{display:block;color:var(--d-blue);font-size:.73rem;font-weight:850;text-transform:uppercase;letter-spacing:.12em}.directory-hero h1{max-width:850px;font-size:clamp(2.3rem,5vw,4.4rem);line-height:1.04;letter-spacing:-.05em;margin:13px 0 18px}.directory-hero p{max-width:680px;color:var(--d-muted);font-size:1.05rem;line-height:1.7}.directory-hero>a{display:inline-flex;margin-top:13px;padding:12px 17px;border-radius:11px;background:var(--d-blue);color:#fff;text-decoration:none;font-weight:800}.directory-main{padding:34px 0 90px}.directory-categories{display:flex;gap:8px;overflow:auto;padding:2px 0 20px}.directory-categories a{flex:0 0 auto;padding:9px 14px;border:1px solid #dce5ef;border-radius:999px;color:#52647c;text-decoration:none;font-size:.82rem;font-weight:750}.directory-categories a.active{background:var(--d-navy);border-color:var(--d-navy);color:#fff}.directory-heading{padding:28px 0 22px}.directory-heading span{color:var(--d-blue);font-size:.75rem;font-weight:800;text-transform:uppercase}.directory-heading h2{font-size:clamp(1.5rem,3vw,2.1rem);margin:7px 0 0}.directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.directory-grid article{overflow:hidden;border:1px solid #e0e8f1;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(21,49,88,.07)}.directory-card__media{display:block;height:220px;overflow:hidden}.directory-card__media img{width:100%;height:100%;object-fit:cover;transition:.3s}.directory-grid article:hover img{transform:scale(1.035)}.directory-grid article>div{padding:20px}.directory-grid article>div>span{color:var(--d-blue);font-size:.7rem;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.directory-grid h3{font-size:1.15rem;margin:8px 0}.directory-grid h3 a{color:var(--d-navy);text-decoration:none}.directory-grid p{min-height:44px;color:var(--d-muted);font-size:.84rem;line-height:1.55}.directory-more{color:var(--d-blue);font-size:.8rem;font-weight:800;text-decoration:none}.directory-empty{text-align:center;padding:70px 20px;border:1px dashed #cad7e7;border-radius:20px;background:#f7faff}.directory-empty a{color:var(--d-blue)}@media(max-width:900px){.directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.directory-shell{width:calc(100% - 28px)}.directory-hero{padding:30px 0 50px}.directory-hero nav{margin-bottom:35px}.directory-hero h1{font-size:2.45rem}.directory-grid{grid-template-columns:1fr}.directory-card__media{height:240px}}
/* /assets/css/city-directory.css */
.directory-hero {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.directory-hero-bg,
.directory-hero-overlay { inset: 0; position: absolute; }
.directory-hero-bg { height: 100%; object-fit: cover; width: 100%; }
.directory-hero-overlay { background: linear-gradient(90deg, rgba(9, 29, 55, .94), rgba(9, 29, 55, .62)); }
.directory-hero > .directory-shell { position: relative; z-index: 1; }

.directory-hero.has-cover,
.directory-hero.has-cover nav,
.directory-hero.has-cover nav a,
.directory-hero.has-cover p {
    color: #fff;
}

.directory-hero.has-cover .directory-kicker {
    color: #8ec0ff;
}

.directory-city-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.directory-city-data span {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(71, 112, 163, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: #173a66;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.directory-hero.has-cover .directory-city-data span {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.directory-preview-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 11px 20px;
    background: #102747;
    color: #fff;
    font-size: .8rem;
}

.directory-preview-bar span { color: #bed0e7; }
.directory-preview-bar a { color: #fff; font-weight: 800; }

@media (max-width: 650px) {
    .directory-preview-bar { align-items: flex-start; flex-direction: column; gap: 4px; }
}
/* /assets/css/directory-seo.css */
:root {
    --directory-navy: #0b2547;
    --directory-blue: #1976ed;
    --directory-blue-dark: #0f5dc8;
    --directory-muted: #60738d;
    --directory-line: #dce6f1;
    --directory-surface: #f5f8fc;
}

.directory-page {
    overflow: hidden;
    background: var(--directory-surface);
    color: var(--directory-navy);
}

.directory-page *, .directory-page *::before, .directory-page *::after { box-sizing: border-box; }
.directory-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.directory-page svg { display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }

.directory-preview-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 20px;
    background: #fff4cf;
    color: #5a4510;
    font-size: .86rem;
}
.directory-preview-bar a { color: inherit; font-weight: 800; }

.directory-hero {
    position: relative;
    isolation: isolate;
    min-height: 510px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0b274e 0%, #164b85 100%);
}
.directory-hero-bg {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}
.directory-hero-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 76% 48%, rgba(34, 118, 214, .14), transparent 34%),
        linear-gradient(90deg, rgba(6, 24, 48, .95) 0%, rgba(8, 30, 59, .84) 52%, rgba(8, 25, 49, .48) 100%);
}
.directory-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(4, 20, 40, .34), transparent);
    pointer-events: none;
}
.directory-hero-shell { padding: 34px 0 72px; }

.directory-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    width: fit-content;
    margin: 0 0 50px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(7, 27, 51, .28);
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    font-weight: 650;
    backdrop-filter: blur(8px);
}
.directory-breadcrumbs a { color: #fff; text-decoration: none; }
.directory-breadcrumbs a:hover { text-decoration: underline; }
.directory-breadcrumbs span[aria-current="page"] { color: rgba(255,255,255,.74); }

.directory-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    align-items: end;
    gap: clamp(48px, 8vw, 104px);
}
.directory-hero-copy { max-width: 760px; }
.directory-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #8fc5ff;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.directory-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #58d5a4;
    box-shadow: 0 0 0 5px rgba(88, 213, 164, .14);
}
.directory-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #fff !important;
    font-size: clamp(2.7rem, 5.2vw, 4.55rem) !important;
    font-weight: 850;
    letter-spacing: -.05em;
    line-height: .99 !important;
    text-wrap: balance;
    text-shadow: 0 3px 22px rgba(0,0,0,.2);
}
.directory-hero-lead {
    max-width: 650px;
    margin: 22px 0 0 !important;
    color: rgba(255,255,255,.86) !important;
    font-size: clamp(1rem, 1.45vw, 1.15rem) !important;
    line-height: 1.65 !important;
}
.directory-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.directory-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 13px;
    background: #fff;
    color: #0c5fc8;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
    transition: transform .2s ease, box-shadow .2s ease;
}
.directory-map-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 38px rgba(0,0,0,.26); }
.directory-map-cta svg { width: 19px; height: 19px; }
.directory-map-cta b { padding-left: 4px; font-size: 1.1rem; }
.directory-city-data { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 700; }
.directory-city-data span { display: inline-flex; align-items: center; gap: 5px; }
.directory-city-data span:first-child { padding: 9px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; }
.directory-city-data svg { width: 14px; height: 14px; }

.directory-hero-summary {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 22px;
    background: rgba(7, 28, 54, .54);
    color: #fff;
    box-shadow: 0 18px 60px rgba(1, 15, 31, .2);
    backdrop-filter: blur(14px);
}
.directory-summary-label { color: #9fcaff; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.directory-summary-total { display: flex; align-items: center; gap: 13px; margin-top: 9px; }
.directory-summary-total strong { font-size: 2.65rem; line-height: 1; letter-spacing: -.05em; }
.directory-summary-total span { color: rgba(255,255,255,.77); font-size: .77rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.directory-summary-divider { height: 1px; margin: 19px 0 17px; background: rgba(255,255,255,.15); }
.directory-hero-summary ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.directory-hero-summary li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.8); font-size: .78rem; }
.directory-hero-summary li svg { width: 17px; height: 17px; padding: 3px; border-radius: 50%; background: rgba(88,213,164,.15); color: #73e1b5; }

.directory-main { position: relative; z-index: 3; margin-top: -34px; padding-bottom: 80px; }
.directory-filter-panel {
    padding: 24px 26px 21px;
    border: 1px solid rgba(218,228,240,.86);
    border-radius: 23px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 20px 55px rgba(19, 48, 82, .12);
}
.directory-filter-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.directory-filter-heading span, .directory-heading > div > span { display: block; margin-bottom: 3px; color: var(--directory-blue); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.directory-filter-heading h2 { margin: 0; color: var(--directory-navy); font-size: 1.3rem; line-height: 1.2; }
.directory-filter-heading small { color: var(--directory-muted); font-size: .76rem; }
.directory-categories {
    display: flex;
    gap: 9px;
    padding: 1px 1px 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.directory-categories::-webkit-scrollbar { display: none; }
.directory-categories a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 6px 8px 6px 15px;
    border: 1px solid var(--directory-line);
    border-radius: 999px;
    background: #fff;
    color: #435975;
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.directory-categories a:hover { border-color: #9fc2ef; color: var(--directory-blue-dark); transform: translateY(-1px); }
.directory-categories b { display: grid; place-items: center; min-width: 28px; height: 28px; padding: 0 6px; border-radius: 999px; background: #eef4fb; color: #55708f; font-size: .68rem; }
.directory-categories a.active { border-color: var(--directory-navy); background: var(--directory-navy); color: #fff; box-shadow: 0 7px 18px rgba(11,37,71,.18); }
.directory-categories a.active b { background: rgba(255,255,255,.17); color: #fff; }

.directory-intro {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 18px;
    max-width: none;
    margin: 30px 0 0;
    padding: 24px 27px;
    border: 1px solid #dce8f5;
    border-radius: 18px;
    background: linear-gradient(135deg, #f9fcff 0%, #edf5ff 100%);
    color: #435975;
    line-height: 1.7;
}
.directory-intro-icon { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 13px; background: #fff; color: var(--directory-blue); box-shadow: 0 7px 20px rgba(20,80,145,.09); }
.directory-intro-icon svg { width: 22px; height: 22px; }
.directory-intro h2, .directory-intro h3 { margin: 0 0 8px; color: var(--directory-navy); }
.directory-intro p { margin: 0 0 10px; }
.directory-intro p:last-child, .directory-intro ul:last-child { margin-bottom: 0; }
.directory-intro a { color: var(--directory-blue); font-weight: 750; }

.directory-category-overview, .directory-results { padding-top: 58px; }
.directory-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 22px; }
.directory-heading h2 { margin: 0; color: var(--directory-navy); font-size: clamp(1.65rem, 2.7vw, 2.25rem); letter-spacing: -.035em; line-height: 1.14; }
.directory-heading p { max-width: 650px; margin: 8px 0 0; color: var(--directory-muted); font-size: .93rem; line-height: 1.55; }
.directory-results-heading > a { flex: 0 0 auto; color: var(--directory-blue-dark); font-size: .82rem; font-weight: 800; text-decoration: none; }
.directory-results-heading > a span { margin-left: 5px; }

.directory-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.directory-category-grid a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 136px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #dce6f1;
    border-radius: 18px;
    background: #fff;
    color: var(--directory-navy);
    text-decoration: none;
    box-shadow: 0 9px 28px rgba(20,48,81,.055);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.directory-category-grid a::before { content: ""; position: absolute; top: -45px; right: -45px; width: 120px; height: 120px; border-radius: 50%; background: #f1f6fd; transition: transform .25s ease; }
.directory-category-grid a:hover { border-color: #a9c8ef; transform: translateY(-3px); box-shadow: 0 15px 35px rgba(20,48,81,.1); }
.directory-category-grid a:hover::before { transform: scale(1.15); }
.directory-category-copy { position: relative; z-index: 1; display: grid; }
.directory-category-copy small { color: var(--directory-blue); font-size: .63rem; font-style: normal; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.directory-category-copy strong { margin-top: 6px; font-size: 1.08rem; line-height: 1.2; }
.directory-category-copy em { margin-top: 10px; color: var(--directory-muted); font-size: .73rem; font-style: normal; font-weight: 600; }
.directory-category-grid a > b { position: relative; z-index: 1; display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: #e9f3ff; color: var(--directory-blue); font-size: 1rem; transition: background .2s ease, color .2s ease; }
.directory-category-grid a:hover > b { background: var(--directory-blue); color: #fff; }

.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.directory-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce6f0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20,48,81,.065);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.directory-card:hover { border-color: #b8cde5; transform: translateY(-4px); box-shadow: 0 18px 42px rgba(20,48,81,.12); }
.directory-card__media { position: relative; display: block; height: 215px; overflow: hidden; background: #dbe6f2; }
.directory-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.directory-card:hover .directory-card__media img { transform: scale(1.045); }
.directory-card__category, .directory-card__rating { position: absolute; top: 14px; padding: 7px 10px; border-radius: 999px; font-size: .66rem; font-weight: 800; box-shadow: 0 4px 15px rgba(0,0,0,.14); backdrop-filter: blur(8px); }
.directory-card__category { left: 14px; background: rgba(255,255,255,.94); color: var(--directory-navy); }
.directory-card__rating { right: 14px; background: rgba(8,30,59,.82); color: #fff; }
.directory-card__body { padding: 20px !important; }
.directory-card__body h3 { margin: 0; color: var(--directory-navy); font-size: 1.08rem; line-height: 1.3; }
.directory-card__body h3 a { color: inherit; text-decoration: none; }
.directory-card__body > p { display: -webkit-box; min-height: 43px; margin: 9px 0 18px !important; overflow: hidden; color: var(--directory-muted) !important; font-size: .8rem !important; line-height: 1.55 !important; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.directory-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 15px; border-top: 1px solid #edf1f6; }
.directory-card__footer > span { display: flex; align-items: center; min-width: 0; gap: 6px; overflow: hidden; color: #71839a; font-size: .72rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.directory-card__footer svg { flex: 0 0 15px; width: 15px; height: 15px; color: var(--directory-blue); }
.directory-more { flex: 0 0 auto; color: var(--directory-blue-dark); font-size: .74rem; font-weight: 850; text-decoration: none; }
.directory-more b { margin-left: 3px; }

.directory-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.directory-pagination a { padding: 10px 15px; border: 1px solid #d8e3f0; border-radius: 10px; background: #fff; color: var(--directory-blue); font-weight: 750; text-decoration: none; }
.directory-pagination span { color: var(--directory-muted); font-size: .86rem; }

@media (max-width: 980px) {
    .directory-hero { min-height: 560px; }
    .directory-hero-layout { grid-template-columns: minmax(0, 1fr) 270px; gap: 34px; }
    .directory-hero h1 { font-size: clamp(2.55rem, 6vw, 3.75rem) !important; }
    .directory-category-grid, .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .directory-shell { width: min(100% - 28px, 680px); }
    .directory-hero { min-height: auto; }
    .directory-hero-overlay { background: linear-gradient(180deg, rgba(6,24,48,.87) 0%, rgba(6,24,48,.92) 100%); }
    .directory-hero-shell { padding: 22px 0 66px; }
    .directory-breadcrumbs { margin-bottom: 38px; }
    .directory-hero-layout { grid-template-columns: 1fr; gap: 28px; }
    .directory-hero-summary { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px 18px; padding: 18px 20px; }
    .directory-summary-label { grid-column: 1 / -1; }
    .directory-summary-total { margin: 0; }
    .directory-summary-divider { display: none; }
    .directory-hero-summary ul { border-left: 1px solid rgba(255,255,255,.15); padding-left: 18px; }
    .directory-hero-summary li { font-size: .7rem; }
    .directory-main { margin-top: -28px; }
    .directory-filter-panel { padding: 20px 18px 17px; }
    .directory-filter-heading { align-items: start; }
    .directory-filter-heading small { display: none; }
    .directory-heading { align-items: start; }
}

@media (max-width: 620px) {
    .directory-preview-bar { align-items: flex-start; flex-direction: column; gap: 3px; }
    .directory-breadcrumbs { max-width: 100%; overflow: hidden; white-space: nowrap; }
    .directory-hero h1 { font-size: clamp(2.25rem, 11vw, 3.05rem) !important; letter-spacing: -.045em; }
    .directory-hero-lead { font-size: .96rem !important; }
    .directory-hero-actions { align-items: stretch; flex-direction: column; gap: 13px; }
    .directory-map-cta { justify-content: center; width: 100%; }
    .directory-city-data { justify-content: space-between; }
    .directory-hero-summary { display: block; }
    .directory-hero-summary ul { margin-top: 16px; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
    .directory-filter-panel { border-radius: 19px; }
    .directory-categories { margin-right: -18px; padding-right: 18px; }
    .directory-intro { grid-template-columns: 1fr; gap: 13px; margin-top: 22px; padding: 20px; }
    .directory-intro-icon { width: 39px; height: 39px; }
    .directory-category-overview, .directory-results { padding-top: 45px; }
    .directory-heading { display: block; }
    .directory-results-heading > a { display: inline-block; margin-top: 15px; }
    .directory-category-grid, .directory-grid { grid-template-columns: 1fr; }
    .directory-category-grid a { min-height: 120px; }
    .directory-card__media { height: 225px; }
    .directory-pagination { justify-content: space-between; gap: 8px; }
    .directory-pagination a { padding: 9px 11px; }
}

@media (prefers-reduced-motion: reduce) {
    .directory-page *, .directory-page *::before, .directory-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
/* /assets/css/business-suite.css */
.business-plan-page{display:flex;flex-direction:column;gap:22px}.bplan-badge{display:inline-block;background:#dbeafe;color:#1d4ed8;font-size:12.5px;font-weight:700;letter-spacing:.3px;padding:6px 12px;border-radius:999px}.bplan-badge.is-founder{background:linear-gradient(90deg,#fef3c7,#fde68a);color:#92400e;box-shadow:0 2px 8px #d977062e}.bplan-badge.is-warning{background:#fef3c7;color:#92400e}.bplan-status{display:flex;gap:20px;align-items:flex-start;border-radius:20px;padding:28px 30px;background:linear-gradient(135deg,#ecfdf5,#f0fdfa);border:1px solid #A7F3D0;position:relative}.bplan-status.is-pastdue{background:linear-gradient(135deg,#fffbeb,#fef3c7);border-color:#fde68a}.bplan-status__mark{width:46px;height:46px;flex:none;border-radius:999px;background:#10b981;color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 6px 16px #10b98159}.bplan-status__mark.is-warning{background:#f59e0b;box-shadow:0 6px 16px #f59e0b59}.bplan-status__meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}.bplan-status__meta span{background:#ffffffbf;border:1px solid #BBE7D2;border-radius:999px;padding:6px 13px;font-size:12.5px;font-weight:600;color:#0f5132}.bplan-cancel{position:absolute;top:22px;right:24px}.bplan-cancel button{border:1px solid #D1D9E4;background:#fff;color:#64748b;border-radius:9px;padding:8px 13px;font:inherit;font-size:12.5px;font-weight:600;cursor:pointer;transition:.15s ease}.bplan-cancel button:hover{border-color:#fca5a5;color:#b91c1c;background:#fef2f2}.bplan-status h2{margin:12px 0 8px;font-size:24px;color:#0f172a}.bplan-status p{color:#334155;max-width:640px;line-height:1.55}.bplan-status form{margin-top:16px}.bplan-offer{display:grid;grid-template-columns:1.35fr 1fr;gap:0;background:linear-gradient(135deg,#0f172a,#1e3a8a);border-radius:24px;overflow:hidden;color:#e2e8f0;box-shadow:0 20px 50px #0f172a40}.bplan-offer__copy{padding:36px}.bplan-offer__copy h2{margin:18px 0 6px;display:flex;align-items:baseline;gap:14px;flex-wrap:wrap}.bplan-price-old{text-decoration:line-through;color:#64748b;font-size:26px;font-weight:600}.bplan-price{color:#7dd3fc;font-size:54px;font-weight:800;letter-spacing:-1px;line-height:1}.bplan-price small{font-size:22px;font-weight:600;color:#93c5fd}.bplan-price-note{color:#94a3b8;font-size:14px;margin-bottom:24px}.bplan-price-note b{color:#e2e8f0}.bplan-perk-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.bplan-perk{display:flex;gap:12px;background:#ffffff0f;border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:14px}.bplan-perk__icon{width:36px;height:36px;flex:none;border-radius:10px;background:#7dd3fc29;border:1px solid rgba(125,211,252,.3);color:#7dd3fc;display:inline-flex;align-items:center;justify-content:center}.bplan-perk b{display:block;font-size:14px;color:#f8fafc;margin-bottom:3px}.bplan-perk small{font-size:12.5px;color:#94a3b8;line-height:1.45;display:block}.bplan-paycard{background:#fff;margin:22px;border-radius:18px;padding:24px;display:flex;flex-direction:column;box-shadow:0 10px 34px #0f172a47}.bplan-paycard__head{display:flex;justify-content:space-between;align-items:center}.bplan-paycard__head span{font-size:12px;font-weight:800;letter-spacing:.12em;color:#2563eb;text-transform:uppercase}.bplan-paycard__head b{background:#fef3c7;color:#92400e;font-size:12px;padding:4px 10px;border-radius:999px}.bplan-paycard__price{display:flex;align-items:baseline;gap:10px;margin:14px 0 6px}.bplan-paycard__price s{color:#94a3b8;font-size:20px}.bplan-paycard__price strong{font-size:46px;color:#0f172a;letter-spacing:-1px;line-height:1}.bplan-paycard__price em{font-style:normal;color:#64748b;font-size:16px}.bplan-paycard ul{list-style:none;margin:10px 0 18px;padding:0;display:flex;flex-direction:column;gap:8px}.bplan-paycard li{font-size:13.5px;color:#334155}.bplan-paycard__cta{width:100%;background:linear-gradient(90deg,#2563eb,#1d4ed8);color:#fff;border:0;border-radius:12px;padding:15px;font-size:15.5px;font-weight:700;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease;box-shadow:0 8px 22px #2563eb59}.bplan-paycard__cta:hover{transform:translateY(-1px);box-shadow:0 12px 28px #2563eb73}.bplan-paycard>small{text-align:center;color:#94a3b8;font-size:12px;margin-top:10px}.bplan-paycard__slots{margin-top:14px;text-align:center;background:#fff7ed;color:#9a3412;border:1px dashed #FDBA74;border-radius:10px;padding:9px;font-size:12.5px}.bplan-compare-card{background:#fff;border:1px solid #E2E8F0;border-radius:18px;padding:24px}.bplan-compare-card h3{font-size:17px;color:#0f172a;margin-bottom:14px}.bplan-compare-card table{width:100%;border-collapse:collapse;font-size:14px;color:#0f172a}.bplan-compare-card th{text-align:center;font-size:12.5px;text-transform:uppercase;letter-spacing:.4px;color:#64748b;padding:8px 10px}.bplan-compare-card th:first-child{text-align:left}.bplan-compare-card th.is-founder-col{color:#2563eb}.bplan-compare-card td{padding:11px 10px;border-top:1px solid #F1F5F9}.bplan-compare-card td:not(:first-child){text-align:center;font-weight:700}.bplan-compare-card td:nth-child(2){color:#94a3b8}.bplan-compare-card td:nth-child(3){color:#2563eb;background:#f8fbff}.bplan-stats{background:#fff;border:1px solid #E2E8F0;border-radius:18px;padding:24px}.bplan-stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:18px}.bplan-stat{background:#fff;border:1px solid #E7EDF5;border-radius:16px;padding:20px 18px;box-shadow:0 3px 10px #0f172a0a}.bplan-stat__chip{width:36px;height:36px;border-radius:11px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:12px}.bplan-stat__chip.is-blue{background:#ebf3fe;color:#1c60b0}.bplan-stat__chip.is-green{background:#eafaf1;color:#0e9f6e}.bplan-stat__chip.is-violet{background:#f4f0fe;color:#7c4ddb}.bplan-stat__chip.is-amber{background:#fef5e7;color:#d98e04}.bplan-stat strong{display:block;font-size:30px;color:#0f172a;line-height:1.1}.bplan-stat span{font-size:13.5px;color:#475569;display:block;margin-top:4px}.bplan-stat span small{display:block;color:#94a3b8;font-size:11.5px;margin-top:2px}.bplan-stats-note{margin-top:14px;font-size:13.5px;color:#64748b}.bplan-monthly{width:100%;border-collapse:collapse;margin-top:18px;font-size:14px}.bplan-monthly th{text-align:left;color:#64748b;font-size:12.5px;text-transform:uppercase;letter-spacing:.4px;padding:8px 10px}.bplan-monthly td{padding:9px 10px;border-top:1px solid #F1F5F9;color:#0f172a}.bplan-sticker-cta{display:flex;justify-content:space-between;align-items:center;gap:22px;background:#eff6ff;border:1px dashed #93C5FD;border-radius:18px;padding:22px 26px}.bplan-sticker-cta__seal{border-radius:50%;flex:none;box-shadow:0 6px 18px #0f172a38}.bplan-sticker-cta h2{font-size:19px;color:#0f172a;margin-bottom:6px}.bplan-sticker-cta p{color:#334155;font-size:14px;max-width:560px;line-height:1.5}.bplan-sticker-cta a{white-space:nowrap}.bcrm{display:flex;flex-direction:column;gap:18px}.bcrm-hero{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;background:linear-gradient(135deg,#0f172a,#1e3a8a);border-radius:20px;padding:28px 30px;color:#fff}.bcrm-hero__kicker{font-size:11px;font-weight:800;letter-spacing:.16em;color:#7dd3fc;text-transform:uppercase}.bcrm-hero h1{color:#fff!important;font-size:clamp(26px,2.6vw,36px)!important;margin:6px 0 8px}.bcrm-hero p{color:#c7d2fe;font-size:14.5px;max-width:720px;line-height:1.55}.bcrm-hero p a{color:#7dd3fc}.bcrm-hero__link{white-space:nowrap;background:#ffffff1f;border:1px solid rgba(255,255,255,.22);color:#fff;text-decoration:none;font-size:13.5px;font-weight:700;padding:11px 16px;border-radius:12px}.bcrm-hero__link:hover{background:#fff3}.bcrm-hero__status{text-align:right;border-radius:14px;padding:14px 18px;white-space:nowrap}.bcrm-hero__status.is-on{background:#34d39926;border:1px solid rgba(52,211,153,.4)}.bcrm-hero__status.is-off{background:#fbbf241f;border:1px solid rgba(251,191,36,.35)}.bcrm-hero__status b{display:block;font-size:14.5px}.bcrm-hero__status.is-on b{color:#6ee7b7}.bcrm-hero__status.is-off b{color:#fcd34d}.bcrm-hero__status small{color:#94a3b8;font-size:12px}.bcrm-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.bcrm-kpi{position:relative;background:#fff;border:1px solid #E2E8F0;border-radius:16px;padding:18px 18px 16px;box-shadow:0 4px 14px #0f172a0a}.bcrm-kpi__icon{font-size:20px;display:block;margin-bottom:8px}.bcrm-kpi strong{display:block;font-size:28px;color:#0f172a;line-height:1.1}.bcrm-kpi>span:last-child{font-size:13px;color:#64748b;display:block;margin-top:4px}.bcrm-kpi span small{display:block;font-size:11px;color:#94a3b8}.bcrm-kpi.is-mrr{background:linear-gradient(135deg,#eff6ff,#dbeafe);border-color:#bfdbfe}.bcrm-kpi.is-mrr strong{color:#1d4ed8}.bcrm-kpi.is-lead{background:linear-gradient(135deg,#fff7ed,#ffedd5);border-color:#fed7aa}.bcrm-kpi.is-lead strong{color:#c2410c}.bcrm-slots{background:#fff;border:1px solid #E2E8F0;border-radius:14px;padding:13px 18px;font-size:13.5px;color:#334155;display:flex;flex-wrap:wrap;gap:8px 14px;align-items:center}.bcrm-slots>span{background:#f8fafc;border:1px solid #E2E8F0;border-radius:999px;padding:5px 13px}.bcrm-tabs{display:flex;gap:8px;flex-wrap:wrap}.bcrm-tabs a{display:inline-flex;align-items:center;gap:8px;padding:11px 18px;border-radius:999px;background:#fff;border:1px solid #E2E8F0;color:#475569;text-decoration:none;font-size:14px;font-weight:700;transition:.15s ease}.bcrm-tabs a:hover{border-color:#93c5fd;color:#1d4ed8}.bcrm-tabs a.is-active{background:#0f172a;border-color:#0f172a;color:#fff;box-shadow:0 6px 16px #0f172a38}.bcrm-empty{background:#fff;border:1px dashed #CBD5E1;border-radius:18px;padding:48px 28px;text-align:center}.bcrm-empty>span{font-size:38px;display:block;margin-bottom:10px}.bcrm-empty h2{font-size:20px;color:#0f172a;margin-bottom:8px}.bcrm-empty p{color:#64748b;font-size:14px;max-width:520px;margin:0 auto;line-height:1.55}.bcrm-table-wrap{overflow-x:auto;background:#fff;border:1px solid #E2E8F0;border-radius:16px;box-shadow:0 4px 14px #0f172a0a}.bcrm-table{width:100%;border-collapse:collapse;font-size:13.5px;min-width:860px}.bcrm-table th{text-align:left;padding:13px 16px;background:#f8fafc;color:#64748b;font-size:11.5px;text-transform:uppercase;letter-spacing:.5px;border-bottom:1px solid #E2E8F0}.bcrm-table td{padding:14px 16px;border-top:1px solid #F1F5F9;vertical-align:top;color:#0f172a}.bcrm-table tbody tr:hover{background:#fafcff}.bcrm-table td b{display:block;font-size:14px}.bcrm-table td small{display:block;color:#64748b;font-size:12px;margin-top:2px}.bcrm-table td a{font-size:12.5px;color:#2563eb;text-decoration:none}.bcrm-pill{display:inline-block;padding:5px 12px;border-radius:999px;font-size:12px;font-weight:700}.bcrm-pill.is-trial{background:#eff6ff;color:#1d4ed8}.bcrm-pill.is-active{background:#ecfdf5;color:#047857}.bcrm-pill.is-past_due{background:#fef3c7;color:#92400e}.bcrm-pill.is-canceled,.bcrm-pill.is-expired{background:#f1f5f9;color:#64748b}.bcrm-pill.is-rotating{background:#fdf4ff;color:#a21caf}.bcrm-actions{display:flex;flex-direction:column;gap:8px}.bcrm-btn{font-size:12.5px!important;padding:8px 13px!important}.bcrm-btn-revoke{display:inline-flex;align-items:center;justify-content:center;border:1px solid #FBCACA;border-radius:12px;background:#fff;color:#b42318;font:inherit;font-weight:800;cursor:pointer;transition:.15s}.bcrm-btn-revoke:hover{background:#fef3f2;border-color:#f4a6a0}.bplan-coupon{margin:0 0 10px}.bplan-coupon input{width:100%;box-sizing:border-box;border:1.5px dashed #B9CFEA;border-radius:11px;padding:11px 14px;font:inherit;font-size:14px;font-weight:700;letter-spacing:.06em;text-align:center;color:#0f172a;background:#f8faff}.bplan-coupon input:focus{outline:none;border-color:#1c60b0;border-style:solid;background:#fff;box-shadow:0 0 0 4px #1c60b01f}.bplan-coupon-toggle{display:block;width:100%;margin-top:10px;background:none;border:0;color:#1c60b0;font:inherit;font-size:13px;font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:3px}.eypet-addr{position:relative}.eypet-addr__list{position:absolute;top:calc(100% + 6px);left:0;right:0;z-index:40;background:#fff;border:1px solid #DCE5F1;border-radius:13px;box-shadow:0 14px 40px #0f172a24;overflow:hidden}.eypet-addr__item{display:block;width:100%;text-align:left;background:#fff;border:0;border-bottom:1px solid #F0F4FA;padding:12px 15px;font:inherit;font-size:14px;color:#10213d;cursor:pointer}.eypet-addr__item:last-child{border-bottom:0}.eypet-addr__item:hover{background:#f4f9ff}.bedit-required-tag{display:inline-block;vertical-align:middle;margin-left:9px;background:#fef3c7;color:#92400e;font-size:10.5px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;border-radius:999px;padding:3px 9px}.bpay-test{grid-column:1;display:flex;flex-direction:column;gap:7px;align-items:flex-start}.bpay-test small{color:#5b7395;font-size:12.5px}.bpay-coupons{margin-top:22px}.bpay-coupons__head p{color:#5b7395;font-size:13.5px;margin:6px 0 0;max-width:640px}.bpay-coupon-form{display:grid;grid-template-columns:1.4fr .8fr 1fr 1.2fr auto;gap:12px;align-items:end;margin:18px 0 22px;padding:16px;background:#f8faff;border:1px solid #E3EBF5;border-radius:14px}.bpay-coupon-form label{display:block;margin:0}.bpay-coupon-form label span{display:block;font-size:11.5px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;color:#52647c;margin-bottom:6px}.bpay-coupon-form input,.bpay-coupon-form select{width:100%;box-sizing:border-box;border:1px solid #CBD5E1;border-radius:10px;padding:10px 12px;font:inherit;font-size:14px;background:#fff}.bpay-coupon-form button{white-space:nowrap}.bpay-coupons__empty{color:#5b7395;font-size:13.5px;background:#f8faff;border:1px dashed #C7DBF5;border-radius:12px;padding:14px 16px}@media (max-width: 860px){.bpay-coupon-form{grid-template-columns:1fr 1fr}.bpay-coupon-form button{grid-column:1 / -1}}.bplans-prices{display:grid;grid-template-columns:1fr 1fr;gap:0 18px}.bplans-discount{margin:10px 0 0;font-size:13.5px;color:#52647c}.bplans-discount b{display:inline-block;background:linear-gradient(90deg,#fbbf24,#f59e0b);color:#fff;border-radius:999px;padding:3px 11px;font-size:12.5px}.bplans-subtitle{margin-top:28px!important;padding-top:22px;border-top:1px solid #EDF2F9}@media (max-width: 640px){.bplans-prices{grid-template-columns:1fr}}.bcrm-crm form{display:flex;flex-direction:column;gap:6px}.bcrm-crm select,.bcrm-crm input[type=text]{border:1px solid #CBD5E1;border-radius:8px;padding:8px 10px;font-size:13px;min-height:0!important}.bpay-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:18px;align-items:start}.bpay-card{background:#fff;border:1px solid #E2E8F0;border-radius:18px;padding:26px;box-shadow:0 4px 14px #0f172a0a}.bpay-card h2{font-size:18px;color:#0f172a;margin-bottom:18px}.bpay-field{display:block;margin-bottom:18px}.bpay-field>span{display:flex;justify-content:space-between;align-items:center;font-size:13.5px;font-weight:700;color:#334155;margin-bottom:7px}.bpay-state{font-size:11px;font-weight:700;padding:3px 9px;border-radius:999px;background:#fef3c7;color:#92400e}.bpay-state.is-ok{background:#ecfdf5;color:#047857}.bpay-field input{width:100%;border:1px solid #CBD5E1;border-radius:10px;padding:11px 13px;font-size:14px}.bpay-field small{display:block;color:#94a3b8;font-size:12px;margin-top:6px;line-height:1.45}.bpay-note{margin-top:14px;font-size:12px;color:#94a3b8;line-height:1.5}.bpay-steps ol{margin:0;padding-left:20px;display:flex;flex-direction:column;gap:14px;color:#334155;font-size:13.5px;line-height:1.55}.bpay-steps code{background:#f1f5f9;border-radius:6px;padding:2px 7px;font-size:12px;color:#0f172a}.bpay-url{display:block;margin:8px 0;padding:9px 12px!important;word-break:break-all;background:#0f172a!important;color:#7dd3fc!important}.bpay-how{margin-top:20px;background:#f8fafc;border:1px solid #E2E8F0;border-radius:12px;padding:16px}.bpay-how h3{font-size:14px;color:#0f172a;margin-bottom:6px}.bpay-how p{font-size:13px;color:#475569;line-height:1.55}.dir-featured{--bleed: calc(50% - 50vw) ;margin:52px var(--bleed) 46px;padding:36px calc(0px - var(--bleed)) 42px;background:linear-gradient(180deg,#f4f9ff,#e9f2ff);border:0;border-radius:0}.dir-featured__head{display:flex;align-items:center;gap:13px;margin-bottom:20px}.dir-featured__icon{width:40px;height:40px;flex:none;border-radius:13px;background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:19px;box-shadow:0 5px 14px #d9770659}.dir-featured__head h2{font-size:20px;color:#0f172a;line-height:1.1}.dir-featured__head p{color:#5b7395;font-size:12.5px;margin-top:3px}.dir-featured__ad{margin-left:auto;flex:none;background:#fff;border:1px solid #CBD5E1;color:#64748b;font-size:10.5px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;padding:5px 12px;border-radius:999px}.dir-featured .directory-card{border:2px solid rgba(28,96,176,.35);box-shadow:0 10px 26px #1c60b024;position:relative;background:#fff}.dir-featured .directory-card:hover{border-color:#1c60b099}.dir-featured .directory-card__category{top:52px}.dir-featured-flag{position:absolute;top:14px;left:14px;z-index:2;background:linear-gradient(90deg,#fbbf24,#f59e0b);color:#fff;font-size:10.5px;font-weight:800;letter-spacing:.5px;padding:6px 12px;border-radius:999px;text-transform:uppercase;box-shadow:0 4px 12px #b4530966}@media (max-width: 640px){.dir-featured{margin-top:38px;margin-bottom:34px;padding-top:26px;padding-bottom:30px}.dir-featured__ad{display:none}}.place-plan-badges{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 2px}.place-plan-badge{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;padding:5px 12px;border-radius:999px}.place-plan-badge.is-verified{background:#ecfdf5;color:#047857}.place-plan-badge.is-featured{background:#dbeafe;color:#1d4ed8}.place-contact-ctas{display:flex;flex-direction:column;gap:10px;margin-bottom:16px}.place-contact-ctas .btn-whatsapp{display:flex;align-items:center;justify-content:center;gap:8px;background:#16a34a;color:#fff!important;border-radius:10px;padding:12px;font-weight:600;text-decoration:none}.place-contact-ctas .btn-phone{display:flex;align-items:center;justify-content:center;gap:8px;background:#fff;border:1px solid #CBD5E1;color:#0f172a!important;border-radius:10px;padding:12px;font-weight:600;text-decoration:none}.bdash-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:8px 0 2px}.bdash-plan{display:inline-block;font-size:11.5px;font-weight:700;padding:4px 10px;border-radius:999px;background:#f1f5f9;color:#475569}.bdash-plan.is-live{background:#dbeafe;color:#1d4ed8}.bdash-views{font-size:12.5px;color:#64748b}.bdash-growth{display:grid;grid-template-columns:1.15fr 1fr;gap:10px;margin-top:12px}.bdash-growth a{display:flex;align-items:center;gap:10px;padding:11px 14px;border-radius:14px;text-decoration:none;font-size:13.5px;font-weight:700;line-height:1.2;transition:transform .12s ease,box-shadow .12s ease}.bdash-growth a:hover{transform:translateY(-1px)}.bdash-growth small{font-size:11px;font-weight:500;opacity:.85}.bdash-growth__featured{position:relative;overflow:hidden;background:linear-gradient(115deg,#1c60b0,#0d1b45 85%);color:#fff!important;box-shadow:0 8px 20px #0d1b4552}.bdash-growth__featured:hover{box-shadow:0 12px 26px #0d1b456b}.bdash-growth__featured:after{content:"";position:absolute;top:0;left:-70%;width:45%;height:100%;background:linear-gradient(100deg,transparent,rgba(255,255,255,.22),transparent);transform:skew(-18deg);animation:bdash-shine 3.8s ease-in-out infinite}@keyframes bdash-shine{0%{left:-70%}55%{left:135%}to{left:135%}}.bdash-growth__star{width:34px;height:34px;flex:none;border-radius:999px;background:linear-gradient(135deg,#fbbf24,#f59e0b);display:inline-flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 3px 10px #f59e0b80}.bdash-growth__text{display:flex;flex-direction:column;gap:2px;min-width:0}.bdash-growth__text b{font-size:14px}.bdash-growth__text small{color:#bfdbfe}.bdash-growth__price{margin-left:auto;flex:none;background:#ffffff24;border:1px solid rgba(255,255,255,.28);padding:6px 11px;border-radius:999px;font-size:12.5px;white-space:nowrap}.bdash-growth__materials{background:#fff;border:1px solid #CBD5E1;color:#0f172a!important}.bdash-growth__materials span{display:flex;flex-direction:column;gap:2px}.business-place-card .bdash-growth__materials img{width:26px!important;height:26px!important;min-width:26px;object-fit:contain!important;border-radius:50%;flex:none}.bdash-growth__materials small{color:#64748b}.bdash-growth__materials:hover{border-color:#94a3b8;box-shadow:0 5px 14px #0f172a1a}@media (max-width: 560px){.bdash-growth{grid-template-columns:1fr}}@media (max-width: 980px){.bplan-offer{grid-template-columns:1fr}.bplan-cancel{position:static;margin-top:14px}.bplan-status{flex-wrap:wrap}.bplan-paycard{margin:0 22px 22px}.bpay-grid{grid-template-columns:1fr}.bcrm-hero{flex-direction:column}}@media (max-width: 720px){.bplan-perk-grid{grid-template-columns:1fr}.bplan-stat-grid,.bcrm-summary{grid-template-columns:repeat(2,1fr)}.bplan-sticker-cta{flex-direction:column;align-items:flex-start}.bplan-offer__copy{padding:26px 22px}.bplan-price{font-size:44px}}.business-hours-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px 16px}.business-hours-grid label{margin:8px 0!important}.business-hours-grid span{font-size:13px}.business-amenities-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:14px}.business-amenities-grid label{display:flex!important;align-items:center;gap:8px;margin:0!important;background:#f5f8fd;border-radius:9px;padding:9px 11px;font-weight:600!important;font-size:12.5px;color:#354963}.business-amenities-grid input{width:auto!important;margin:0!important;min-height:0!important}@media (max-width: 560px){.business-hours-grid,.business-amenities-grid{grid-template-columns:1fr}}.bedit{display:flex;flex-direction:column;gap:18px}.bedit-hero{display:flex;justify-content:space-between;align-items:center;gap:20px;background:linear-gradient(135deg,#f2f8ff,#e9f2ff);border:1px solid #D6E6FA;border-radius:20px;padding:24px 28px}.bedit-hero h1{font-size:clamp(24px,3vw,34px)!important;margin:6px 0!important;letter-spacing:-.03em}.bedit-hero p{color:#5b7395;font-size:14px;margin:0}.bedit-hero__lock{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid #D6E6FA;border-radius:999px;padding:9px 15px;color:#52647c;font-size:12.5px;font-weight:600;white-space:nowrap}.bedit-hero__lock svg{color:#1c60b0;flex:none}.bedit-stepper{position:sticky;top:8px;z-index:20;background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid #E2E8F0;border-radius:16px;padding:12px 14px 10px;box-shadow:0 6px 20px #0f172a12}.bedit-progress{height:4px;background:#e8eff8;border-radius:999px;overflow:hidden;margin-bottom:10px}.bedit-progress span{display:block;height:100%;width:16.6%;background:linear-gradient(90deg,#1c60b0,#0d1b45);border-radius:999px;transition:width .3s ease}.bedit-stepper__items{display:flex;gap:6px;overflow-x:auto;scrollbar-width:none;-webkit-overflow-scrolling:touch}.bedit-stepper__items::-webkit-scrollbar{display:none}.bedit-step-btn{flex:1 0 auto;display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid transparent;background:transparent;border-radius:11px;padding:8px 14px;font:inherit;font-size:13px;font-weight:700;color:#64748b;cursor:pointer;white-space:nowrap;transition:.15s ease}.bedit-step-btn__num{width:24px;height:24px;flex:none;border-radius:999px;border:1.5px solid #C4D3E6;display:inline-flex;align-items:center;justify-content:center;font-size:11.5px;font-weight:800;color:#64748b;transition:.15s ease}.bedit-step-btn:hover{background:#f1f6fd;color:#1c60b0}.bedit-step-btn:hover .bedit-step-btn__num{border-color:#1c60b0;color:#1c60b0}.bedit-step-btn.is-active{background:linear-gradient(120deg,#1c60b0,#0d1b45);color:#fff;box-shadow:0 5px 14px #0d1b4547}.bedit-step-btn.is-active .bedit-step-btn__num{border-color:#ffffff8c;color:#fff}.bedit-step-btn.is-done{color:#1c60b0;background:#edf4ff}.bedit-step-btn.is-done .bedit-step-btn__num{border-color:#1c60b0;background:#1c60b0;color:#fff;font-size:0}.bedit-step-btn.is-done .bedit-step-btn__num:after{content:"\2713";font-size:12px}.bedit-form{display:block!important}.bedit-step{max-width:none;animation:bedit-in .25s ease}@keyframes bedit-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}.bedit-step__head{display:flex;align-items:center;gap:14px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #EDF1F7}.bedit-step__icon{width:46px;height:46px;flex:none;border-radius:14px;background:linear-gradient(120deg,#1c60b0,#0d1b45);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:15px;font-weight:800;letter-spacing:.04em;box-shadow:0 5px 14px #0d1b4538}.bedit-step__head h2{margin:0!important;font-size:19px}.bedit-step__head p{margin:3px 0 0;color:#64748b;font-size:13px}.bedit-hint{margin-top:14px;background:#f8faff;border:1px dashed #C7DBF5;border-radius:11px;padding:11px 14px;color:#3b5a82;font-size:13px}.bedit-footer{position:sticky;bottom:12px;z-index:20;margin:18px 0 0;display:flex;align-items:center;gap:12px;background:#fffffff5;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border:1px solid #E2E8F0;border-radius:16px;padding:12px 16px;box-shadow:0 10px 30px #0f172a1f}.bedit-nav-btn{border:1px solid #CBD5E1;background:#fff;color:#334155;border-radius:11px;padding:11px 16px;font:inherit;font-size:13.5px;font-weight:700;cursor:pointer}.bedit-nav-btn:disabled{opacity:.4;cursor:default}.bedit-nav-btn.is-next{border-color:#1c60b0;color:#1c60b0;background:#f2f8ff}.bedit-footer__count{color:#94a3b8;font-size:12.5px;white-space:nowrap}.bedit-footer__count b{color:#1c60b0}.bedit-save{margin-left:auto;display:inline-flex;align-items:center;gap:8px}@media (max-width: 640px){.bedit-hero{flex-direction:column;align-items:flex-start;padding:20px}.bedit-hero__lock{white-space:normal}.bedit-step-btn__label{display:none}.bedit-step-btn.is-active .bedit-step-btn__label{display:inline}.bedit-step-btn{padding:8px 10px}.bedit-step-btn{flex:0 0 auto}.bedit-footer{flex-wrap:wrap;bottom:8px}.bedit-footer__count{order:-1;width:100%;text-align:center}.bedit-save{flex:1;justify-content:center}}.bedit .business-edit-form label>span{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#52647c}.bedit .business-edit-form label>small{font-size:12.5px;color:#94a3b8}.bedit .business-edit-form input:not([type=checkbox]):not([type=radio]):not([type=file]),.bedit .business-edit-form textarea,.bedit .business-edit-form select{font-size:15.5px;font-weight:500;color:#0f172a;line-height:1.5;padding:13px 15px}.bedit .business-edit-form input::placeholder,.bedit .business-edit-form textarea::placeholder{color:#a6b4c8;font-weight:400}.bedit .business-edit-form input:focus,.bedit .business-edit-form textarea:focus,.bedit .business-edit-form select:focus{outline:none;border-color:#1c60b0;box-shadow:0 0 0 4px #1c60b01f}.bedit .business-checks label span b{font-size:14.5px}@media (min-width: 900px){.bedit .business-hours-grid{grid-template-columns:repeat(4,1fr)}.bedit .business-amenities-grid{grid-template-columns:repeat(3,1fr)}.bedit .bedit-step{padding:34px 38px}}.user-delete-btn{border:1px solid #E2C4C4;background:#fff;color:#b91c1c;border-radius:9px;padding:7px 13px;font:inherit;font-size:12.5px;font-weight:700;cursor:pointer;transition:.15s ease}.user-delete-btn:hover{background:#fef2f2;border-color:#fca5a5}.user-self-tag{display:inline-block;background:#f1f5f9;color:#64748b;font-size:12px;font-weight:700;padding:6px 12px;border-radius:999px}.bcomplete{width:min(960px,calc(100% - 32px));padding:28px 0 100px;gap:20px}.bcomplete,.bcomplete *{box-sizing:border-box}.bcomplete [hidden]{display:none!important}.bcomplete .business-editor__back{margin:0;font-size:13px;min-height:32px}.bcomplete .bedit-hero{display:block;padding:0;border:0;background:none;border-radius:0}.bcomplete .claim-kicker{font-size:11px;margin-bottom:8px}.bcomplete .bedit-hero h1{font-size:clamp(26px,4vw,36px)!important;line-height:1.2}.bcomplete .bedit-hero p{font-size:15px;line-height:1.5}.bcomplete .bedit-hero__lock{border:0;padding:0;background:none;margin-top:12px;font-size:12px;white-space:normal}.bcomplete .bcomplete-guide{margin:0;padding:14px 16px;border-radius:12px;background:#eaf3ff;color:#274e7e;font-size:14px;line-height:1.6}.bcomplete .claim-notice{margin:0;padding:16px;border-radius:12px;font-size:14px;line-height:1.6}.bcomplete .claim-notice.is-success:before{content:"\2713";display:inline-grid;place-items:center;width:24px;height:24px;margin-right:8px;background:#18794e;border-radius:50%;color:#fff}.bcomplete .bedit-stepper{position:static;padding:0;border:0;background:none;box-shadow:none;-webkit-backdrop-filter:none;backdrop-filter:none}.bcomplete-progress-label{display:flex;justify-content:space-between;gap:12px;margin-bottom:10px;font-size:12px;color:#60718a}.bcomplete-progress-label strong{color:#2164b5}.bcomplete .bedit-progress{height:4px;margin-bottom:14px}.bcomplete .bedit-progress span{background:#2164b5}.bcomplete .bedit-stepper__items{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:6px;overflow:visible}.bcomplete .bedit-step-btn{min-width:0;min-height:64px;padding:9px 4px;flex-direction:column;gap:6px;font-size:12px;white-space:normal;border:1px solid #dce5ef;background:#fff}.bcomplete .bedit-step-btn__label{display:block}.bcomplete .bedit-step-btn.is-active{background:#eaf3ff;border-color:#2164b5;color:#174c8a;box-shadow:none}.bcomplete .bedit-step-btn.is-active .bedit-step-btn__num{background:#2164b5;color:#fff;border-color:#2164b5}.bcomplete .bedit-form{background:#fff;border:1px solid #dce5ef;border-radius:18px;overflow:visible}.bcomplete .bedit-step{margin:0!important;padding:28px!important;box-shadow:none!important;border:0;background:none}.bcomplete .bedit-step__head{align-items:flex-start;border:0;padding:0;margin-bottom:20px}.bcomplete .bedit-step__icon{width:36px;height:36px;border-radius:10px;background:#edf4fd;color:#2164b5;font-size:13px;box-shadow:none}.bcomplete .bedit-step__head h2{font-size:21px;line-height:1.3}.bcomplete .bedit-step__head p{font-size:14px;line-height:1.5;margin-top:6px}.bcomplete .business-edit-form label{margin:18px 0 0;min-width:0}.bcomplete .business-edit-form label>span{font-size:14px;font-weight:600;text-transform:none;letter-spacing:0;color:#354963}.bcomplete .business-edit-form label>small{display:block;font-size:12px;color:#60718a;margin-top:5px;line-height:1.5}.bcomplete .business-edit-form input:not([type=checkbox]):not([type=hidden]),.bcomplete .business-edit-form select,.bcomplete .business-edit-form textarea{min-width:0;width:100%;min-height:48px;font-size:16px;font-weight:400;padding:12px;border:1px solid #cbd7e6;border-radius:10px;background-color:#fff;color:#10213d}.bcomplete .business-edit-form textarea{resize:vertical;line-height:1.6}.bcomplete .claim-fields{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.bcomplete .business-checks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.bcomplete .business-checks label,.bcomplete .business-amenities-grid label{display:flex!important;align-items:center;min-height:54px;gap:12px;padding:12px;border:1px solid #dce5ef;background:#fff;border-radius:10px;margin:0!important;cursor:pointer}.bcomplete .business-checks label:has(:checked),.bcomplete .business-amenities-grid label:has(:checked){background:#edf5ff;border-color:#2164b5}.bcomplete .business-edit-form input[type=checkbox]{flex:0 0 22px;width:22px!important;height:22px;min-height:22px!important;margin:0!important;padding:0;accent-color:#2164b5}.bcomplete .business-checks small{display:block;font-size:12px;color:#60718a}.bcomplete .business-amenities-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.bcomplete .business-amenities-grid label>span{font-size:13px;line-height:1.5}.bcomplete .business-hours-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px 16px}.bcomplete-copy-hours{min-height:44px;border:1px solid #bcd2ed;border-radius:10px;padding:10px 14px;background:#edf5ff;color:#174c8a;font:inherit;font-size:13px;cursor:pointer}.bcomplete-feedback{margin:8px 0;color:#274e7e;font-size:13px;line-height:1.5}.bcomplete-feedback:empty{display:none}.bcomplete .business-upload{display:block;padding:20px;background:#f2f7ff;border:2px dashed #9cbce3;border-radius:14px}.bcomplete .business-upload>span{font-size:17px!important;color:#174c8a!important}.bcomplete .business-upload input::file-selector-button{padding:10px 12px;border:0;border-radius:8px;background:#2164b5;color:#fff;margin-right:10px;cursor:pointer}.bcomplete .business-cover-placeholder{display:none}.bcomplete .business-cover{max-height:300px;object-fit:contain;background:#f5f8fc}.bcomplete-photo-url{margin-top:20px;padding:12px 0;color:#52647c;font-size:14px}.bcomplete-photo-url summary{min-height:36px;cursor:pointer}.bcomplete .bedit-hint{background:#f5f8fc;border:0;padding:12px;line-height:1.6}.bcomplete .bedit-footer{position:static;margin:0;padding:20px 28px;border:0;border-top:1px solid #e7edf5;border-radius:0 0 18px 18px;background:none;box-shadow:none;-webkit-backdrop-filter:none;backdrop-filter:none}.bcomplete .bedit-nav-btn,.bcomplete .bedit-save{min-height:48px;border-radius:10px;padding:12px 16px;font-size:14px;white-space:normal}.bcomplete .bedit-nav-btn.is-next,.bcomplete .bedit-save{margin-left:auto;background:#2164b5;color:#fff;border:0}.bcomplete .bedit-footer__count{order:initial;width:auto}.bcomplete .bcomplete-error{display:block;margin:10px 0 0;padding:12px;background:#fff4f5;border:1px solid #f1c2c8;border-radius:10px;color:#982b3b;font-size:13px;line-height:1.5}.bcomplete [aria-invalid=true]{border-color:#be4052!important}.bcomplete :is(button,a,input,select,textarea,summary):focus-visible{outline:3px solid #82b4f0;outline-offset:3px}.bcomplete .eypet-addr__list{position:static;max-height:260px;overflow:auto;margin-top:8px;box-shadow:none}@media (max-width:600px){.bcomplete{padding-top:20px;padding-bottom:calc(88px + env(safe-area-inset-bottom,0px));gap:16px}.bcomplete .bedit-stepper__items{grid-template-columns:repeat(3,minmax(0,1fr))}.bcomplete .bedit-step{padding:20px 16px!important}.bcomplete .bedit-step__head h2{font-size:19px}.bcomplete .bedit-step__head p{font-size:13px}.bcomplete .claim-fields,.bcomplete .business-checks,.bcomplete .business-amenities-grid,.bcomplete .business-hours-grid{grid-template-columns:minmax(0,1fr)}.bcomplete .claim-fields{gap:0}.bcomplete .business-hours-grid label{display:grid;grid-template-columns:80px minmax(0,1fr);gap:10px;align-items:center;margin:0!important}.bcomplete .business-hours-grid input{margin:0}.bcomplete .bedit-footer{display:flex;flex-direction:column;padding:16px;gap:8px}.bcomplete .bedit-footer__count{display:none}.bcomplete .bedit-nav-btn,.bcomplete .bedit-save{width:100%;margin:0}.bcomplete .is-next,.bcomplete .bedit-save{order:-1}.bcomplete #bedit-prev{border:0;background:none}.bcomplete #bedit-prev:disabled{display:none}}@media (prefers-reduced-motion:reduce){.bcomplete *,.bcomplete .bedit-step{animation:none;transition:none}}.bdash-responsive{max-width:1060px;padding-top:28px}.bdash-responsive .business-hero{padding:0;border:0;background:none;box-shadow:none;border-radius:0}.bdash-responsive .business-hero h1{font-size:clamp(28px,4vw,38px)}.bdash-responsive .business-hero p{font-size:15px}.bdash-responsive .business-summary{width:100%;background:#fff;margin-top:20px}.bdash-responsive .business-section{border-radius:16px;box-shadow:none}.bdash-responsive .business-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.bdash-responsive .business-place-card{display:flex;flex-direction:column;min-width:0;border-radius:14px}.bdash-responsive .business-place-card__media{height:150px;min-height:0;flex:none}.bdash-responsive .business-place-card__media img{height:150px;width:100%;object-fit:cover}.bdash-responsive .business-place-card__media:has(.business-place-card__placeholder){height:72px}.bdash-responsive .business-place-card__placeholder{display:none}.bdash-responsive .business-place-card__content{padding:20px!important;min-width:0}.bdash-responsive .business-place-card__content h3{font-size:21px;line-height:1.3;margin:12px 0}.bdash-responsive .business-place-card__content>p{display:block;font-size:12px}.bdash-responsive .business-place-card__meta{flex-wrap:wrap}.bdash-responsive .business-place-card__meta span{font-size:11px}.bdash-responsive .bdash-meta{flex-wrap:wrap;gap:8px}.bdash-responsive .bdash-views{font-size:13px}.bdash-responsive .business-actions{display:flex;flex-wrap:wrap;gap:10px}.bdash-responsive .business-actions a{flex:1 1 150px;min-height:48px;font-size:14px}.bdash-responsive .business-actions__secondary{display:flex!important}.bdash-responsive .bdash-growth{display:grid;grid-template-columns:minmax(0,1fr);gap:10px}.bdash-responsive .bdash-growth__featured{display:grid;grid-template-columns:28px minmax(0,1fr) auto;gap:10px;padding:14px;border-radius:12px;background:#edf4ff;color:#174c8a;border:1px solid #bfd4ee;box-shadow:none}.bdash-responsive .bdash-growth__star{width:28px;height:28px;box-shadow:none}.bdash-responsive .bdash-growth__text b{font-size:14px;color:#174c8a}.bdash-responsive .bdash-growth__text small{color:#52647c;font-size:12px}.bdash-responsive .bdash-growth__price{font-size:13px;padding:0;white-space:nowrap;border:0;background:none;color:#174c8a}.bdash-responsive .bdash-growth__materials{min-height:48px;padding:12px;border-radius:10px;font-size:14px}.bdash-responsive .bdash-growth__materials small{font-size:12px}.bdash-responsive .bdash-readiness{margin:14px 0;padding:14px;border:1px solid #f1d59f;border-radius:12px;background:#fff9ee;color:#79521c;font-size:13px;line-height:1.55}.bdash-responsive .bdash-readiness strong{display:block;font-size:14px}.bdash-responsive .bdash-readiness p{margin:6px 0 0;font-size:13px}.bdash-responsive .bdash-readiness ul{margin:8px 0;padding-left:20px}.bdash-responsive .bdash-readiness small{font-size:12px}@media (max-width:760px){.bdash-responsive{width:calc(100% - 32px);padding-bottom:calc(88px + env(safe-area-inset-bottom,0px))}.bdash-responsive .business-grid{grid-template-columns:minmax(0,1fr);padding:12px}.bdash-responsive .business-section__head{padding:16px}.bdash-responsive .business-section__heading h2{font-size:18px}.bdash-responsive .business-section__icon{display:none}.bdash-responsive .business-hero__top{gap:14px}.bdash-responsive .business-back-profile{width:auto;font-size:13px;min-height:44px}.bdash-responsive .business-summary__item small{font-size:11px}.bdash-responsive .business-place-card__content{padding:16px!important}.bdash-responsive .bdash-growth__featured{grid-template-columns:28px minmax(0,1fr)}.bdash-responsive .bdash-growth__price{grid-column:2}}.bdash-responsive .bdash-revoked{background:#fff1f2;border-color:#fecdd3;color:#881337}.bdash-responsive .bdash-revoked strong{color:#9f1239}.bdash-responsive .bdash-revoked small{color:#881337}.business-contact-fields{border:0;padding:0;margin:20px 0;min-width:0}.business-contact-fields legend{font-weight:700;margin-bottom:16px}.business-contact-fields:disabled input{background:#f1f5f9;color:#64748b;cursor:not-allowed}.bdash-responsive .bdash-growth form{margin:0;min-width:0}.bdash-responsive button.bdash-growth__featured{width:100%;text-align:left;font:inherit;cursor:pointer}.bcomplete .business-unlock{margin-top:24px;padding:22px;border:1px solid #d5e2f6;border-radius:18px;background:linear-gradient(135deg,#f2f7ff,#fff);color:#172b4d}.business-unlock__head{display:flex;align-items:center;gap:10px;margin-bottom:12px}.business-unlock__icon{display:grid;place-items:center;width:36px;height:36px;border-radius:11px;background:#dceaff;color:#245fa8;font-size:23px}.business-unlock__badge{display:inline-flex;align-items:center;gap:6px;color:#245fa8;background:#e9f1ff;padding:6px 10px;border-radius:8px;font-size:12px;font-weight:750;letter-spacing:.03em}.bcomplete .business-unlock h3{font-size:21px;line-height:1.25;margin:0 0 8px}.bcomplete .business-unlock p{font-size:14px;line-height:1.55;margin:0;color:#526580}.business-unlock__channels{display:flex;flex-wrap:wrap;gap:8px;padding:0;margin:16px 0;list-style:none}.business-unlock__channels li{font-size:12px;font-weight:600;padding:6px 10px;background:#fff;border:1px solid #dce5f2;border-radius:8px}.business-unlock__action{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:16px;border-top:1px solid #dce5f2;font-size:14px}.business-unlock__action b{font-size:25px;color:#142946}.business-unlock__action small{display:block;color:#526580;font-size:12px}.business-unlock__action button{min-height:46px;border:0;border-radius:10px;background:#2463ad;color:#fff;padding:12px 16px;font:inherit;font-weight:700;cursor:pointer}.business-unlock__preview{margin-top:18px;padding-top:14px;border-top:1px solid #dce5f2}.business-unlock__preview summary{font-size:13px;font-weight:600;color:#526580;cursor:pointer;min-height:32px}.business-unlock__preview fieldset legend{font-size:14px}.business-plan-refresh{max-width:1080px;margin:0 auto;padding:28px 24px 100px}.business-plan-refresh>.claim-back{display:inline-flex;min-height:44px;margin:0 0 20px;padding:0;background:none;border:0;box-shadow:none;font-size:14px}.business-plan-intro{margin-bottom:26px;max-width:680px}.business-plan-intro h1{font-size:clamp(27px,4vw,38px);line-height:1.14;letter-spacing:-.025em;margin:14px 0 12px;color:#13233c}.business-plan-intro p{font-size:15px;line-height:1.55;color:#586a81;margin:8px 0}.business-plan-intro .business-plan-intro__place{color:#263b55;font-weight:700;overflow-wrap:anywhere}.business-plan-intro__place span{font-weight:400}.business-plan-intro .claim-primary{margin-top:12px}.business-plan-journey{display:flex;flex-wrap:wrap;gap:18px;list-style:none;margin:20px 0 0;padding:0;font-size:13px;color:#64748b}.business-plan-journey li{display:flex;align-items:center;gap:7px}.business-plan-journey b{display:grid;place-items:center;border:1px solid #cdd9e9;width:25px;height:25px;border-radius:50%}.business-plan-journey .is-current{color:#245fa8;font-weight:700}.business-plan-journey .is-current b{background:#245fa8;color:#fff;border-color:#245fa8}.business-plan-refresh .bplan-offer{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,380px);gap:30px;padding:0;background:none;border:0;box-shadow:none;color:#182b47;margin:0 0 24px;align-items:start}.business-plan-refresh .bplan-offer__copy{padding:24px 0}.business-plan-refresh .bplan-offer__copy h2{font-size:24px;margin:14px 0 22px;line-height:1.2;color:#182b47}.business-plan-refresh .bplan-perk-grid{display:grid;grid-template-columns:1fr;gap:20px}.business-plan-refresh .bplan-perk{background:none;border:0;padding:0;display:flex;gap:12px;align-items:flex-start}.business-plan-refresh .bplan-perk__icon{background:#eaf1fc;color:#245fa8;flex:0 0 38px;width:38px;height:38px;border-radius:11px}.business-plan-refresh .bplan-perk b{color:#21344e;font-size:15px}.business-plan-refresh .bplan-perk small{color:#617087;font-size:13px;line-height:1.5;margin-top:4px}.business-plan-refresh .bplan-paycard{background:#fff;color:#162c49;border:1px solid #ccdaf0;border-radius:20px;padding:24px;box-shadow:0 10px 32px #16365c0b;min-width:0}.business-plan-refresh .bplan-paycard__head{font-size:14px;color:#263c59}.business-plan-refresh .bplan-paycard__price{margin:16px 0 4px;display:flex;flex-wrap:wrap;align-items:baseline;gap:8px}.business-plan-refresh .bplan-paycard__price strong{font-size:46px;line-height:1.1;color:#152f53}.business-plan-refresh .bplan-paycard__price s{font-size:18px;color:#768397}.business-plan-refresh .bplan-paycard__price em{font-size:16px;color:#586a81}.business-plan-refresh .business-plan-renewal{font-size:13px;color:#5b6e85;margin:6px 0 18px}.business-plan-refresh .bplan-paycard ul{font-size:14px;line-height:1.6;padding:0;list-style:none;margin:14px 0 20px}.business-plan-refresh .bplan-paycard__cta{background:#2463ad;color:#fff;min-height:50px;box-shadow:none;border-radius:12px;width:100%;font-size:16px}.business-plan-refresh .bplan-paycard__cta:disabled{background:#e7edf5;color:#526580;cursor:not-allowed}.business-plan-refresh .bplan-paycard small,.business-plan-refresh .bplan-paycard__slots{font-size:12px;line-height:1.5;color:#5b6e85}.business-plan-refresh .business-plan-after{font-size:12px;line-height:1.55;color:#5b6e85;border-top:1px solid #e3eaf3;padding-top:14px;margin-top:16px}.business-plan-refresh .bplan-coupon input{width:100%;min-height:46px;box-sizing:border-box;font-size:16px}.business-plan-refresh .bplan-compare-card{border:1px solid #dce5f0;border-radius:16px;background:#fff;padding:18px;margin:20px 0}.business-plan-refresh .bplan-compare-card summary{font-size:16px;font-weight:700;cursor:pointer;min-height:28px;color:#21344e}.business-plan-refresh .bplan-compare-card table{width:100%;table-layout:fixed;font-size:13px;margin-top:18px}.business-plan-refresh .bplan-compare-card th:first-child{width:50%}.business-plan-refresh .bplan-compare-card td,.business-plan-refresh .bplan-compare-card th{padding:12px 7px;overflow-wrap:anywhere}.business-plan-refresh .bplan-status,.business-plan-refresh .bplan-stats,.business-plan-refresh .bplan-sticker-cta{border-radius:18px;padding:22px;margin:22px 0;box-shadow:none}.business-plan-refresh .bplan-status h2,.business-plan-refresh .bplan-stats h2,.business-plan-refresh .bplan-sticker-cta h2{font-size:22px;line-height:1.25}.business-plan-refresh .bplan-status p,.business-plan-refresh .bplan-sticker-cta p{font-size:14px;line-height:1.6}.business-plan-refresh .bplan-monthly{display:block;overflow-x:auto;max-width:100%}@media (max-width:640px){.bcomplete .business-unlock{padding:18px}.business-unlock__action{gap:10px;flex-wrap:wrap}.business-unlock__action button{flex:1;font-size:14px}.business-plan-refresh{padding:18px 16px 100px}.business-plan-refresh .bplan-offer{grid-template-columns:minmax(0,1fr);gap:16px}.business-plan-refresh .bplan-paycard{grid-row:1;padding:22px}.business-plan-refresh .bplan-offer__copy{padding:14px 4px}.business-plan-refresh .bplan-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.business-plan-refresh .bplan-stat{padding:14px;min-width:0}.business-plan-refresh .bplan-stat strong{font-size:28px}.business-plan-refresh .bplan-stat span{font-size:12px}.business-plan-refresh .bplan-status,.business-plan-refresh .bplan-sticker-cta{display:flex;flex-direction:column;align-items:flex-start;gap:16px}}.business-plan-refresh{gap:0}.business-plan-refresh [hidden]{display:none!important}.business-plan-refresh .bplan-paycard{margin:0}.business-plan-refresh .bplan-compare-card th{text-transform:none;letter-spacing:0;font-size:12px;overflow-wrap:normal}.business-plan-refresh .bplan-compare-card td{word-break:normal;overflow-wrap:normal}@media (max-width:360px){.business-plan-refresh .bplan-compare-card{padding:12px}.business-plan-refresh .bplan-compare-card td,.business-plan-refresh .bplan-compare-card th{font-size:11px;padding:10px 4px}}.bf-page{--bf-ink:#172b4d;--bf-muted:#53657e;--bf-line:#dfe6ef;--bf-blue:#2864f6;background:#f5f7fb;color:var(--bf-ink);padding:16px 24px 64px;min-height:75vh;font-size:16px;line-height:1.5}.bf-page *{box-sizing:border-box}.bf-shell{max-width:1160px;margin:auto}.bf-page svg{width:22px;height:22px;flex-shrink:0}.bf-page a{text-decoration:none}.bf-page a:focus-visible,.bf-page button:focus-visible{outline:3px solid #72abef;outline-offset:4px}.bf-back{display:inline-flex;align-items:center;gap:8px;min-height:44px;color:var(--bf-muted);font-size:14px;font-weight:600;margin-bottom:8px}.bf-back svg{width:18px;height:18px}.bf-back:hover,.bf-text-link:hover{text-decoration:underline;text-underline-offset:4px}.bf-header{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:28px}.bf-identity{display:flex;align-items:center;gap:18px;min-width:0}.bf-avatar{width:64px;height:64px;display:grid;place-items:center;border-radius:22px;background:#e4eeff;border:1px solid #cbdcfa;color:#225bc6;flex-shrink:0}.bf-avatar svg{width:32px;height:32px}.bf-page .bf-kicker{font-size:11px;font-weight:700;letter-spacing:1.3px;color:#4b6c9d;line-height:1.5;margin:0 0 5px}.bf-header h1{font-size:34px;line-height:1.2;letter-spacing:-1px;margin:0 0 5px;color:#182e50}.bf-identity p:last-child{margin:0;font-size:16px;color:var(--bf-muted)}.bf-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:13px 18px;font-family:inherit;font-size:16px;font-weight:600;line-height:1.4;border:1px solid transparent;border-radius:12px;text-align:center;cursor:pointer;transition:background .15s;white-space:normal}.bf-btn svg{width:19px;height:19px}.bf-primary{background:var(--bf-blue);border-color:var(--bf-blue);color:#fff!important}.bf-primary:hover{background:#2155cf;border-color:#2155cf}.bf-secondary{background:#fff;border-color:#d4dfef;color:#315784}.bf-secondary:hover{background:#f1f6ff}.bf-header>.bf-btn{flex-shrink:0;box-shadow:0 5px 14px #2864f61a}.bf-summary.business-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;padding:0;margin:0 0 32px;width:100%;border:0;border-radius:0;background:transparent}.bf-stat{display:grid;grid-template-columns:44px minmax(0,1fr);align-items:center;gap:2px 14px;padding:18px 20px;background:#fff;border:1px solid var(--bf-line);border-radius:16px;min-width:0}.bf-stat dt{display:contents}.bf-stat .bf-stat-icon{grid-column:1;grid-row:1/3}.bf-stat-label{grid-column:2;grid-row:2;font-size:14px;color:var(--bf-muted);line-height:1.4}.bf-stat dd{grid-column:2;grid-row:1;margin:0 0 2px;font-size:26px;font-weight:700;line-height:1.2;color:var(--bf-ink)}.bf-stat-icon{width:44px;height:44px;display:grid;place-items:center;border-radius:14px;flex-shrink:0;background:#edf3ff;color:#2f62b9}.bf-stat-icon.is-green{background:#e8f5ee;color:#287459}.bf-stat-icon.is-amber{background:#fff4df;color:#98601a}.bf-layout{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(290px,1fr);gap:24px;align-items:start}.bf-managed,.bf-side,.bf-place-list{min-width:0}.bf-section-head{margin-bottom:20px}.bf-section-head h2{display:flex;align-items:center;gap:12px;font-size:25px;line-height:1.25;letter-spacing:-.6px;margin:0;color:var(--bf-ink)}.bf-section-head h2 span{display:grid;place-items:center;background:#e9f0ff;color:#2f62b9;width:29px;height:29px;border-radius:10px;font-size:15px;letter-spacing:0}.bf-section-head p{font-size:15px;line-height:1.6;color:var(--bf-muted);margin:7px 0 0}.bf-place-list{display:grid;gap:22px}.bf-card{background:#fff;border:1px solid var(--bf-line);border-radius:20px;overflow:hidden;min-width:0}.bf-card-main{display:grid;grid-template-columns:170px minmax(0,1fr)}.bf-photo{position:relative;min-height:260px;overflow:hidden;background:#e7eff8}.bf-photo>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.bf-photo-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;height:100%;color:#5577a2;font-size:14px;padding:24px}.bf-photo-empty svg{width:46px;height:46px}.bf-card-body{padding:22px;min-width:0}.bf-card-top{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;margin-bottom:12px}.bf-location{display:inline-flex;align-items:center;gap:5px;color:var(--bf-muted);font-size:14px;min-width:0;overflow-wrap:anywhere}.bf-location svg{width:17px;height:17px}.bf-status{display:inline-flex;align-items:center;gap:4px;padding:5px 9px;border-radius:9px;font-size:12px;line-height:1.4;font-weight:600;background:#f0f3f7;color:#52647a}.bf-status svg{width:14px;height:14px}.bf-status.is-approved{background:#eaf7ef;color:#247354}.bf-status.is-pending{background:#fff4df;color:#895519}.bf-status.is-rejected{background:#fff0f1;color:#a93248}.bf-card h3{font-size:23px;line-height:1.3;letter-spacing:-.4px;margin:0 0 7px;color:var(--bf-ink);overflow-wrap:anywhere}.bf-category{font-size:14px;color:var(--bf-muted);margin:0 0 17px}.bf-card-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:20px}.bf-plan{border-radius:7px;padding:4px 8px;background:#f2f5f9;font-size:12px;font-weight:600;color:#4e617c}.bf-plan.is-live{background:#edf3ff;color:#2c5eac}.bf-views{display:inline-flex;align-items:center;gap:5px;font-size:13px;color:var(--bf-muted)}.bf-views svg{width:17px;height:17px}.bf-views b{color:#334d6d}.bf-actions{display:flex;align-items:stretch;gap:10px;flex-wrap:wrap}.bf-actions .bf-btn{flex:1 1 160px;padding:12px;font-size:15px}.bf-updated{font-size:12px;line-height:1.5;color:#60718a;margin:13px 0 0}.bf-tools{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;border-top:1px solid #e5ebf3;background:#fbfcff;padding:8px}.bf-tools form{margin:0;min-width:0}.bf-tool{display:flex;align-items:center;gap:11px;width:100%;height:100%;min-height:76px;padding:12px;border:0;border-radius:12px;background:transparent;color:#2f4b70;text-align:left;font-family:inherit;cursor:pointer;text-decoration:none}.bf-tool:hover{background:#edf3fc}.bf-tool-icon{display:grid;place-items:center;flex-shrink:0;width:38px;height:38px;border-radius:12px;background:#eaf1ff;color:#3966b5}.bf-tool-icon.is-green{background:#e7f3ed;color:#367663}.bf-tool>span:not(.bf-tool-icon){min-width:0;flex:1}.bf-tool b{display:block;font-size:14px;line-height:1.4;font-weight:600}.bf-tool small{display:block;font-size:12px;color:var(--bf-muted);line-height:1.5;margin-top:3px}.bf-tool>svg{width:16px;height:16px;margin-left:auto}.bf-side{display:grid;gap:20px;padding-top:78px}.bf-requests{border:1px solid var(--bf-line);border-radius:20px;padding:22px;background:#fff}.bf-side-heading{display:flex;align-items:center;gap:12px;padding-bottom:18px;border-bottom:1px solid #e7edf5}.bf-side-heading h2{font-size:19px;line-height:1.3;letter-spacing:-.3px;margin:0;color:#243d5e}.bf-side-heading p{font-size:13px;color:var(--bf-muted);margin:4px 0 0}.bf-claim-list article{padding:18px 0;border-bottom:1px solid #e7edf5}.bf-claim-list article:last-child{border-bottom:0;padding-bottom:0}.bf-claim-list h3{font-size:16px;font-weight:600;line-height:1.45;margin:10px 0 3px;color:#243d5e;overflow-wrap:anywhere}.bf-claim-list p{font-size:13px;color:var(--bf-muted);line-height:1.6;margin:0}.bf-claim-list .bf-claim-hint{margin-top:9px}.bf-claim-list .bf-response{padding:12px;background:#f5f7fb;border-radius:10px;margin-top:12px;overflow-wrap:anywhere}.bf-no-requests{padding-top:18px}.bf-no-requests strong{font-size:15px;font-weight:600}.bf-no-requests p{font-size:14px;line-height:1.6;color:var(--bf-muted);margin:6px 0 0}.bf-guide{padding:24px;border:1px solid #cde2dc;border-radius:20px;background:#eef7f3;color:#204e40}.bf-guide-mark{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:#d9eee5;color:#277057;margin-bottom:17px}.bf-guide .bf-kicker{font-size:10px;letter-spacing:1px;color:#396b59;margin-bottom:6px}.bf-guide h2{font-size:22px;line-height:1.25;letter-spacing:-.4px;margin:0 0 9px;color:#204e40}.bf-guide>p:not(.bf-kicker){font-size:14px;line-height:1.6;color:#43665b;margin:0}.bf-guide ul{list-style:none;margin:20px 0 0;padding:18px 0 0;border-top:1px solid #d6e8e1;display:grid;gap:16px}.bf-guide li{display:flex;align-items:start;gap:10px;font-size:13px;line-height:1.5;color:#43665b}.bf-guide li>svg{width:18px;height:18px;color:#378068;margin-top:2px}.bf-guide strong{display:block;color:#285744;font-size:14px;margin-bottom:2px}.bf-help{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:4px 8px;min-height:56px;color:#355377}.bf-help strong{display:block;font-size:14px;font-weight:600}.bf-help small{display:block;font-size:13px;color:var(--bf-muted);margin-top:3px}.bf-readiness,.bf-notice{border:1px solid #efd8ae;background:#fff8ec;color:#79521c;border-radius:12px;padding:16px;margin:16px 0;font-size:14px;line-height:1.6;overflow-wrap:anywhere}.bf-readiness strong{font-size:15px}.bf-readiness p{margin:7px 0 0}.bf-readiness ul{margin:8px 0;padding-left:20px}.bf-readiness.is-rejected,.bf-notice.is-error{background:#fff1f2;border-color:#fecdd3;color:#8e2440}.bf-notice.is-success{background:#edf8f1;border-color:#c9e4d7;color:#246649}.bf-subscription-note{font-size:14px;color:var(--bf-muted);line-height:1.6}.bf-text-link{display:inline-flex;align-items:center;gap:8px;color:#285bbb;font-size:14px;font-weight:600;min-height:44px}.bf-empty{padding:40px 28px;text-align:center;background:#fff;border:1px dashed #cbd9ed;border-radius:20px}.bf-empty-icon{display:grid;place-items:center;width:68px;height:68px;border-radius:22px;background:#edf3ff;color:#3264bb;margin:0 auto 22px}.bf-empty-icon svg{width:34px;height:34px}.bf-empty h3{font-size:24px;line-height:1.3;letter-spacing:-.5px;margin:0 0 12px;color:var(--bf-ink)}.bf-empty>p{font-size:16px;line-height:1.6;color:var(--bf-muted);max-width:440px;margin:0 auto 24px}.bf-empty>.bf-text-link{justify-content:center;text-align:center;margin-top:16px}.bf-steps{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;list-style:none;margin:28px 0 0;padding:0;color:var(--bf-muted);font-size:13px}.bf-steps li{display:flex;align-items:center;gap:7px}.bf-steps b{display:grid;place-items:center;width:24px;height:24px;border-radius:8px;background:#edf3ff;color:#3264bb}@media (max-width:1080px){.bf-layout{grid-template-columns:minmax(0,1.6fr) minmax(270px,1fr)}.bf-card-main{grid-template-columns:130px minmax(0,1fr)}.bf-card-body{padding:20px}.bf-tools{grid-template-columns:1fr}.bf-header{align-items:flex-start}.bf-identity p:last-child{max-width:470px}}@media (max-width:800px){.bf-layout{grid-template-columns:minmax(0,1fr)}.bf-side{padding-top:0;grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.bf-help{grid-column:1/-1}.bf-card-main{grid-template-columns:180px minmax(0,1fr)}.bf-tools{grid-template-columns:repeat(2,minmax(0,1fr))}.bf-stat{grid-template-columns:38px minmax(0,1fr);padding:16px 14px;column-gap:10px}.bf-stat-label{font-size:13px}.bf-stat-icon{width:38px;height:38px}.bf-header{flex-wrap:wrap}.bf-header>.bf-btn{margin-left:82px}}@media (max-width:560px){.bf-page{padding:16px 16px calc(90px + env(safe-area-inset-bottom,0px))}.bf-back{margin-bottom:14px}.bf-header{display:block;margin-bottom:24px}.bf-identity{align-items:flex-start;gap:13px}.bf-avatar{width:50px;height:50px;border-radius:17px}.bf-avatar svg{width:27px;height:27px}.bf-header h1{font-size:30px}.bf-identity p:last-child{font-size:16px}.bf-header>.bf-btn{display:flex;margin:20px 0 0;width:100%}.bf-page .bf-kicker{font-size:10px;letter-spacing:1px}.bf-summary.business-summary{gap:8px;margin-bottom:28px}.bf-stat{grid-template-columns:32px minmax(0,1fr);gap:8px;padding:13px 10px;border-radius:14px}.bf-stat .bf-stat-icon{grid-row:1;margin:0}.bf-stat-icon{width:32px;height:32px;border-radius:10px;margin-bottom:9px}.bf-stat-icon svg{width:18px;height:18px}.bf-stat dd{font-size:24px;margin:0}.bf-stat-label{grid-column:1/-1;font-size:12px;line-height:1.45}.bf-section-head h2{font-size:24px}.bf-section-head p{font-size:15px}.bf-card-main{display:block}.bf-photo{height:180px;min-height:0}.bf-photo:has(.bf-photo-empty){height:100px}.bf-photo-empty{flex-direction:row}.bf-photo-empty svg{width:32px;height:32px}.bf-card-body{padding:20px}.bf-card h3{font-size:23px}.bf-card-top{gap:8px}.bf-category{font-size:15px}.bf-card-meta{gap:10px 12px}.bf-views{font-size:13px}.bf-actions{display:grid;grid-template-columns:1fr}.bf-actions .bf-btn{font-size:16px}.bf-tools{grid-template-columns:1fr}.bf-tool{min-height:76px}.bf-tool b{font-size:15px}.bf-tool small{font-size:13px}.bf-tool-icon{width:40px;height:40px}.bf-side{display:grid;grid-template-columns:minmax(0,1fr);gap:18px}.bf-requests,.bf-guide{padding:22px}.bf-side-heading h2{font-size:21px}.bf-claim-list h3{font-size:17px}.bf-claim-list p{font-size:14px}.bf-empty{padding:30px 20px}.bf-steps{flex-direction:column;text-align:left;gap:13px;margin:25px auto 0;max-width:190px}.bf-empty .bf-btn{width:100%}}@media (prefers-reduced-motion:reduce){.bf-page *{transition:none!important}}@media (forced-colors:active){.bf-status,.bf-plan,.bf-stat-icon,.bf-avatar{border:1px solid currentColor}}.bp-page .bf-header{margin-bottom:30px}.bp-page .bf-identity{align-items:center}.bp-page .bf-identity>div{min-width:0}.bp-page .bf-identity p:last-child{overflow-wrap:anywhere}.bp-page .bf-header>.bf-btn{box-shadow:none}.bp-page h2,.bp-page h3{color:var(--bf-ink)}.bp-page [hidden]{display:none!important}.bp-page select:focus-visible,.bp-page input:focus-visible,.bp-page summary:focus-visible,.bp-page [tabindex]:focus-visible{outline:3px solid #72abef;outline-offset:4px}.bp-section-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:15px}.bp-section-head h2{font-size:22px;letter-spacing:-.4px;line-height:1.3;margin:0}.bp-period{display:inline-flex;align-items:center;gap:8px;font-size:13px;color:#516783;background:#eaf0f8;padding:7px 11px;border-radius:8px;white-space:nowrap}.bp-period:before{content:"";width:6px;height:6px;border-radius:50%;background:#6b8eb7}.bp-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin:0 0 24px}.bp-metric{--bp-color:#326ad2;background:#fff;border:1px solid var(--bf-line);border-radius:18px;padding:20px;min-width:0}.bp-icon{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:12px;background:#edf3ff;color:#3366ba;flex-shrink:0}.bp-metric.is-green .bp-icon,.bp-icon.is-green{background:#e7f4ed;color:#287558}.bp-metric.is-violet .bp-icon,.bp-icon.is-violet{background:#f0ebfb;color:#7757a8}.bp-metric.is-amber .bp-icon,.bp-icon.is-amber{background:#fff3df;color:#926021}.bp-metric dt{display:flex;flex-direction:column;gap:16px;font-size:15px;font-weight:600;line-height:1.4;min-height:99px}.bp-metric dd{margin:10px 0 0}.bp-metric dd>strong{display:block;font-size:38px;line-height:1.15;font-weight:700;letter-spacing:-1px;font-variant-numeric:tabular-nums}.bp-metric-hint{display:block;font-size:12px;line-height:1.5;color:var(--bf-muted);margin-top:8px}.bp-layout{display:grid;grid-template-columns:minmax(0,1.85fr) minmax(300px,1fr);gap:24px;align-items:start}.bp-main,.bp-side{display:grid;gap:22px;min-width:0}.bp-card{padding:26px;border:1px solid var(--bf-line);border-radius:20px;background:#fff;min-width:0}.bp-card-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:26px}.bp-card h2,.bp-materials h2{margin:0;font-size:21px;line-height:1.3;letter-spacing:-.4px}.bp-card-head p{margin:7px 0 0;font-size:14px;line-height:1.5;color:var(--bf-muted)}.bp-chart-control{flex-shrink:0}.bp-chart-control label{display:block;font-size:11px;font-weight:600;color:var(--bf-muted);margin-bottom:5px}.bp-chart-control select{appearance:none;-webkit-appearance:none;min-height:44px;max-width:100%;width:148px;padding:10px 34px 10px 12px;border:1px solid #cad7e9;border-radius:10px;background:#f8faff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234d6380' stroke-width='2'%3E%3Cpath d='m3 6 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 10px center;color:#274768;font:inherit;font-size:14px;cursor:pointer}.bp-chart{--bp-bar:#477ee1}.bp-chart.is-green{--bp-bar:#3c9478}.bp-chart.is-violet{--bp-bar:#9570c2}.bp-chart.is-amber{--bp-bar:#c09339}.bp-chart h3{font-size:14px;font-weight:600;margin:0 0 21px;color:#3a5779}.bp-chart ol{display:grid;gap:20px;list-style:none;margin:0;padding:0}.bp-bar-label{display:flex;justify-content:space-between;gap:12px;font-size:14px;color:var(--bf-muted);margin-bottom:8px}.bp-bar-label strong{color:var(--bf-ink);font-size:16px;font-variant-numeric:tabular-nums}.bp-track{height:13px;border-radius:5px;background:#f0f4f9;overflow:hidden}.bp-track span{display:block;height:100%;background:var(--bp-bar);border-radius:5px}.bp-chart-note{font-size:12px;line-height:1.6;color:#62748e;margin:24px 0 18px;max-width:460px}.bp-data{border-top:1px solid #e5ebf3;padding-top:5px}.bp-page summary{cursor:pointer;min-height:46px;align-content:center;font-size:14px;font-weight:600;line-height:1.5;color:#315eaa;padding:10px 0}.bp-data summary::marker,.bp-manage summary::marker,.bp-coupon summary::marker,.bp-compare summary::marker{font-size:12px;color:#6885ae}.bp-table-scroll{overflow-x:auto;max-width:100%;margin-top:12px;border-radius:8px}.bp-page table{border-collapse:collapse;width:100%;font-size:13px;text-align:left}.bp-page caption{text-align:left;color:#62748e;font-size:12px;padding:0 10px 10px}.bp-page th,.bp-page td{padding:13px 10px;border-bottom:1px solid #e9eef5;white-space:nowrap}.bp-page thead th{color:#536781;background:#f5f8fc;font-size:12px;font-weight:600}.bp-page tbody th{color:#425c7d;font-weight:500}.bp-page td{color:var(--bf-ink);font-variant-numeric:tabular-nums}.bp-page tbody tr:last-child>*{border-bottom:0}.bp-channels{margin:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 24px}.bp-channels>div{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 0;border-bottom:1px solid #e9eef5}.bp-channels dt{display:flex;align-items:center;gap:10px;font-size:14px;color:#4c6481}.bp-channels dt svg{width:19px;height:19px;color:#6d8cb0}.bp-channels dd{margin:0;font-size:22px;line-height:1;font-weight:600;font-variant-numeric:tabular-nums}.bp-footnote{margin:20px 0 0;font-size:12px;line-height:1.6;color:#60718a}.bp-measure-note{font-size:12px;line-height:1.6;color:#62748e;margin:-5px 5px 0}.bp-subscription .bp-card-head{margin-bottom:22px;gap:12px}.bp-subscription .bp-card-head .bf-kicker{font-size:10px;margin:0 0 4px}.bp-status{display:inline-flex;align-items:center;gap:5px;border-radius:8px;padding:6px 9px;background:#eaf6ef;color:#287454;font-size:12px;font-weight:600;line-height:1.4}.bp-status svg{width:15px;height:15px}.bp-status.is-warning{background:#fff3df;color:#8b5a1d}.bp-status.is-neutral{background:#edf3fb;color:#426590}.bp-subscription h3{font-size:20px;line-height:1.35;letter-spacing:-.3px;margin:15px 0 10px}.bp-subscription>p,.bp-manage p{font-size:14px;color:var(--bf-muted);line-height:1.6;margin:8px 0 0}.bp-price{display:flex;align-items:baseline;flex-wrap:wrap;gap:5px;margin:16px 0 0}.bp-price strong{font-size:34px;line-height:1.2;font-weight:700;letter-spacing:-.8px}.bp-price>span{color:var(--bf-muted);font-size:14px}.bp-price s{color:#75839a;font-size:20px;margin-right:5px}.bp-plan-details{border-top:1px solid #e5ebf3;margin:22px 0 0;padding-top:17px;display:grid;gap:13px}.bp-plan-details>div{display:flex;justify-content:space-between;gap:14px;font-size:12px;line-height:1.5}.bp-plan-details dt{color:#64758e;flex-shrink:0}.bp-plan-details dd{color:#334f70;margin:0;text-align:right}.bp-manage{margin-top:18px;border-top:1px solid #e5ebf3;padding-top:5px}.bp-manage p{font-size:13px;margin:4px 0 14px}.bp-subscription .bf-btn{width:100%;margin-top:14px;font-size:14px}.bp-manage .bf-btn{margin:0}.bp-materials{background:#eef7f3;border:1px solid #cde2dc;border-radius:20px;padding:24px;min-width:0;color:#234f40}.bp-materials-top{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:12px}.bp-materials-top>img{width:70px;height:70px;object-fit:contain}.bp-materials .bf-kicker{color:#40725d;font-size:10px;letter-spacing:1px;margin:0 0 8px}.bp-materials h2{color:#254f40;font-size:22px}.bp-materials>p:not(.bf-kicker){color:#49685c;font-size:14px;line-height:1.65;margin:10px 0 20px}.bp-materials .bf-btn{width:100%;font-size:14px;border-color:#c7dfd3;color:#30674e}.bp-chart-empty{padding:10px 15px 30px;text-align:center}.bp-chart-empty .bp-icon{width:52px;height:52px;border-radius:17px;margin-bottom:16px}.bp-chart-empty h3{font-size:19px;line-height:1.4;margin:0 0 9px}.bp-chart-empty p{font-size:14px;color:var(--bf-muted);line-height:1.6;margin:0 auto;max-width:360px}.bp-offer{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(310px,1fr);gap:24px;align-items:start}.bp-benefits{padding:30px}.bp-benefits>h2{font-size:30px;line-height:1.2;letter-spacing:-.8px;margin-top:20px}.bp-benefits>p{color:var(--bf-muted);font-size:16px;line-height:1.6;margin:14px 0 26px}.bp-benefits ul{list-style:none;display:grid;gap:24px;padding:26px 0 0;margin:0;border-top:1px solid #e5ebf3}.bp-benefits li{display:flex;align-items:flex-start;gap:16px}.bp-benefits h3{font-size:17px;line-height:1.4;margin:0 0 5px}.bp-benefits li p{font-size:14px;line-height:1.6;margin:0;color:var(--bf-muted)}.bp-paycard{border-color:#c5d7f2;box-shadow:0 8px 30px #1d457c08;padding:28px}.bp-pay-head{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:20px}.bp-pay-head .bf-kicker{margin:0}.bp-paycard h2{font-size:25px}.bp-paycard .bp-price strong{font-size:46px}.bp-paycard>p:not(.bp-footnote):not(.bp-slots):not(.bp-payment-note){color:var(--bf-muted);font-size:14px;line-height:1.7;margin:10px 0 0}.bp-paycard ul{display:grid;gap:12px;list-style:none;padding:22px 0;margin:20px 0 0;border-top:1px solid #e5ebf3;color:#3d5775;font-size:14px}.bp-paycard li{display:flex;gap:8px;align-items:flex-start}.bp-paycard li svg{width:18px;height:18px;color:#398266;margin-top:2px}.bp-paycard .bf-btn{width:100%;font-size:16px}.bp-page .bf-btn:disabled{background:#e6ebf3;border-color:#e6ebf3;color:#566b86!important;cursor:not-allowed}.bp-coupon{margin:0 0 16px}.bp-coupon summary{font-weight:500}.bp-coupon label{display:block;font-size:14px;margin:5px 0 7px;color:var(--bf-muted)}.bp-coupon input{font:inherit;font-size:16px;min-height:48px;border:1px solid #bdcde1;border-radius:10px;padding:12px;width:100%;background:#f8faff;color:var(--bf-ink);text-transform:uppercase}.bp-payment-note{font-size:12px;text-align:center;color:#60718a;line-height:1.6;margin:12px 0 20px}.bp-slots{background:#f1f6fd;color:#416594;font-size:13px;text-align:center;padding:12px;border-radius:10px;margin:0}.bp-compare{margin-top:24px}.bp-compare>summary{font-size:17px;padding:0;min-height:44px}.bp-compare tbody th{white-space:normal;min-width:180px}@media (min-width:1200px){.bp-activity{min-height:345px}.bp-activity .bp-charts{padding:8px 0 6px}}@media (max-width:1000px){.bp-metrics{gap:12px}.bp-metric{padding:17px}.bp-layout{grid-template-columns:minmax(0,1.6fr) minmax(280px,1fr);gap:18px}.bp-card{padding:22px}.bp-card-head{align-items:flex-start}.bp-activity .bp-card-head{flex-wrap:wrap}.bp-channels{gap:8px 16px}.bp-plan-details>div{flex-direction:column;gap:4px}.bp-plan-details dd{text-align:left}}@media (max-width:800px){.bp-layout{grid-template-columns:minmax(0,1fr)}.bp-side{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.bp-activity .bp-card-head{flex-wrap:nowrap}.bp-offer{grid-template-columns:minmax(0,1fr)}.bp-paycard{max-width:none}.bp-page .bf-header>.bf-btn{margin-left:82px}.bp-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.bp-metric dt{min-height:0;flex-direction:row;align-items:center;gap:12px}.bp-metric dd{margin-top:15px}.bp-metric-hint{min-height:36px}}@media (max-width:560px){.bp-page .bf-header{margin-bottom:26px}.bp-page .bf-header h1{font-size:28px;letter-spacing:-.8px}.bp-page .bf-identity{align-items:flex-start}.bp-page .bf-identity p:last-child{font-size:15px;line-height:1.5;margin-top:9px}.bp-page .bf-header>.bf-btn{margin:18px 0 0;min-height:48px}.bp-section-head h2{font-size:21px}.bp-period{font-size:12px;padding:6px 9px}.bp-metrics{gap:10px;margin-bottom:20px}.bp-metric{padding:16px;border-radius:16px}.bp-metric dt{display:block;font-size:14px;min-height:94px}.bp-metric dt .bp-icon{display:grid;margin-bottom:12px;width:34px;height:34px;border-radius:10px}.bp-metric dt .bp-icon svg{width:19px;height:19px}.bp-metric dd{margin-top:8px}.bp-metric dd>strong{font-size:34px}.bp-metric-hint{font-size:12px;min-height:54px}.bp-main,.bp-side{gap:18px}.bp-card{padding:20px;border-radius:18px}.bp-card h2{font-size:21px}.bp-card-head{gap:14px;margin-bottom:22px}.bp-activity .bp-card-head{flex-wrap:wrap}.bp-card-head p{font-size:14px}.bp-chart-control{width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px}.bp-chart-control label{font-size:13px;margin:0}.bp-chart-control select{font-size:16px;width:154px;min-height:48px}.bp-channels{grid-template-columns:1fr;gap:0}.bp-channels dt{font-size:16px}.bp-channels>div{padding:17px 0}.bp-channels dd{font-size:24px}.bp-footnote,.bp-measure-note{font-size:13px}.bp-side{grid-template-columns:minmax(0,1fr)}.bp-plan-details>div{flex-direction:row;gap:12px;font-size:13px}.bp-plan-details dd{text-align:right}.bp-page summary{font-size:15px;min-height:48px}.bp-subscription .bf-btn,.bp-materials .bf-btn{font-size:16px}.bp-materials{padding:22px;border-radius:18px}.bp-materials>p:not(.bf-kicker){font-size:15px}.bp-benefits>h2{font-size:27px}.bp-benefits li{gap:12px}.bp-benefits ul{gap:22px}.bp-offer{gap:18px}.bp-price strong{font-size:36px}.bp-paycard h2{font-size:25px}.bp-compare{padding:18px}.bp-compare>summary{font-size:16px}}@media (max-width:359px){.bp-section-head{align-items:flex-start;flex-direction:column;gap:8px}.bp-metric{padding:13px}.bp-metric dt{min-height:100px}.bp-metric-hint{min-height:72px}.bp-chart-control{align-items:stretch;flex-direction:column;gap:7px}.bp-chart-control select{width:100%}.bp-plan-details>div{flex-direction:column;gap:4px}.bp-plan-details dd{text-align:left}}@media (forced-colors:active){.bp-icon,.bp-status,.bp-track{border:1px solid currentColor}.bp-track span{background:Highlight}}.bf-account-footer{display:flex;align-items:center;justify-content:space-between;gap:16px 28px;flex-wrap:wrap;margin-top:32px;padding-top:22px;border-top:1px solid var(--bf-line);color:var(--bf-muted);font-size:14px}.bf-account-footer>div{display:flex;gap:12px 24px;flex-wrap:wrap}.bf-account-footer a{display:inline-flex;align-items:center;min-height:44px;color:#385e91;text-decoration:underline;text-underline-offset:4px}.bf-account-footer a:hover{color:var(--bf-blue)}.bf-account-footer a:focus-visible{outline:3px solid var(--bf-blue);outline-offset:4px;border-radius:4px}@media (max-width: 560px){.bf-account-footer{align-items:flex-start;flex-direction:column;gap:8px}}
