:root{
--p4y-bg: rgba(255,255,255,0.84);
--p4y-surface: rgba(255,255,255,0.66);
--p4y-surface-strong: rgba(255,255,255,0.92);
--p4y-border: rgba(255,255,255,0.50);
--p4y-border-soft: rgba(15,23,42,0.06);
--p4y-text: #0f172a;
--p4y-muted: #64748b;
--p4y-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
--p4y-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
--p4y-radius: 24px;
--p4y-radius-lg: 30px;
--p4y-accent: linear-gradient(180deg, #d7b24d, #b68f21);
--p4y-accent-soft: linear-gradient(180deg, rgba(215,178,77,0.20), rgba(182,143,33,0.12));
--p4y-ai: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(246,248,251,0.82));
--p4y-user: linear-gradient(180deg, rgba(18, 138, 255, 0.96), rgba(6, 102, 214, 0.96));
--p4y-blur: blur(22px) saturate(180%);
--p4y-bubble-bottom-desktop: 14px;
--p4y-popup-bottom-desktop: 84px;
--p4y-bubble-bottom-mobile: calc(14px + env(safe-area-inset-bottom, 0px));
--p4y-popup-bottom-mobile: calc(84px + env(safe-area-inset-bottom, 0px));
--p4y-vh: 100vh;
--p4y-vv-top: 0px;
--p4y-kb-offset: 0px;
}
#p4y-chat,
#p4y-chat *{
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
}
html.p4y-chat-open,
body.p4y-chat-open{
overflow: hidden !important;
height: 100% !important;
overscroll-behavior: none !important;
}
#p4y-chat-window{
display: none;
visibility: hidden;
opacity: 0;
pointer-events: none;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: var(--p4y-vh, 100vh);
max-height: var(--p4y-vh, 100vh);
background:
radial-gradient(circle at 16% 14%, rgba(255,255,255,0.98), transparent 24%),
radial-gradient(circle at 82% 86%, rgba(228,194,123,0.12), transparent 28%),
radial-gradient(circle at 50% 0%, rgba(255,255,255,0.55), transparent 18%),
linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
border: 1px solid var(--p4y-border);
border-radius: var(--p4y-radius-lg);
box-shadow: var(--p4y-shadow);
backdrop-filter: var(--p4y-blur);
-webkit-backdrop-filter: var(--p4y-blur);
z-index: 999999;
resize: none !important;
display: flex;
flex-direction: column;
overflow: hidden;
contain: none;
overscroll-behavior: none;
transform: none;
transition: opacity .16s ease, visibility .16s ease;
will-change: opacity, transform;
}
#p4y-chat-window.show{
visibility: visible;
opacity: 1;
pointer-events: auto;
transform: none;
}
.p4y-chat-header{
position: sticky;
top: 0;
z-index: 120;
flex: 0 0 auto;
padding: 10px 14px;
min-height: 58px;
border-bottom: 1px solid rgba(15,23,42,0.06);
background: rgba(255,255,255,0.96);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
display: flex;
align-items: center;
gap: 12px;
box-shadow: 0 1px 0 rgba(15,23,42,0.03);
}
.p4y-avatar{
width: 36px;
height: 36px;
flex: 0 0 36px;
position: relative;
border-radius: 50%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.p4y-avatar img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.p4y-avatar .p4y-badge{
display: none !important;
}
.p4y-user-info{
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
}
.p4y-name{
font-size: 16px;
font-weight: 750;
color: var(--p4y-text);
letter-spacing: -0.02em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.p4y-status{
font-size: 12px;
color: var(--p4y-muted);
margin-left: 0;
margin-top: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#p4y-chat-close{
margin-left: auto;
cursor: pointer;
font-size: 18px;
line-height: 1;
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(248,250,252,0.96);
border: 1px solid rgba(15,23,42,0.05);
border-radius: 999px;
color: #334155;
box-shadow: 0 6px 18px rgba(15,23,42,0.06);
-webkit-appearance: none;
appearance: none;
touch-action: manipulation;
}
#p4y-chat-messages{
flex: 1 1 auto;
min-height: 0;
padding: 16px 14px 18px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
display: flex;
flex-direction: column;
gap: 12px;
justify-content: flex-start;
align-items: stretch;
background:
radial-gradient(circle at top, rgba(255,255,255,0.78), transparent 34%),
linear-gradient(180deg, rgba(255,255,255,0.30), rgba(241,245,249,0.14));
overscroll-behavior: contain;
touch-action: pan-y;
scroll-behavior: smooth;
}
#p4y-chat-window.empty #p4y-chat-messages{
padding-top: 20px;
}
#p4y-chat-messages > .ai:first-child{
margin-top: 4px;
max-width: min(86%, 340px);
}
#p4y-chat-messages::-webkit-scrollbar{
width: 8px;
}
#p4y-chat-messages::-webkit-scrollbar-thumb{
background: rgba(100,116,139,0.18);
border-radius: 999px;
}
#p4y-chat-messages::-webkit-scrollbar-track{
background: transparent;
}
@keyframes p4y-pop{
0%{ opacity:0; transform: translateY(8px) scale(.985); }
60%{ opacity:1; transform: translateY(-1px) scale(1.01); }
100%{ opacity:1; transform: translateY(0) scale(1); }
}
.user{
align-self: flex-end;
max-width: 82%;
padding: 12px 14px;
border-radius: 20px 20px 6px 20px;
font-size: 15px;
line-height: 1.38;
word-break: break-word;
position: relative;
color: #1e293b;
background:
linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08)),
linear-gradient(180deg, #E4C27B, #d4af37) !important;
border: 1px solid rgba(255,255,255,0.22) !important;
box-shadow:
0 10px 24px rgba(0,0,0,0.14),
inset 0 1px 0 rgba(255,255,255,0.35) !important;
backdrop-filter: blur(14px) saturate(180%);
-webkit-backdrop-filter: blur(14px) saturate(180%);
animation: p4y-pop .22s ease;
}
.user::before{
content:"";
position:absolute;
inset: 0;
border-radius: inherit;
background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 45%) !important;
pointer-events:none;
}
.user::after{
display: none !important;
}
.ai{
align-self: flex-start;
max-width: 82%;
padding: 12px 14px;
border-radius: 20px 20px 20px 6px;
font-size: 15px;
line-height: 1.42;
word-break: break-word;
position: relative;
color: #0f172a !important;
background:
linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,248,251,0.90)) !important;
border: 1px solid rgba(15,23,42,0.05) !important;
box-shadow:
0 8px 18px rgba(15,23,42,0.08),
inset 0 1px 0 rgba(255,255,255,0.70) !important;
backdrop-filter: blur(14px) saturate(180%);
-webkit-backdrop-filter: blur(14px) saturate(180%);
animation: p4y-pop .22s ease;
}
.ai::before{
content:"";
position:absolute;
inset: 0;
border-radius: inherit;
background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 45%) !important;
pointer-events:none;
}
.ai::after{
display: none !important;
}
.typing{
align-self: flex-start;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 9px 12px;
background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(243,246,250,0.82));
border: 1px solid rgba(255,255,255,0.68);
border-radius: 18px;
box-shadow: 0 10px 24px rgba(15,23,42,0.06);
color: #64748b;
font-size: 13px;
backdrop-filter: blur(14px) saturate(180%);
-webkit-backdrop-filter: blur(14px) saturate(180%);
animation: p4y-pop .18s ease;
}
.typing .dots{
display: inline-flex;
gap: 6px;
}
.typing .dots span{
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(15,23,42,0.24);
animation: p4y-dot 1s infinite;
}
@keyframes p4y-dot{
0%{ transform: translateY(0); opacity: .55; }
50%{ transform: translateY(-6px); opacity: 1; }
100%{ transform: translateY(0); opacity: .55; }
}
.p4y-chat-input{
position: sticky;
bottom: 0;
z-index: 120;
flex: 0 0 auto;
display: flex;
gap: 10px;
align-items: center;
padding: 10px 12px;
padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
border-top: 1px solid rgba(15,23,42,0.05);
background: rgba(255,255,255,0.97);
-webkit-backdrop-filter: blur(20px) saturate(180%);
backdrop-filter: blur(20px) saturate(180%);
box-shadow: 0 -1px 0 rgba(15,23,42,0.03);
}
.p4y-chat-input input,
#p4y-chat-text{
flex: 1;
min-width: 0;
border: 1px solid rgba(226,232,240,0.9);
background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,252,0.96));
padding: 11px 16px;
border-radius: 22px;
font-size: 16px;
height: 48px;
outline: none;
-webkit-appearance: none;
appearance: none;
-webkit-text-size-adjust: 100%;
color: #0f172a;
box-shadow:
0 4px 14px rgba(15,23,42,0.04),
inset 0 1px 0 rgba(255,255,255,0.9);
}
.p4y-chat-input input::placeholder,
#p4y-chat-text::placeholder{
color: #94a3b8;
}
.p4y-chat-input input:focus,
#p4y-chat-text:focus{
box-shadow:
0 12px 28px rgba(10,132,255,0.12),
inset 0 1px rgba(255,255,255,0.82);
}
#p4y-chat-send{
width: 44px;
height: 44px;
background: transparent;
box-shadow: none;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex: 0 0 44px;
padding: 0;
touch-action: manipulation;
}
#p4y-chat-send:not(.enabled){
opacity: 0.55;
transform: scale(.98);
box-shadow: none;
}
#p4y-chat-send svg{
width: 22px;
height: 22px;
display: block;
fill: #0f172a;
}
#p4y-chat-bubble{
position: fixed;
left: 16px;
bottom: var(--p4y-bubble-bottom-desktop);
width: 64px;
height: 64px;
border-radius: 50%;
background:
linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35)),
linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.06));
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);
border: 1px solid rgba(212,175,55,0.45);
box-shadow:
0 10px 28px rgba(0,0,0,0.18),
0 0 0 1px rgba(255,255,255,0.4) inset;
display: flex;
align-items: center;
justify-content: center;
z-index: 13000;
cursor: pointer;
touch-action: manipulation;
transition: transform .2s ease, box-shadow .2s ease;
}
.p4y-chat-circle{
position: relative;
}
#p4y-chat-bubble::after,
.p4y-chat-circle::after{
content: none !important;
display: none !important;
}
.p4y-bubble-icon,
.p4y-bubble-icon svg,
#p4y-chat-bubble svg{
pointer-events: none;
}
.p4y-bubble-icon{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.p4y-bubble-icon svg{
width: 76%;
height: 76%;
display: block;
filter:
drop-shadow(0 2px 4px rgba(0,0,0,0.25))
drop-shadow(0 0 6px rgba(212,175,55,0.25));
}
@media (hover:hover){
#p4y-chat-bubble:hover{
transform: scale(1.08);
box-shadow:
0 18px 40px rgba(0,0,0,0.28),
0 0 0 10px rgba(212,175,55,0.08);
}
}
@keyframes p4y-pulse {
0% { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(182,143,33,0.20); }
70% { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 10px rgba(182,143,33,0); }
100% { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(182,143,33,0); }
}
.p4y-chat-popup{
position: fixed;
left: 20px;
bottom: var(--p4y-popup-bottom-desktop);
max-width: min(300px, calc(100vw - 40px));
background: rgba(255,255,255,0.26) !important;
backdrop-filter: blur(18px) saturate(180%);
-webkit-backdrop-filter: blur(18px) saturate(180%);
border: 1px solid rgba(255,255,255,0.52) !important;
border-radius: 18px;
padding: 10px 14px;
font-size: 14px;
color: #111;
box-shadow: 0 10px 28px rgba(0,0,0,0.18);
opacity: 0;
transform: translateY(8px) scale(.98);
transition: opacity 0.25s ease, transform 0.25s ease;
z-index: 12999;
}
.p4y-chat-popup.show{
opacity: 1;
transform: translateY(0) scale(1);
}
.cc_banner,
.cc-banner,
.cookie-consent,
.cc-window,
#cookie-consent,
.cookie-banner,
.cc-banner-wrapper{
z-index: 1000 !important;
position: fixed !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
}
@media (min-width:768px){
html.p4y-chat-open,
body.p4y-chat-open{
overflow: auto !important;
height: auto !important;
touch-action: auto !important;
}
#p4y-chat-window{
width: min(390px, calc(100vw - 40px));
height: clamp(540px, 72vh, 700px);
max-height: calc(100vh - 40px);
right: 20px;
left: auto;
bottom: 20px;
top: auto;
border-radius: 28px;
}
.p4y-chat-header{
border-radius: 28px 28px 0 0;
cursor: grab;
padding-top: 10px;
}
.p4y-chat-input{
border-radius: 0 0 28px 28px;
}
#p4y-chat-messages{
padding-bottom: 18px;
}
#p4y-chat-bubble{
position: fixed;
left: 16px;
bottom: var(--p4y-bubble-bottom-desktop);
width: 64px;
height: 64px;
border-radius: 50%;
background:
linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.35)),
radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 60%),
linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05));
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border: 1px solid rgba(212,175,55,0.45);
box-shadow:
0 12px 30px rgba(0,0,0,0.22),
inset 0 1px 0 rgba(255,255,255,0.6),
0 0 0 1px rgba(255,255,255,0.25);
display: flex;
align-items: center;
justify-content: center;
z-index: 13000;
cursor: pointer;
transition: all .2s ease;
}
.p4y-chat-popup{
bottom: var(--p4y-popup-bottom-desktop);
}
}
@media (max-width:767px){
html.p4y-chat-open,
body.p4y-chat-open{
overflow: hidden !important;
height: 100% !important;
touch-action: none !important;
}
#p4y-chat-window{
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: var(--p4y-vh, 100vh);
max-height: var(--p4y-vh, 100vh);
min-height: 100dvh;
border-radius: 0;
border-left: 0;
border-right: 0;
border-top: 0;
}
.p4y-chat-header{
padding-top: calc(10px + env(safe-area-inset-top, 0px));
min-height: calc(58px + env(safe-area-inset-top, 0px));
}
#p4y-chat-messages{
padding: 16px 14px 18px;
}
.p4y-chat-input{
padding: 10px 12px;
padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}
.p4y-chat-popup{
left: 12px;
right: 12px;
max-width: calc(100vw - 24px);
bottom: calc(var(--p4y-popup-bottom-mobile));
}
#p4y-chat-bubble{
left: 12px;
bottom: var(--p4y-bubble-bottom-mobile);
}
}
@media (max-width:360px){
.p4y-name{ font-size: 15px; }
.p4y-status{ font-size: 11px; }
.p4y-chat-input{
gap: 8px;
padding: 10px;
padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 6px);
}
.p4y-chat-input input,
#p4y-chat-text{
height: 46px;
padding: 10px 12px;
font-size: 16px;
}
}
#p4y-chat-window.show .p4y-chat-header,
#p4y-chat-window.show #p4y-chat-messages,
#p4y-chat-window.show .p4y-chat-input{
animation: p4y-pop .18s ease;
}
@supports (-webkit-touch-callout: none){
body.p4y-chat-open{
position: fixed !important;
overflow: hidden !important;
width: 100%;
}
}
html, body{
overscroll-behavior: none;
}
#p4y-chat-messages{
overscroll-behavior: contain;
}
@media (min-width:768px){
.p4y-avatar .p4y-badge,
.p4y-avatar::before,
.p4y-avatar::after,
.p4y-avatar img::before,
.p4y-avatar img::after{
display: none !important;
content: none !important;
opacity: 0 !important;
visibility: hidden !important;
background: transparent !important;
box-shadow: none !important;
border: 0 !important;
}
} #p4y-chat-window,
#p4y-chat-messages,
.p4y-chat-input,
#p4y-chat-text,
#p4y-chat-close,
#p4y-chat-send{
-webkit-touch-callout: none;
}
#p4y-chat-window{
touch-action: pan-y;
}
#p4y-chat-text{
transform: translateZ(0);
}
@media (max-width:767px){
#p4y-chat-window{
inset: 0 !important;
width: 100% !important;
height: var(--p4y-vh, 100dvh) !important;
max-height: var(--p4y-vh, 100dvh) !important;
}
#p4y-chat-messages{
overscroll-behavior-y: contain;
-webkit-overflow-scrolling: touch;
}
.p4y-chat-input{
padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}
}.p4y-fhf-header-wrap,
.p4y-fhf-footer,
.p4y-fhf-header-wrap * ,
.p4y-fhf-footer * {
box-sizing: border-box;
}
.p4y-fhf-header-wrap {
position: fixed;
top: var(--p4y-fhf-top-offset, 28px) !important;
left: 0;
width: 100%;
z-index: 9999;
pointer-events: none;
padding: 0 var(--p4y-fhf-outer-side-padding, 38px);
}
.p4y-fhf-header-shell {
max-width: var(--p4y-fhf-container-width, 1540px);
margin: 0 auto;
pointer-events: auto;
}
.p4y-fhf-header-inner {
min-height: var(--p4y-fhf-header-height, 72px);
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 28px;
padding: 10px 14px 10px 22px;
border-radius: var(--p4y-fhf-radius, 30px);
background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03)), linear-gradient(180deg, rgba(31,41,55,0.26), rgba(31,41,55,0.12)), var(--p4y-fhf-bg, rgba(46,58,76,0.24));
backdrop-filter: blur(var(--p4y-fhf-blur, 22px)) saturate(1.45) brightness(1.04);
-webkit-backdrop-filter: blur(var(--p4y-fhf-blur, 22px)) saturate(1.45) brightness(1.04);
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
border: 1px solid rgba(255, 255, 255, 0.26);
transition: transform .28s ease, background .28s ease, min-height .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.p4y-fhf-header-wrap.is-transparent .p4y-fhf-header-inner {
background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03)), linear-gradient(180deg, rgba(31,41,55,0.26), rgba(31,41,55,0.12)), var(--p4y-fhf-bg, rgba(46,58,76,0.24));
}
.p4y-fhf-header-wrap.is-scrolled .p4y-fhf-header-inner {
background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.05)), linear-gradient(180deg, rgba(15,23,42,0.24), rgba(15,23,42,0.12)), var(--p4y-fhf-bg-scroll, rgba(34,44,58,0.34));
box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255,255,255,0.18);
}
.p4y-fhf-header-wrap.has-shrink.is-scrolled .p4y-fhf-header-inner {
min-height: calc(var(--p4y-fhf-header-height, 74px) - 8px);
transform: translateY(-2px) scale(.985);
}
.p4y-fhf-logo {
display: inline-flex;
align-items: center;
color: var(--p4y-fhf-text, #fff);
text-decoration: none;
width: min(var(--p4y-fhf-logo-width, 220px), 100%);
max-width: 100%;
flex-shrink: 0;
overflow: hidden;
}
.p4y-fhf-logo img {
display: block;
width: auto;
max-width: min(var(--p4y-fhf-logo-width, 280px), 100%);
max-height: var(--p4y-fhf-logo-max-height, 48px);
height: auto;
object-fit: contain;
}
.p4y-fhf-footer-logo img {
display: block;
width: auto;
max-width: min(var(--p4y-fhf-footer-logo-width, 220px), 100%);
max-height: var(--p4y-fhf-footer-logo-max-height, 36px);
height: auto;
object-fit: contain;
}
.p4y-fhf-logo-text {
font-size: 24px;
font-weight: 800;
line-height: 1;
color: var(--p4y-fhf-text, #fff);
}
.p4y-fhf-nav {
min-width: 0;
flex: 1 1 auto;
display: flex;
justify-content: center;
}
.p4y-fhf-menu,
.p4y-fhf-menu ul,
.p4y-fhf-mobile-menu,
.p4y-fhf-footer-menu,
.p4y-fhf-footer-links {
list-style: none;
margin: 0;
padding: 0;
}
.p4y-fhf-menu {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
justify-content: center;
}
.p4y-fhf-menu > li {
position: relative;
}
.p4y-fhf-menu > li::after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 100%;
height: 10px;
}
.p4y-fhf-menu > li > a {
color: var(--p4y-fhf-text, #fff);
text-decoration: none;
font-size: var(--p4y-fhf-menu-font, 13px);
font-weight: 500;
line-height: 1;
padding: 8px 4px;
display: inline-flex;
align-items: center;
transition: opacity .2s ease, color .2s ease;
}
.p4y-fhf-menu > li.current-menu-item > a,
.p4y-fhf-menu > li > a:hover,
.p4y-fhf-menu > li.current-menu-ancestor > a {
color: #fff;
opacity: 1;
}
.p4y-fhf-menu > li > a {
opacity: .92;
}
.p4y-fhf-menu .sub-menu {
position: absolute;
top: calc(100% + 4px);
left: 0;
min-width: 220px;
background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)), rgba(21, 28, 38, 0.82);
backdrop-filter: blur(calc(var(--p4y-fhf-blur, 22px) + 2px)) saturate(1.4);
-webkit-backdrop-filter: blur(calc(var(--p4y-fhf-blur, 22px) + 2px)) saturate(1.4);
border: 1px solid rgba(255,255,255,.16);
border-radius: 18px;
padding: 8px;
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: all .22s ease;
box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.p4y-fhf-menu li:hover > .sub-menu,
.p4y-fhf-menu li:focus-within > .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.p4y-fhf-menu .sub-menu a {
display: block;
padding: 10px 12px;
border-radius: 12px;
color: var(--p4y-fhf-text, #fff);
text-decoration: none;
opacity: .9;
}
.p4y-fhf-menu .sub-menu a:hover {
background: rgba(255,255,255,.06);
opacity: 1;
}
.p4y-fhf-right {
display: flex;
align-items: center;
gap: 14px;
flex-shrink: 0;
margin-left: auto;
}
.p4y-fhf-phone {
text-decoration: none;
color: var(--p4y-fhf-text, #fff);
display: flex;
flex-direction: column;
align-items: center;
line-height: 1.05;
gap: var(--p4y-fhf-phone-gap, 3px);
}
.p4y-fhf-phone-label {
font-size: var(--p4y-fhf-phone-label-size, 10px);
font-weight: 700;
opacity: .92;
}
.p4y-fhf-phone-number {
font-size: var(--p4y-fhf-phone-number-size, 15px);
font-weight: 800;
letter-spacing: .01em;
}
.p4y-fhf-phone:hover,
.p4y-fhf-phone:focus,
.p4y-fhf-phone:active {
color: var(--p4y-fhf-text, #fff);
text-decoration: none;
transform: none;
background: transparent;
}
.p4y-fhf-phone-mobile,
.p4y-fhf-cta-mobile {
display: none;
}
.p4y-fhf-cta,
.p4y-fhf-mobile-cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
min-height: 44px;
padding: 7px 12px 7px 18px;
border-radius: 999px;
background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)), var(--p4y-fhf-accent, #1f75ff);
color: #fff;
text-decoration: none;
font-size: 17px;
font-weight: 800;
line-height: 1;
box-shadow: 0 12px 26px rgba(31, 117, 255, 0.22), inset 0 1px 0 rgba(255,255,255,0.18);
}
.p4y-fhf-cta-icon {
width: 32px;
height: 32px;
border-radius: 999px;
background: #fff;
color: var(--p4y-fhf-accent, #1f75ff);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 900;
}
.p4y-fhf-burger {
display: none;
appearance: none;
border: 0;
padding: 0;
margin: 0;
background: transparent;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 5px;
cursor: pointer;
}
.p4y-fhf-burger span {
display: block;
width: 22px;
height: 2px;
border-radius: 999px;
background: #fff;
}
.p4y-fhf-mobile-panel {
display: none;
margin-top: 10px;
border-radius: 24px;
background: rgba(31, 35, 43, 0.97);
backdrop-filter: blur(calc(var(--p4y-fhf-blur, 22px) + 2px)) saturate(1.4);
-webkit-backdrop-filter: blur(calc(var(--p4y-fhf-blur, 22px) + 2px)) saturate(1.4);
border: 1px solid rgba(255,255,255,.16);
padding: 14px;
box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.p4y-fhf-mobile-panel.is-open {
display: block;
}
.p4y-fhf-mobile-menu li a {
display: block;
padding: 12px 10px;
color: #fff;
text-decoration: none;
border-radius: 12px;
}
.p4y-fhf-mobile-menu .sub-menu {
padding-left: 10px;
}
.p4y-fhf-mobile-menu li a:hover {
background: rgba(255,255,255,.06);
}
.p4y-fhf-mobile-bottom {
display: flex;
flex-direction: column;
gap: 12px;
padding-top: 12px;
margin-top: 12px;
border-top: 1px solid rgba(255,255,255,.08);
}
.p4y-fhf-mobile-phone {
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: 700;
}
.p4y-fhf-header-spacer {
height: calc(var(--p4y-fhf-header-height, 74px) + (var(--p4y-fhf-top-offset, 18px) * 2));
}
.p4y-fhf-footer {
background: var(--p4y-fhf-footer-bg, #04070d);
color: var(--p4y-fhf-footer-text, #f5f7fb);
margin-top: 70px;
}
.p4y-fhf-footer a {
color: var(--p4y-fhf-footer-text, #f5f7fb);
text-decoration: none;
}
.p4y-fhf-footer-inner {
max-width: var(--p4y-fhf-container-width, 1540px);
margin: 0 auto;
padding: 84px 24px 74px;
display: grid;
grid-template-columns: minmax(280px, 1.2fr) minmax(0, 1fr);
gap: 44px;
}
.p4y-fhf-footer-brand {
display: flex;
flex-direction: column;
gap: var(--p4y-fhf-menu-gap, 18px);
}
.p4y-fhf-footer-company {
color: var(--p4y-fhf-footer-muted, #b5bdd0);
margin: 0;
max-width: 520px;
line-height: 1.7;
}
.p4y-fhf-footer-meta {
color: var(--p4y-fhf-footer-muted, #b5bdd0);
line-height: 1.75;
}
.p4y-fhf-footer-meta p {
margin: 0 0 10px;
}
.p4y-fhf-legal-links a {
color: var(--p4y-fhf-footer-text, #f5f7fb);
opacity: .95;
}
.p4y-fhf-footer-cols {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 26px;
}
.p4y-fhf-footer-col {
padding-left: 34px;
position: relative;
}
.p4y-fhf-footer-col:not(:first-child)::before,
.p4y-fhf-footer-col:first-child::before {
content: "";
position: absolute;
left: 0;
top: 6px;
bottom: 6px;
width: 1px;
background: rgba(255,255,255,.1);
}
.p4y-fhf-footer-col h3 {
color: var(--p4y-fhf-footer-text, #f5f7fb);
font-size: 18px;
line-height: 1.2;
margin: 0 0 18px;
font-weight: 800;
}
.p4y-fhf-footer-menu li,
.p4y-fhf-footer-links li {
margin-bottom: 14px;
}
.p4y-fhf-footer-menu a,
.p4y-fhf-footer-links a,
.p4y-fhf-contact-links li {
color: var(--p4y-fhf-footer-muted, #b5bdd0);
line-height: 1.55;
transition: color .2s ease, opacity .2s ease;
}
.p4y-fhf-footer-menu a:hover,
.p4y-fhf-footer-links a:hover {
color: var(--p4y-fhf-footer-text, #f5f7fb);
}
@media (max-width: 1220px) {
.p4y-fhf-phone-desktop {
display: none;
}
.p4y-fhf-menu > li > a {
font-size: var(--p4y-fhf-phone-number-size, 15px);
padding-inline: 8px;
}
}
@media (max-width: 980px) {
.p4y-fhf-header-wrap {
padding: 0 var(--p4y-fhf-outer-side-padding-mobile, 10px);
}
.p4y-fhf-header-inner {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
min-height: var(--p4y-fhf-header-height-mobile, 56px);
padding: var(--p4y-fhf-pad-y-mobile, 7px) var(--p4y-fhf-pad-x-mobile, 10px);
gap: 12px;
backdrop-filter: blur(16px) saturate(1.25) brightness(1.02);
-webkit-backdrop-filter: blur(16px) saturate(1.25) brightness(1.02);
}
.p4y-fhf-nav,
.p4y-fhf-cta-desktop,
.p4y-fhf-phone-desktop {
display: none;
}
.p4y-fhf-header-wrap.hide-cta-mobile .p4y-fhf-cta-mobile {
display: none;
}
.p4y-fhf-header-wrap.show-cta-mobile .p4y-fhf-cta-mobile {
display: inline-flex;
}
.p4y-fhf-phone-mobile {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
align-items: center;
text-align: center;
white-space: nowrap;
pointer-events: auto;
}
.p4y-fhf-header-wrap.hide-phone-mobile .p4y-fhf-phone-mobile {
display: none;
}
.p4y-fhf-header-wrap.show-phone-mobile .p4y-fhf-phone-mobile {
display: flex;
}
.p4y-fhf-phone-mobile .p4y-fhf-phone-label {
font-size: 11px;
line-height: 1;
}
.p4y-fhf-phone-mobile .p4y-fhf-phone-number {
font-size: var(--p4y-fhf-phone-number-size, 15px);
line-height: 1.05;
}
.p4y-fhf-right {
margin-left: auto;
gap: 8px;
flex-shrink: 0;
}
.p4y-fhf-burger {
display: inline-flex;
width: 40px;
height: 40px;
}
.p4y-fhf-logo img {
max-width: min(var(--p4y-fhf-logo-width, 280px), 200px);
max-height: var(--p4y-fhf-logo-max-height-mobile, 34px);
}
.p4y-fhf-footer-logo img {
max-width: min(var(--p4y-fhf-footer-logo-width, 220px), 170px);
max-height: var(--p4y-fhf-footer-logo-max-height, 30px);
}
.p4y-fhf-header-spacer {
height: calc(var(--p4y-fhf-header-height-mobile, 62px) + (var(--p4y-fhf-top-offset, 18px) * 2));
}
.p4y-fhf-footer-inner {
grid-template-columns: 1fr;
gap: 28px;
padding: 64px 18px 56px;
}
.p4y-fhf-footer-cols {
grid-template-columns: 1fr;
gap: 20px;
}
.p4y-fhf-footer-col {
padding-left: 18px;
}
}
.p4y-fhf-cta:hover,
.p4y-fhf-cta:focus {
transform: translateY(-1px) scale(1.03);
box-shadow: 0 16px 28px rgba(77, 122, 255, 0.28);
filter: saturate(1.08);
}
.p4y-fhf-cta-icon {
transition: transform .24s ease, opacity .24s ease;
}
.p4y-fhf-cta:hover .p4y-fhf-cta-icon,
.p4y-fhf-cta:focus .p4y-fhf-cta-icon {
transform: translateX(2px) rotate(-10deg) scale(1.06);
}
.p4y-fhf-menu > li > a {
position: relative;
}
.p4y-fhf-menu > li > a::after {
content: '';
position: absolute;
left: 4px;
right: 4px;
bottom: -2px;
height: 2px;
border-radius: 999px;
background: rgba(255,255,255,0.92);
transform: scaleX(0);
transform-origin: center;
transition: transform .22s ease, opacity .22s ease;
opacity: .0;
}
.p4y-fhf-menu > li.current-menu-item > a::after,
.p4y-fhf-menu > li.current-menu-ancestor > a::after,
.p4y-fhf-menu > li > a:hover::after,
.p4y-fhf-menu > li > a:focus::after {
transform: scaleX(1);
opacity: 1;
}
.p4y-fhf-cta,
.p4y-fhf-mobile-cta {
position: relative;
overflow: hidden;
isolation: isolate;
transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}
.p4y-fhf-cta::before,
.p4y-fhf-mobile-cta::before {
content: '';
position: absolute;
inset: 1px;
border-radius: inherit;
background: linear-gradient(120deg, rgba(255,255,255,0.22), rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.14) 100%);
opacity: .42;
pointer-events: none;
z-index: 0;
}
.p4y-fhf-cta > span,
.p4y-fhf-mobile-cta > span,
.p4y-fhf-cta-icon {
position: relative;
z-index: 1;
}
.p4y-fhf-cta:hover,
.p4y-fhf-cta:focus {
transform: translateY(-2px) scale(1.035);
box-shadow: 0 18px 34px rgba(31, 117, 255, 0.26), inset 0 1px 0 rgba(255,255,255,0.22);
filter: saturate(1.08);
}
.p4y-fhf-cta-icon {
transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}
.p4y-fhf-cta:hover .p4y-fhf-cta-icon,
.p4y-fhf-cta:focus .p4y-fhf-cta-icon {
transform: translateX(3px) rotate(-12deg) scale(1.08);
box-shadow: 0 10px 18px rgba(255,255,255,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
}
.p4y-fhf-header-inner { position: relative; overflow: visible; }
.p4y-fhf-header-inner::before { content:""; position:absolute; inset:1px; border-radius:inherit; background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03)); pointer-events:none; opacity:.75; }
.p4y-fhf-header-inner > * { position:relative; z-index:1; }
@media (max-width: 767px) {
.p4y-fhf-phone-mobile {
display: none !important;
}
.p4y-fhf-header-wrap {
padding: 0 8px;
}
.p4y-fhf-header-inner {
min-height: 54px;
padding: 7px 10px;
gap: 10px;
border-radius: 24px;
}
.p4y-fhf-logo img {
max-width: min(var(--p4y-fhf-logo-width, 280px), 170px);
max-height: var(--p4y-fhf-logo-max-height-mobile, 34px);
}
.p4y-fhf-burger {
width: 38px;
height: 38px;
}
.p4y-fhf-mobile-panel-inner {
padding: 96px 18px 26px;
}
.p4y-fhf-mobile-menu a {
font-size: var(--p4y-fhf-menu-font-mobile, 19px);
}
}
.p4y-fhf-wrap a,
.p4y-fhf-wrap button,
.p4y-fhf-wrap input,
.p4y-fhf-wrap textarea,
.p4y-fhf-wrap select {
-webkit-tap-highlight-color: transparent;
}
.p4y-fhf-wrap a:focus,
.p4y-fhf-wrap button:focus,
.p4y-fhf-wrap a:active,
.p4y-fhf-wrap button:active {
outline: none;
box-shadow: none;
}