/* Sibseti header */
.header{z-index:30;border:0;box-shadow:none}.header__top{background:#f4f4f4}.header__top-inner{height:51px;display:flex;align-items:center}.support-link,.connection-link,.city-trigger{color:#111;text-decoration:none;font-size:16px;font-weight:700}.support-link{text-decoration:underline;text-underline-offset:2px}.connection-link{margin-left:auto;color:#1360f6}.connection-link span{color:#111}.city-trigger{display:flex;align-items:center;gap:8px;margin-left:62px;padding:0;border:0;background:transparent;cursor:pointer;font:700 22px Manrope,Arial,sans-serif}.city-trigger svg{width:22px;height:22px;fill:#282828;stroke:#282828;stroke-width:1.2}.city-trigger svg circle{fill:#fff;stroke:none}.header__inner{height:92px;gap:0}.header__inner--legacy{display:none}.logo--image{display:block;line-height:0;flex:none}.logo--image img{display:block;width:230px;height:auto}.nav--new{display:flex;align-items:center;gap:52px;margin-left:60px;margin-right:auto}.nav--new a{font-size:17px;font-weight:700;white-space:nowrap}.button--blue{border-radius:18px;background:#1761f7;color:#fff;padding:12px 41px;text-transform:none;font-size:19px;letter-spacing:0}.header__button.button--blue{display:inline-flex;align-items:center;height:48px;font-size:17px;white-space:nowrap}.mobile-call{display:none}.menu--new{display:none}.city-panel{position:absolute;z-index:20;inset:51px 0 auto;background:#fff;border-top:1px solid #e5e8ed;box-shadow:0 16px 30px #14213b24;max-height:calc(100vh - 51px);overflow:auto;opacity:0;visibility:hidden;transform:translateY(-12px);transition:opacity .2s,transform .2s,visibility .2s}.header.is-city-open .city-panel{opacity:1;visibility:visible;transform:translateY(0)}.city-panel__inner{padding:28px 0 34px}.city-panel__heading{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:25px}.city-panel__heading p{color:#1672f5;font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin:0 0 3px}.city-panel__heading h2{margin:0;font-size:28px;line-height:1.2}.city-panel__close{width:35px;height:35px;border:0;border-radius:50%;background:#f0f3f8;color:#1d2430;font-size:29px;line-height:1;cursor:pointer}.city-grid{display:grid;grid-template-columns:1.05fr 1.8fr 1fr;gap:45px}.city-grid h3{font-size:17px;margin:0 0 10px}.city-grid section>h3:not(:first-child){margin-top:22px}.city-grid section>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 16px}.city-grid a{font-size:15px;color:#3b4658;text-decoration:none;line-height:1.35}.city-grid a:hover,.city-grid a.is-current{color:#1260f8;text-decoration:underline}
@media(max-width:900px){.header__top-inner{height:51px;width:100%}.support-link{font-size:14px;margin-left:9px}.connection-link{display:none}.city-trigger{margin-left:auto;margin-right:9px;font-size:16px;gap:5px}.city-trigger svg{width:19px;height:19px}.header__inner{height:82px;width:100%;padding:0 11px;position:relative}.logo--image img{width:280px;max-width:calc(100vw - 225px)}.nav--new{display:none;margin:0}.header__button{display:none}.mobile-call{display:grid;place-items:center;width:46px;height:46px;margin-left:auto;border-radius:50%;background:#1761f7;color:#fff}.mobile-call svg{width:25px;height:25px;fill:#fff;stroke:#fff;stroke-width:.7}.menu--new{display:block;width:47px;padding:9px 0;margin-left:13px}.menu--new span{width:36px;height:5px;margin:4px 0;border-radius:5px;background:#1761f7}.header{border-bottom:3px solid #1761f7}.header.is-menu-open .nav--new{display:flex;position:absolute;z-index:25;top:82px;left:0;right:0;padding:15px 18px 19px;background:#fff;box-shadow:0 12px 18px #15203a1f;flex-direction:column;align-items:flex-start;gap:12px}.header.is-menu-open .menu--new span:nth-child(1){transform:translateY(9px) rotate(45deg)}.header.is-menu-open .menu--new span:nth-child(2){opacity:0}.header.is-menu-open .menu--new span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}.city-panel{inset:51px 0 auto;max-height:calc(100vh - 51px)}.city-panel__inner{padding:22px 16px 28px;width:100%}.city-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}.city-grid section:last-child{grid-column:span 2}.city-panel__heading h2{font-size:25px}}
@media(max-width:560px){.logo--image img{width:280px;max-width:calc(100vw - 211px)}.city-grid{grid-template-columns:1fr;gap:25px}.city-grid section:last-child{grid-column:auto}.city-grid section>div{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 12px}.city-panel__heading{margin-bottom:19px}.city-panel__heading h2{font-size:23px}}

@media(max-width:900px){
  .mobile-call svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: phone-ring 2.8s ease-in-out infinite;
    transform-origin: 50% 65%;
  }
}

@keyframes phone-ring {
  0%, 78%, 100% { transform: rotate(0); }
  82% { transform: rotate(-14deg); }
  86% { transform: rotate(12deg); }
  90% { transform: rotate(-9deg); }
  94% { transform: rotate(6deg); }
}

/* Fixed header state */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  transition: background-color .25s ease, box-shadow .25s ease;
}

.header-spacer {
  height: 143px;
}

.header__top {
  height: 51px;
  overflow: hidden;
  transition: height .25s ease, opacity .2s ease;
}

.header__inner,
.logo--image img,
.nav--new,
.button--blue,
.mobile-call,
.menu--new span {
  transition: height .25s ease, width .25s ease, padding .25s ease, margin .25s ease, gap .25s ease, transform .25s ease;
}

@media (min-width:901px) and (max-width:1100px) {
  .logo--image img {
    width: 210px;
  }

  .nav--new {
    gap: 30px;
    margin-left: 36px;
  }

  .nav--new a {
    font-size: 15px;
  }

  .header__button.button--blue {
    padding: 11px 24px;
    font-size: 15px;
  }
}

@media(max-width:900px) {
  .header-spacer {
    height: 136px;
  }
}

/* Support dialog */
.support-link{padding:0;border:0;background:transparent;cursor:pointer;font:inherit}.support-modal{position:fixed;z-index:100;inset:0;display:grid;place-items:center;padding:24px;background:#111827a8;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}.support-modal.is-open{opacity:1;visibility:visible}.support-modal__box{position:relative;isolation:isolate;width:min(500px,100%);min-height:390px;overflow:hidden;border-radius:26px;padding:42px 42px 38px;color:#fff;background:linear-gradient(135deg,#22242b,#17191f);box-shadow:0 25px 70px #070a1280;transform:translateY(14px) scale(.98);transition:transform .22s ease}.support-modal.is-open .support-modal__box{transform:translateY(0) scale(1)}.support-modal__box:before{content:"";position:absolute;z-index:-1;inset:auto -100px -160px auto;width:340px;height:340px;border-radius:50%;background:#1761f7;filter:blur(90px);opacity:.48}.support-modal__art{position:absolute;z-index:-1;right:-76px;bottom:-58px;width:300px;opacity:.8;filter:drop-shadow(0 12px 18px #0007)}.support-modal__art img{display:block;width:100%;height:auto}.support-modal__eyebrow{margin:0 0 8px;color:#b8d2ff;font-size:14px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.support-modal h2{max-width:320px;margin:0;font-size:38px;line-height:1.08;letter-spacing:-1.6px}.support-modal__text{max-width:280px;margin:18px 0 26px;font-size:16px;line-height:1.45}.support-modal__phone{position:relative;display:inline-flex;align-items:center;gap:10px;padding:13px 18px;border-radius:15px;background:#1761f7;color:#fff;text-decoration:none;font-size:21px;font-weight:800;transition:transform .2s ease,background-color .2s ease}.support-modal__phone:hover{background:#2a72ff;transform:translateY(-2px)}.support-modal__phone svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.support-modal__close{position:absolute;z-index:2;top:15px;right:16px;display:grid;place-items:center;width:38px;height:38px;padding:0;border:0;border-radius:50%;background:#ffffff18;color:#fff;font:32px/1 Arial,sans-serif;cursor:pointer;transition:background-color .2s ease}.support-modal__close:hover{background:#ffffff30}.support-modal__close:focus-visible,.support-modal__phone:focus-visible,.support-link:focus-visible{outline:3px solid #1761f7;outline-offset:3px}@media(max-width:560px){.support-modal{padding:16px}.support-modal__box{min-height:440px;padding:34px 25px 28px;border-radius:22px}.support-modal__art{right:-76px;bottom:-32px;width:275px}.support-modal h2{max-width:260px;font-size:32px}.support-modal__text{max-width:235px;font-size:15px}.support-modal__phone{font-size:18px;padding:12px 14px}}

.support-modal__art{z-index:0}.support-modal__box>*:not(.support-modal__art){position:relative;z-index:1}.support-modal__box>.support-modal__close{position:absolute;top:15px;right:16px}

@media(prefers-reduced-motion:reduce) {
  .header,
  .header__top,
  .header__inner,
  .logo--image img,
  .nav--new,
  .button--blue,
  .mobile-call,
  .mobile-call svg,
  .menu--new span {
    transition: none;
    animation: none;
  }
}

/* MAX messenger link */
.header__max{display:grid;place-items:center;flex:none;width:48px;height:48px;margin-left:12px;transition:transform .2s ease}.header__max:hover{transform:translateY(-2px)}.header__max:focus-visible{outline:3px solid #1761f7;outline-offset:3px}.header__max img{width:48px;height:48px;animation:max-nudge 4.8s ease-in-out infinite;transform-origin:50% 55%}

@keyframes max-nudge{0%,78%,100%{transform:translateX(0) rotate(0)}82%{transform:translateX(-2px) rotate(-8deg)}86%{transform:translateX(2px) rotate(8deg)}90%{transform:translateX(-1px) rotate(-5deg)}94%{transform:translateX(1px) rotate(4deg)}}

@media(max-width:1080px){.header-spacer{height:136px}.header__inner{height:82px;width:100%;padding:0 11px;position:relative}.logo--image img{width:240px;max-width:calc(100vw - 202px)}.nav--new,.header__button.button--blue{display:none;margin:0}.header__max{width:46px;height:46px;margin-left:auto}.header__max img{width:46px;height:46px}.mobile-call{display:grid;place-items:center;width:46px;height:46px;margin-left:8px;border-radius:50%;background:#1761f7;color:#fff}.menu--new{display:block;width:47px;padding:9px 0;margin-left:13px}.menu--new span{width:36px;height:5px;margin:4px 0;border-radius:5px;background:#1761f7}.header{border-bottom:3px solid #1761f7}.header.is-menu-open .nav--new{display:flex;position:absolute;z-index:25;top:82px;left:0;right:0;padding:15px 18px 19px;background:#fff;box-shadow:0 12px 18px #15203a1f;flex-direction:column;align-items:flex-start;gap:12px}.header.is-menu-open .menu--new span:nth-child(1){transform:translateY(9px) rotate(45deg)}.header.is-menu-open .menu--new span:nth-child(2){opacity:0}.header.is-menu-open .menu--new span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}}

@media(prefers-reduced-motion:reduce){.header__max,.header__max img{transition:none;animation:none}}
