@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
:root {
  --color-primary: #1a237e;
  --color-primary-light: #3949ab;
  --color-primary-dark: #0d1452;
  --color-secondary: #283593;
  --color-secondary-light: #3f51b5;
  --color-accent: #ff6f00;
  --color-accent-light: #ff8f00;
  --color-accent-dark: #e65100;
  --color-text: #1a1a2e;
  --color-text-muted: #5c5c7a;
  --color-bg: #f7f8fc;
  --color-surface: #eef0f7;
  --color-white: #ffffff;
  --color-border: #d8dbe8;
  --color-border-light: #e8eaf0;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(26,35,126,0.06);
  --shadow-md: 0 4px 12px rgba(26,35,126,0.08);
  --shadow-lg: 0 8px 30px rgba(26,35,126,0.12);
  --shadow-xl: 0 16px 48px rgba(26,35,126,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
  --header-height: 72px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px;}
body{font-family:var(--font-body);color:var(--color-text);background:var(--color-bg);line-height:1.7;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
img{max-width:100%;height:auto;display:block;}
a{color:var(--color-primary);text-decoration:none;transition:color var(--transition);}
a:hover{color:var(--color-accent);}
ul,ol{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
h1,h2,h3,h4,h5,h6{font-family:var(--font-display);font-weight:700;line-height:1.25;color:var(--color-primary-dark);}
h1{font-size:clamp(1.75rem,4vw,3rem);letter-spacing:-0.02em;}
h2{font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-0.01em;}
h3{font-size:clamp(1.15rem,2vw,1.5rem);}
h4{font-size:1.15rem;}
h5{font-size:1rem;}
h6{font-size:0.875rem;}
p{margin-bottom:1em;color:var(--color-text);}
p:last-child{margin-bottom:0;}
strong{font-weight:600;}
.hy-bar-1w45-main-wrap{max-width:var(--max-width);margin:0 auto;padding:0 20px;width:100%;}
.hy-bar-1w45-layer{padding:60px 0;}
.hy-bar-1w45-layer--light{background:var(--color-surface);}
.hy-bar-1w45-layer--gradient{background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-secondary) 50%,var(--color-primary-light) 100%);color:var(--color-white);}
.hy-bar-1w45-layer--gradient p,.hy-bar-1w45-layer--gradient li{color:rgba(255,255,255,0.9);}
.hy-bar-1w45-layer--cta{background:linear-gradient(135deg,var(--color-primary-dark) 0%,var(--color-secondary) 100%);padding:50px 0;}
.hy-bar-1w45-layer__heading{text-align:center;margin-bottom:12px;font-size:clamp(1.5rem,3vw,2.15rem);}
.hy-bar-1w45-layer__heading--light{color:var(--color-white);}
.hy-bar-1w45-layer__intro{text-align:center;max-width:700px;margin:0 auto 40px;color:var(--color-text-muted);font-size:1.05rem;}
.hy-bar-1w45-layer--gradient .hy-bar-1w45-layer__intro{color:rgba(255,255,255,0.85);}
.hy-bar-1w45-layer__cta{text-align:center;margin-top:32px;}
.hy-bar-1w45-layer__note{text-align:center;color:var(--color-text-muted);font-size:0.95rem;margin-top:24px;font-style:italic;}
.hy-bar-1w45-columns{display:grid;gap:24px;}
.hy-bar-1w45-columns--2{grid-template-columns:1fr;}
.hy-bar-1w45-columns--3{grid-template-columns:1fr;}
.hy-bar-1w45-columns--4{grid-template-columns:1fr;}
@media(min-width:640px){
  .hy-bar-1w45-columns--2{grid-template-columns:repeat(2,1fr);}
  .hy-bar-1w45-columns--3{grid-template-columns:repeat(2,1fr);}
  .hy-bar-1w45-columns--4{grid-template-columns:repeat(2,1fr);}
}
@media(min-width:1024px){
  .hy-bar-1w45-columns--3{grid-template-columns:repeat(3,1fr);}
  .hy-bar-1w45-columns--4{grid-template-columns:repeat(4,1fr);}
}
.hy-bar-1w45-nav-bar{position:sticky;top:0;z-index:2000;background:var(--color-white);box-shadow:var(--shadow-sm);height:var(--header-height);display:flex;align-items:center;transition:box-shadow var(--transition);}
.hy-bar-1w45-nav-bar__inner{max-width:var(--max-width);margin:0 auto;padding:0 20px;width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;}
.hy-bar-1w45-nav-bar__logo img{height:42px;width:auto;}
.hy-bar-1w45-nav-bar__nav{display:none;align-items:center;gap:4px;}
.hy-bar-1w45-nav-bar__nav a{padding:8px 14px;font-size:0.9rem;font-weight:500;color:var(--color-text);border-radius:var(--radius-sm);transition:all var(--transition);white-space:nowrap;}
.hy-bar-1w45-nav-bar__nav a:hover,.hy-bar-1w45-nav-bar__nav a:focus-visible{color:var(--color-accent);background:var(--color-surface);}
.hy-bar-1w45-nav-bar__right{display:flex;align-items:center;gap:12px;}
.hy-bar-1w45-nav-bar__menu-btn{display:flex;flex-direction:column;gap:5px;padding:8px;width:40px;height:40px;justify-content:center;align-items:center;border-radius:var(--radius-sm);transition:background var(--transition);}
.hy-bar-1w45-nav-bar__menu-btn:hover{background:var(--color-surface);}
.hy-bar-1w45-nav-bar__menu-btn span{display:block;width:22px;height:2px;background:var(--color-text);border-radius:2px;transition:all var(--transition);}
@media(min-width:1024px){
  .hy-bar-1w45-nav-bar__nav{display:flex;}
  .hy-bar-1w45-nav-bar__menu-btn{display:none;}
}
.hy-bar-1w45-mobile-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:var(--color-white);z-index:5000;display:flex;flex-direction:column;padding:80px 24px 24px;transform:translateX(100%);transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);overflow-y:auto;}
.hy-bar-1w45-mobile-overlay.is-active{transform:translateX(0);}
.hy-bar-1w45-mobile-overlay a{display:block;padding:14px 0;font-size:1.1rem;font-weight:500;color:var(--color-text);border-bottom:1px solid var(--color-border-light);}
.hy-bar-1w45-mobile-overlay a:hover{color:var(--color-accent);}
.hy-bar-1w45-mobile-overlay__close{position:absolute;top:20px;right:20px;width:40px;height:40px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--color-text);border-radius:var(--radius-sm);background:var(--color-surface);}
.hy-bar-1w45-top-band{position:relative;min-height:560px;display:flex;align-items:center;padding:calc(var(--header-height) + 20px) 0 40px;}
.hy-bar-1w45-top-band__bg{position:absolute;inset:0;z-index:0;}
.hy-bar-1w45-top-band__bg img{width:100%;height:100%;object-fit:cover;}
.hy-bar-1w45-top-band__overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(135deg,rgba(26,35,126,0.88) 0%,rgba(40,53,147,0.78) 50%,rgba(13,20,82,0.85) 100%);}
.hy-bar-1w45-top-band__content{position:relative;z-index:2;width:100%;}
.hy-bar-1w45-top-band__title{color:var(--color-white);text-align:center;margin-bottom:14px;text-shadow:0 2px 8px rgba(0,0,0,0.2);}
.hy-bar-1w45-top-band__sub{color:rgba(255,255,255,0.9);text-align:center;font-size:clamp(1rem,1.5vw,1.2rem);max-width:640px;margin:0 auto 28px;line-height:1.6;}
.hy-bar-1w45-top-band__badges{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:24px;}
.hy-bar-1w45-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:rgba(255,255,255,0.13);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,0.2);border-radius:var(--radius-xl);color:var(--color-white);font-size:0.85rem;font-weight:500;}
.hy-bar-1w45-badge svg{flex-shrink:0;}
.partner-wrapper{margin:0 auto;width:100%;position:relative;z-index:10;}
.partner-block{border-radius:var(--radius-md);position:relative;z-index:10;}
.hy-bar-1w45-trigger{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 30px;font-family:var(--font-display);font-size:0.95rem;font-weight:600;border-radius:var(--radius-md);transition:all var(--transition);cursor:pointer;border:2px solid transparent;line-height:1.3;}
.hy-bar-1w45-trigger--primary{background:var(--color-accent);color:var(--color-white);border-color:var(--color-accent);}
.hy-bar-1w45-trigger--primary:hover{background:linear-gradient(135deg,var(--color-accent-dark),var(--color-accent));transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,111,0,0.35);}
.hy-bar-1w45-trigger--secondary{background:var(--color-white);color:var(--color-primary);border-color:var(--color-white);}
.hy-bar-1w45-trigger--secondary:hover{background:var(--color-surface);transform:translateY(-2px);box-shadow:var(--shadow-lg);}
.hy-bar-1w45-trigger--outline{background:transparent;color:var(--color-primary);border-color:var(--color-primary);}
.hy-bar-1w45-trigger--outline:hover{background:var(--color-primary);color:var(--color-white);}
.hy-bar-1w45-entry{background:var(--color-white);border-radius:var(--radius-lg);padding:28px 24px;border:1px solid var(--color-border-light);transition:all var(--transition);}
.hy-bar-1w45-entry:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);border-color:var(--color-primary-light);}
.hy-bar-1w45-entry--icon .hy-bar-1w45-entry__icon{width:56px;height:56px;border-radius:var(--radius-md);background:linear-gradient(135deg,rgba(26,35,126,0.08),rgba(40,53,147,0.04));display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.hy-bar-1w45-entry__title{margin-bottom:8px;font-size:1.1rem;color:var(--color-primary-dark);}
.hy-bar-1w45-entry__text{color:var(--color-text-muted);font-size:0.93rem;line-height:1.65;}
.hy-bar-1w45-entry__img{border-radius:var(--radius-md);overflow:hidden;margin-bottom:16px;}
.hy-bar-1w45-entry__img img{width:100%;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);}
.hy-bar-1w45-entry:hover .hy-bar-1w45-entry__img img{transform:scale(1.05);}
.hy-bar-1w45-split{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;}
@media(min-width:768px){
  .hy-bar-1w45-split{grid-template-columns:1fr 1fr;}
}
.hy-bar-1w45-split__media{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);}
.hy-bar-1w45-split__media img{width:100%;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);}
.hy-bar-1w45-split__media:hover img{transform:scale(1.04);}
.hy-bar-1w45-split__text h2{margin-bottom:16px;}
.hy-bar-1w45-split__text p{color:var(--color-text-muted);}
.hy-bar-1w45-split__text .hy-bar-1w45-trigger{margin-top:20px;}
.hy-bar-1w45-specs-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:var(--radius-md);box-shadow:var(--shadow-sm);}
.hy-bar-1w45-specs{width:100%;border-collapse:collapse;background:var(--color-white);font-size:0.9rem;min-width:600px;}
.hy-bar-1w45-specs thead{background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));}
.hy-bar-1w45-specs thead th{padding:14px 16px;color:var(--color-white);font-weight:600;text-align:left;white-space:nowrap;font-family:var(--font-display);font-size:0.85rem;text-transform:uppercase;letter-spacing:0.04em;}
.hy-bar-1w45-specs tbody tr{border-bottom:1px solid var(--color-border-light);transition:background var(--transition);}
.hy-bar-1w45-specs tbody tr:hover{background:rgba(26,35,126,0.03);}
.hy-bar-1w45-specs tbody tr:last-child{border-bottom:none;}
.hy-bar-1w45-specs tbody td{padding:13px 16px;color:var(--color-text);vertical-align:middle;}
.hy-bar-1w45-specs tbody td:first-child{font-weight:600;color:var(--color-primary-dark);}
.hy-bar-1w45-route-card{background:var(--color-white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--color-border-light);transition:all var(--transition);position:relative;}
.hy-bar-1w45-route-card:hover{box-shadow:var(--shadow-md);border-color:var(--color-primary-light);}
.hy-bar-1w45-route-card__number{font-family:var(--font-display);font-size:2.5rem;font-weight:800;color:rgba(26,35,126,0.08);position:absolute;top:12px;right:20px;line-height:1;}
.hy-bar-1w45-route-card h3{margin-bottom:8px;color:var(--color-primary);}
.hy-bar-1w45-route-card p{font-size:0.93rem;color:var(--color-text-muted);margin-bottom:8px;}
.hy-bar-1w45-steps{display:grid;grid-template-columns:1fr;gap:24px;margin-top:8px;}
@media(min-width:640px){.hy-bar-1w45-steps{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.hy-bar-1w45-steps{grid-template-columns:repeat(4,1fr);}}
.hy-bar-1w45-step{text-align:center;padding:24px 16px;}
.hy-bar-1w45-step__num{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,0.15);border:2px solid rgba(255,255,255,0.4);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-family:var(--font-display);font-weight:700;font-size:1.2rem;color:var(--color-white);}
.hy-bar-1w45-step h3{color:var(--color-white);margin-bottom:8px;font-size:1.05rem;}
.hy-bar-1w45-step p{font-size:0.9rem;line-height:1.6;}
.hy-bar-1w45-reviews-grid{display:grid;grid-template-columns:1fr;gap:24px;}
@media(min-width:768px){
  .hy-bar-1w45-reviews-grid{grid-template-columns:1fr 1fr;}
}
.hy-bar-1w45-review{background:var(--color-white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--color-border-light);transition:box-shadow var(--transition);}
.hy-bar-1w45-review:hover{box-shadow:var(--shadow-md);}
.hy-bar-1w45-review--featured{border-left:4px solid var(--color-accent);}
@media(min-width:768px){
  .hy-bar-1w45-review--featured{grid-column:1 / -1;}
}
.hy-bar-1w45-review__stars{display:flex;gap:2px;margin-bottom:14px;}
.hy-bar-1w45-review__quote{font-size:0.95rem;line-height:1.7;color:var(--color-text-muted);font-style:italic;margin-bottom:16px;border:none;padding:0;}
.hy-bar-1w45-review--featured .hy-bar-1w45-review__quote{font-size:1.02rem;}
.hy-bar-1w45-review__author{display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.hy-bar-1w45-review__author strong{color:var(--color-primary-dark);font-size:0.9rem;}
.hy-bar-1w45-review__author span{color:var(--color-text-muted);font-size:0.82rem;}
.hy-bar-1w45-price-card{background:var(--color-white);border-radius:var(--radius-lg);padding:32px 24px;border:1px solid var(--color-border-light);text-align:center;transition:all var(--transition);}
.hy-bar-1w45-price-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px);}
.hy-bar-1w45-price-card--accent{border-color:var(--color-accent);position:relative;}
.hy-bar-1w45-price-card--accent::before{content:'Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--color-accent);color:var(--color-white);font-size:0.75rem;font-weight:600;padding:4px 16px;border-radius:var(--radius-xl);font-family:var(--font-display);}
.hy-bar-1w45-price-card__header{font-family:var(--font-display);font-weight:700;font-size:1.1rem;color:var(--color-primary-dark);margin-bottom:12px;}
.hy-bar-1w45-price-card__price{font-family:var(--font-display);font-size:2rem;font-weight:800;color:var(--color-accent);margin-bottom:20px;}
.hy-bar-1w45-price-card__price span{font-size:0.9rem;font-weight:500;color:var(--color-text-muted);}
.hy-bar-1w45-price-card__list{text-align:left;margin:0 auto;max-width:220px;}
.hy-bar-1w45-price-card__list li{padding:6px 0;font-size:0.9rem;color:var(--color-text-muted);border-bottom:1px solid var(--color-border-light);position:relative;padding-left:20px;}
.hy-bar-1w45-price-card__list li::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:8px;height:8px;border-radius:50%;background:var(--color-success);}
.hy-bar-1w45-price-card__list li:last-child{border-bottom:none;}
.hy-bar-1w45-faq{max-width:800px;margin:0 auto;}
.hy-bar-1w45-help-item{border:1px solid var(--color-border-light);border-radius:var(--radius-md);margin-bottom:10px;background:var(--color-white);overflow:hidden;transition:border-color var(--transition);}
.hy-bar-1w45-help-item:hover{border-color:var(--color-primary-light);}
.hy-bar-1w45-help-item__question{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;padding:18px 22px;text-align:left;font-size:0.98rem;font-weight:600;color:var(--color-primary-dark);font-family:var(--font-display);cursor:pointer;transition:background var(--transition);}
.hy-bar-1w45-help-item__question:hover{background:rgba(26,35,126,0.02);}
.hy-bar-1w45-help-item__icon{position:relative;width:24px;height:24px;flex-shrink:0;}
.hy-bar-1w45-help-item__icon::before,.hy-bar-1w45-help-item__icon::after{content:'';position:absolute;background:var(--color-primary);border-radius:2px;transition:transform var(--transition);}
.hy-bar-1w45-help-item__icon::before{width:14px;height:2px;top:11px;left:5px;}
.hy-bar-1w45-help-item__icon::after{width:2px;height:14px;top:5px;left:11px;}
.hy-bar-1w45-help-item.is-open .hy-bar-1w45-help-item__icon::after{transform:rotate(90deg);opacity:0;}
.hy-bar-1w45-help-item__answer{max-height:0;overflow:hidden;transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1),padding 0.3s ease;}
.hy-bar-1w45-help-item.is-open .hy-bar-1w45-help-item__answer{max-height:500px;padding:0 22px 18px;}
.hy-bar-1w45-help-item__answer p{font-size:0.93rem;color:var(--color-text-muted);line-height:1.7;}
.hy-bar-1w45-cta-block{text-align:center;}
.hy-bar-1w45-cta-block__inner{max-width:600px;margin:0 auto;}
.hy-bar-1w45-cta-block__inner h2{color:var(--color-white);margin-bottom:14px;}
.hy-bar-1w45-cta-block__inner p{color:rgba(255,255,255,0.9);margin-bottom:24px;font-size:1.05rem;}
.hy-bar-1w45-ground{background:var(--color-primary-dark);color:rgba(255,255,255,0.85);padding:48px 0 0;}
.hy-bar-1w45-ground a{color:rgba(255,255,255,0.75);transition:color var(--transition);}
.hy-bar-1w45-ground a:hover{color:var(--color-accent);}
.hy-bar-1w45-ground__top{display:grid;grid-template-columns:1fr;gap:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,0.1);}
@media(min-width:768px){
  .hy-bar-1w45-ground__top{grid-template-columns:1.4fr 1fr;}
}
.hy-bar-1w45-ground__brand img{height:38px;width:auto;margin-bottom:14px;}
.hy-bar-1w45-ground__brand p{font-size:0.88rem;color:rgba(255,255,255,0.7);line-height:1.65;max-width:400px;}
.hy-bar-1w45-ground__links-group{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.hy-bar-1w45-ground__col h4{color:var(--color-white);font-size:0.85rem;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:14px;font-family:var(--font-display);}
.hy-bar-1w45-ground__col ul li{margin-bottom:8px;}
.hy-bar-1w45-ground__col ul li a{font-size:0.88rem;}
.hy-bar-1w45-ground__contact{margin-top:4px;}
.hy-bar-1w45-ground__contact p{font-size:0.85rem;color:rgba(255,255,255,0.7);margin-bottom:6px;}
.hy-bar-1w45-ground__contact a{font-size:0.85rem;}
.hy-bar-1w45-ground__bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding:20px 0;margin-top:0;}
.hy-bar-1w45-ground__copy{font-size:0.8rem;color:rgba(255,255,255,0.5);}
.hy-bar-1w45-ground__legal{display:flex;flex-wrap:wrap;gap:8px 20px;}
.hy-bar-1w45-ground__legal a{font-size:0.8rem;color:rgba(255,255,255,0.55);}
.hy-bar-1w45-ground__legal a:hover{color:var(--color-accent);}
.language-selector{position:relative;}
.language-selector .current-lang{cursor:pointer;display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:var(--radius-sm);border:1px solid var(--color-border);background:var(--color-white);font-size:0.85rem;font-weight:500;transition:border-color var(--transition);}
.language-selector .current-lang:hover{border-color:var(--color-primary-light);}
.language-dropdown{display:none;position:absolute;top:100%;right:0;background:var(--color-white);z-index:3000;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);border:1px solid var(--color-border-light);min-width:160px;max-height:280px;overflow-y:auto;margin-top:4px;}
.language-selector:hover .language-dropdown{display:block;}
.language-dropdown a{display:flex;align-items:center;gap:8px;padding:8px 16px;font-size:0.85rem;color:var(--color-text);transition:background var(--transition);}
.language-dropdown a:hover{background-color:var(--color-surface);}
.language-option{display:flex;align-items:center;gap:8px;}
.cookie-consent{position:fixed;bottom:0;left:0;right:0;background:rgba(13,20,82,0.96);backdrop-filter:blur(10px);padding:18px 24px;z-index:9999;display:none;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;border-top:1px solid rgba(255,255,255,0.1);}
.cookie-consent.is-visible{display:flex;}
.cookie-consent__text{color:rgba(255,255,255,0.9);font-size:0.88rem;flex:1;min-width:240px;line-height:1.5;}
.cookie-consent__link{color:var(--color-accent-light);text-decoration:underline;}
.cookie-consent__link:hover{color:var(--color-accent);}
.cookie-consent__accept{background:var(--color-accent);color:var(--color-white);padding:10px 24px;border:none;border-radius:var(--radius-sm);font-weight:600;font-size:0.88rem;cursor:pointer;transition:background var(--transition);font-family:var(--font-display);}
.cookie-consent__accept:hover{background:var(--color-accent-dark);}
.cookie-consent__decline{background:transparent;color:rgba(255,255,255,0.6);padding:10px 18px;border:1px solid rgba(255,255,255,0.2);border-radius:var(--radius-sm);font-size:0.85rem;cursor:pointer;transition:all var(--transition);font-family:var(--font-display);}
.cookie-consent__decline:hover{border-color:rgba(255,255,255,0.5);color:rgba(255,255,255,0.9);}
[data-anim="reveal"]{opacity:0;transform:translateY(24px);transition:opacity 0.7s cubic-bezier(0.4,0,0.2,1),transform 0.7s cubic-bezier(0.4,0,0.2,1);}
[data-anim="reveal"].is-visible{opacity:1;transform:translateY(0);}
@media(min-width:768px){
  .hy-bar-1w45-layer{padding:80px 0;}
  .hy-bar-1w45-top-band{min-height:620px;}
}
@media(min-width:1024px){
  .hy-bar-1w45-top-band{min-height:660px;}
}
@media(min-width:1280px){
  .hy-bar-1w45-main-wrap{padding:0 24px;}
}
*:focus-visible{outline:3px solid var(--color-accent);outline-offset:2px;border-radius:2px;}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important;}
  [data-anim="reveal"]{opacity:1;transform:none;}
}
@media print{
  .hy-bar-1w45-nav-bar,.hy-bar-1w45-ground,.cookie-consent,.hy-bar-1w45-mobile-overlay{display:none!important;}
  body{color:#000;background:#fff;}
  .hy-bar-1w45-top-band{min-height:auto;padding:20px 0;}
  .hy-bar-1w45-top-band__bg,.hy-bar-1w45-top-band__overlay{display:none;}
  .hy-bar-1w45-top-band__title{color:#000;}
  .hy-bar-1w45-layer--gradient,.hy-bar-1w45-layer--cta{background:#eee!important;color:#000!important;}
  .hy-bar-1w45-layer--gradient p,.hy-bar-1w45-layer--gradient li,.hy-bar-1w45-layer--gradient h2,.hy-bar-1w45-layer--gradient h3{color:#000!important;}
}
.hy-bar-1w45-legal-hero{background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));padding:40px 0;text-align:center;}
.hy-bar-1w45-legal-hero h1{color:var(--color-white);font-size:clamp(1.4rem,3vw,2rem);margin-bottom:6px;}
.hy-bar-1w45-legal-hero p{color:rgba(255,255,255,0.8);font-size:0.95rem;}
.hy-bar-1w45-legal-content{padding:48px 0;max-width:780px;margin:0 auto;}
.hy-bar-1w45-legal-content h2{margin:32px 0 12px;font-size:1.35rem;}
.hy-bar-1w45-legal-content h3{margin:24px 0 10px;font-size:1.1rem;}
.hy-bar-1w45-legal-content p{margin-bottom:14px;line-height:1.75;color:var(--color-text-muted);}
.hy-bar-1w45-legal-content ul,.hy-bar-1w45-legal-content ol{margin:12px 0 20px 20px;}
.hy-bar-1w45-legal-content li{margin-bottom:8px;color:var(--color-text-muted);font-size:0.95rem;list-style:disc;}