.expertise-popup-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(28,37,48,.92);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);display:flex;align-items:center;justify-content:center;z-index:10000;padding:2rem 1rem;animation:overlayFadeIn .3s ease-out;overflow:hidden;overscroll-behavior:contain}@keyframes overlayFadeIn{0%{opacity:0}to{opacity:1}}.expertise-popup{position:relative;background:linear-gradient(135deg,#ffffff,#f5f7f9);border-radius:2rem;max-width:950px;width:100%;height:auto;max-height:calc(100vh - 4rem);display:flex;flex-direction:column;box-shadow:0 25px 70px rgba(26,126,183,.25),0 10px 30px rgba(0,0,0,.15);border:2px solid rgba(26,126,183,.15);animation:popupSlideUp .4s cubic-bezier(.34,1.56,.64,1);transform-origin:center;pointer-events:auto}@keyframes popupSlideUp{0%{opacity:0;transform:translateY(40px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.expertise-popup-close{position:absolute;top:1.5rem;right:1.5rem;width:3rem;height:3rem;border-radius:50%;background:linear-gradient(135deg,rgba(26,126,183,.1),rgba(124,179,66,.1));border:2px solid rgba(26,126,183,.25);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .4s cubic-bezier(.34,1.56,.64,1);z-index:10;animation:closeButtonPop .5s ease-out .3s both}@keyframes closeButtonPop{0%{opacity:0;transform:scale(0) rotate(-180deg)}to{opacity:1;transform:scale(1) rotate(0deg)}}.expertise-popup-close svg{font-size:1.75rem;color:var(--brand-blue);transition:all .3s ease}.expertise-popup-close:hover{background:linear-gradient(135deg,var(--brand-blue),var(--brand-blue-light));transform:rotate(90deg) scale(1.1);border-color:var(--brand-blue);box-shadow:0 8px 20px rgba(26,126,183,.3)}.expertise-popup-close:hover svg{color:white;transform:rotate(90deg)}.expertise-popup-content{padding:3rem 3rem 4rem;overflow-y:auto;overflow-x:hidden;flex:1 1;min-height:0;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;pointer-events:auto;position:relative}.expertise-popup-content::-webkit-scrollbar{width:12px}.expertise-popup-content::-webkit-scrollbar-track{background:rgba(26,126,183,.05);border-radius:0 2rem 2rem 0;margin-block:2rem}.expertise-popup-content::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--brand-blue),var(--brand-green));border-radius:10px;border:3px solid transparent;background-clip:content-box}.expertise-popup-content::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,var(--brand-blue-dark),var(--brand-green-dark));border:2px solid rgba(255,255,255,.3)}.expertise-popup-header{text-align:center;margin-bottom:3rem;padding-bottom:2rem;border-bottom:2px solid rgba(26,126,183,.15);position:relative;animation:headerSlideDown .5s ease-out .1s both}@keyframes headerSlideDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.expertise-popup-header:after{content:"";position:absolute;bottom:-2px;left:50%;transform:translateX(-50%);width:100px;height:4px;background:linear-gradient(90deg,var(--brand-blue),var(--brand-green));border-radius:2px;animation:lineExpand .6s ease-out .4s both}@keyframes lineExpand{0%{width:0}to{width:100px}}.expertise-popup-icon{font-size:5rem;margin-bottom:1.5rem;background:linear-gradient(135deg,var(--brand-blue),var(--brand-green));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:inline-block;animation:iconBounce .6s cubic-bezier(.34,1.56,.64,1) .2s both}@keyframes iconBounce{0%{opacity:0;transform:scale(0) rotate(-180deg)}to{opacity:1;transform:scale(1) rotate(0deg)}}.expertise-popup-header h2{font-size:2.5rem;color:var(--text-primary);margin-bottom:.75rem;font-weight:600;animation:titleFadeIn .5s ease-out .3s both}@keyframes titleFadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.expertise-popup-subtitle{font-size:1.1rem;color:var(--brand-blue-light);font-weight:500;margin-top:.5rem;animation:subtitleFadeIn .5s ease-out .4s both}@keyframes subtitleFadeIn{0%{opacity:0}to{opacity:1}}.expertise-popup-body{display:flex;flex-direction:column;gap:2.5rem}.expertise-popup-description{animation:descriptionFadeIn .6s ease-out .5s both}@keyframes descriptionFadeIn{0%{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}.expertise-popup-description p{font-size:1.1rem;line-height:1.8;color:var(--text-primary);text-align:center;max-width:800px;margin:0 auto;padding:1.5rem 2rem;background:linear-gradient(135deg,rgba(26,126,183,.03),rgba(124,179,66,.03));border-radius:1rem;border:1px solid rgba(26,126,183,.08)}.expertise-popup-features{animation:sectionFadeIn .6s ease-out .6s both}.expertise-popup-process{animation:sectionFadeIn .6s ease-out .7s both}@keyframes sectionFadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.expertise-popup-features h3,.expertise-popup-process h3{font-size:1.75rem;color:var(--text-primary);margin-bottom:1.5rem;font-weight:600;display:flex;align-items:center;gap:.75rem}.expertise-popup-features h3:before{content:"";width:5px;height:2.5rem;background:linear-gradient(180deg,var(--brand-blue),var(--brand-green));border-radius:3px;box-shadow:0 2px 8px rgba(26,126,183,.3)}.expertise-popup-features ul{list-style:none;padding:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));grid-gap:1rem;gap:1rem}.expertise-popup-features li{padding:1.5rem 1.75rem;background:linear-gradient(135deg,rgba(26,126,183,.05),rgba(124,179,66,.03));border-left:4px solid var(--brand-blue);border-radius:1rem;font-size:1rem;color:var(--text-primary);transition:all .4s cubic-bezier(.34,1.56,.64,1);position:relative;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.05);animation:featureSlideIn .5s ease-out both;animation-delay:calc(.7s + var(--item-index) * .1s)}.expertise-popup-features li:first-child{--item-index:0}.expertise-popup-features li:nth-child(2){--item-index:1}.expertise-popup-features li:nth-child(3){--item-index:2}.expertise-popup-features li:nth-child(4){--item-index:3}.expertise-popup-features li:nth-child(5){--item-index:4}.expertise-popup-features li:nth-child(6){--item-index:5}@keyframes featureSlideIn{0%{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}.expertise-popup-features li:before{content:"";position:absolute;top:0;left:0;width:0;height:100%;background:linear-gradient(90deg,rgba(26,126,183,.1),rgba(124,179,66,.1));transition:width .4s ease;z-index:-1}.expertise-popup-features li:hover{background:linear-gradient(135deg,rgba(26,126,183,.12),rgba(124,179,66,.08));border-left-color:var(--brand-green);transform:translateX(8px) translateY(-2px);box-shadow:0 8px 20px rgba(26,126,183,.15)}.expertise-popup-features li:hover:before{width:100%}.expertise-popup-process h3:before{content:"";width:5px;height:2.5rem;background:linear-gradient(180deg,var(--brand-green),var(--brand-blue));border-radius:3px;box-shadow:0 2px 8px rgba(124,179,66,.3)}.process-steps{display:flex;flex-direction:column;gap:1.5rem;position:relative}.process-steps:before{content:"";position:absolute;left:1.5rem;top:3rem;bottom:3rem;width:3px;background:linear-gradient(180deg,var(--brand-blue),var(--brand-green));border-radius:2px;opacity:.2}.process-step{display:flex;gap:1.5rem;align-items:flex-start;animation:stepSlideIn .6s ease-out both;animation-delay:calc(.8s + var(--step-index) * .15s)}.process-step:first-child{--step-index:0}.process-step:nth-child(2){--step-index:1}.process-step:nth-child(3){--step-index:2}.process-step:nth-child(4){--step-index:3}@keyframes stepSlideIn{0%{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:translateX(0)}}.step-number{min-width:3.5rem;height:3.5rem;border-radius:50%;background:linear-gradient(135deg,var(--brand-blue),var(--brand-blue-light));color:white;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;box-shadow:0 6px 20px rgba(26,126,183,.3);position:relative;z-index:1;transition:all .3s ease}.process-step:hover .step-number{transform:scale(1.1) rotate(1turn);box-shadow:0 8px 25px rgba(26,126,183,.4)}.step-content{flex:1 1;padding:.75rem 1.5rem;background:linear-gradient(135deg,rgba(26,126,183,.04),rgba(124,179,66,.02));border-radius:1rem;border:1px solid rgba(26,126,183,.1);transition:all .3s ease}.process-step:hover .step-content{background:linear-gradient(135deg,rgba(26,126,183,.08),rgba(124,179,66,.05));transform:translateX(5px);box-shadow:0 4px 15px rgba(26,126,183,.1)}.step-content h4{font-size:1.25rem;color:var(--text-primary);margin-bottom:.5rem;font-weight:600}.step-content p{font-size:1rem;color:var(--text-primary);line-height:1.7;opacity:.85}@media (max-width:1000px){.expertise-popup{max-height:calc(100vh - 3rem)}.expertise-popup-content{padding:2.5rem 2rem}.expertise-popup-header h2{font-size:2rem}.expertise-popup-icon{font-size:3.5rem}.expertise-popup-features ul{grid-template-columns:1fr}}@media (max-width:600px){.expertise-popup-overlay{padding:1rem .5rem}.expertise-popup{border-radius:1.25rem;max-height:calc(100vh - 2rem)}.expertise-popup-content{padding:2rem 1.5rem 3rem}.expertise-popup-content::-webkit-scrollbar{width:6px}.expertise-popup-close{top:1rem;right:1rem;width:2.25rem;height:2.25rem}.expertise-popup-close svg{font-size:1.25rem}.expertise-popup-header{margin-bottom:2rem;padding-bottom:1.5rem}.expertise-popup-header h2{font-size:1.75rem}.expertise-popup-icon{font-size:3rem;margin-bottom:1rem}.expertise-popup-description p,.expertise-popup-subtitle{font-size:1rem}.expertise-popup-features h3,.expertise-popup-process h3{font-size:1.5rem;margin-bottom:1.25rem}.expertise-popup-features h3:before,.expertise-popup-process h3:before{height:1.5rem}.expertise-popup-features li{padding:1rem 1.25rem;font-size:.95rem}.step-number{min-width:2.5rem;height:2.5rem}.step-content h4,.step-number{font-size:1.1rem}.step-content p{font-size:.95rem}.process-steps{gap:1.25rem}}@media (max-width:400px){.expertise-popup-content{padding:1.75rem 1.25rem 2.5rem}.expertise-popup-header h2{font-size:1.5rem}.expertise-popup-icon{font-size:2.5rem}.expertise-popup-features h3,.expertise-popup-process h3{font-size:1.35rem}.step-number{min-width:2.25rem;height:2.25rem;font-size:1rem}.process-step{gap:1rem}}