/* ===== Header ===== */
.site-header { position: sticky; top: calc(-1 * var(--topbar-h)); z-index: 200; background: var(--surface); }
.site-header.is-stuck .navbar { box-shadow: 0 4px 18px rgba(29,36,48,.08); border-bottom-color: transparent; }
.topbar { height: var(--topbar-h); background: var(--ink); color: #D7DEE8; font-size: .86rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.topbar a { color: #E8EDF4; text-decoration: none; display: inline-flex; align-items: center; gap: .4em; min-height: 100%; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__links { display: flex; gap: 22px; }
.navbar { height: var(--navbar-h); border-bottom: 1px solid var(--line); background: var(--surface); transition: box-shadow .2s var(--ease); }
.navbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 100%; }
.brand img { height: 46px; width: auto; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.menu__item { position: relative; display: flex; align-items: center; }
.menu__link { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px; font-weight: 600; font-size: .96rem; color: var(--ink); text-decoration: none; border-radius: 10px; }
.menu__link:hover, .menu__link:focus-visible, .has-menu.is-open > .menu__link, .has-menu:hover > .menu__link { background: var(--brand-50); color: var(--brand); }
.menu__link[aria-current="page"] { color: var(--brand); box-shadow: inset 0 -2px 0 var(--brand); border-radius: 10px 10px 0 0; }
.menu__toggle { background: none; border: 0; padding: 0; width: 26px; height: 44px; margin-left: -6px; color: var(--muted); cursor: pointer; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.menu__toggle .chev { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.menu__toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 44px rgba(29,36,48,.14); padding: 20px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s; z-index: 50; }
.has-menu:hover > .dropdown, .has-menu:focus-within > .dropdown, .has-menu.is-open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown li a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--text); text-decoration: none; font-size: .94rem; white-space: nowrap; }
.dropdown li a:hover, .dropdown li a:focus-visible { background: var(--brand-50); color: var(--brand); }
.dropdown li a[aria-current="page"] { color: var(--brand); font-weight: 700; }
.dropdown--mega { width: min(760px, calc(100vw - 40px)); left: -120px; }
.mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mega__heading { margin: 0 0 6px; padding: 0 10px; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.mega__foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.mega__foot a { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; text-decoration: none; padding: 6px 10px; }
.dropdown--list { width: 340px; }
.dropdown__two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 8px; }
.navbar__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; }
.icon-btn .ico { width: 22px; height: 22px; }
.navbar__phone, .nav-toggle, .drawer__head, .drawer__foot, .drawer-backdrop { display: none; }
@media (max-width: 1279px) { .navbar__wa { display: none; } }
@media (max-width: 1023px) {
  .site-header { top: 0; }
  .topbar { display: none; }
  .navbar { height: var(--navbar-h-m); }
  .brand img { height: 40px; }
  .navbar__cta { display: none; }
  .navbar__phone, .nav-toggle { display: inline-flex; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); background: var(--surface); z-index: 300; transform: translateX(100%); transition: transform .24s var(--ease); display: flex; flex-direction: column; overflow-y: auto; box-shadow: -12px 0 40px rgba(29,36,48,.18); visibility: hidden; }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 14px 20px; border-bottom: 1px solid var(--line); }
  .drawer__title { font-weight: 800; color: var(--ink); }
  .drawer__close { background: none; border: 0; width: 44px; height: 44px; border-radius: 12px; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
  .drawer__close .ico { width: 24px; height: 24px; }
  .menu { flex-direction: column; align-items: stretch; padding: 8px 12px; gap: 0; }
  .menu__item { flex-wrap: wrap; border-bottom: 1px solid var(--line-soft); }
  .menu__link { flex: 1; min-height: 52px; font-size: 1.05rem; padding: 12px 10px; border-radius: 10px; }
  .menu__link[aria-current="page"] { box-shadow: none; background: var(--brand-50); border-radius: 10px; }
  .menu__toggle { width: 52px; height: 52px; margin: 0; }
  .menu__toggle .chev { width: 20px; height: 20px; }
  .dropdown { position: static; width: 100%; max-width: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; padding: 0 0 10px 10px; display: none; }
  .has-menu.is-open > .dropdown { display: block; }
  .has-menu:hover > .dropdown, .has-menu:focus-within > .dropdown { display: none; }
  .has-menu.is-open:hover > .dropdown, .has-menu.is-open:focus-within > .dropdown { display: block; }
  .mega__cols { grid-template-columns: 1fr; gap: 10px; }
  .dropdown li a { white-space: normal; min-height: 44px; display: flex; align-items: center; }
  .dropdown--list { width: 100%; }
  .drawer__foot { display: grid; gap: 10px; margin-top: auto; padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--warm-50); position: sticky; bottom: 0; }
  .drawer__phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--ink); text-decoration: none; min-height: 44px; }
  .drawer__utility { display: flex; gap: 18px; font-size: .95rem; }
  .drawer__utility a { min-height: 44px; display: inline-flex; align-items: center; }
  .drawer-backdrop { display: block; position: fixed; inset: 0; background: rgba(29,36,48,.45); z-index: 250; }
  .drawer-backdrop[hidden] { display: none; }
  body.no-scroll { overflow: hidden; }
}
/* ===== Footer ===== */
.site-footer { background: var(--footer); color: #B9C3C9; font-size: .95rem; padding-block: 64px 24px; }
.site-footer a { color: #E3E9EC; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; text-decoration: underline; }
.footer-top { display: grid; grid-template-columns: 1.35fr 3fr; gap: 48px; }
.footer-logo { display: inline-block; background: #fff; padding: 10px 14px; border-radius: 12px; margin-bottom: 18px; }
.footer-logo img { height: 42px; width: auto; }
.footer-desc { color: #C8D0D5; max-width: 34ch; }
.footer-nap { font-style: normal; display: grid; gap: 8px; margin: 18px 0 20px; }
.footer-nap p { margin: 0 0 4px; color: #C8D0D5; }
.footer-nap strong { color: #fff; }
.footer-nap a, .footer-nap span { display: inline-flex; gap: 8px; align-items: center; min-height: 32px; }
.footer-nap .ico { color: #8FB3EC; }
.footer-social { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 14px; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-heading { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; font-weight: 800; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.footer-col li a { display: inline-flex; align-items: center; gap: .3em; min-height: 32px; }
.footer-two-col { grid-template-columns: 1fr 1fr; column-gap: 12px; }
.footer-more { font-weight: 700; color: #fff !important; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; color: #97A3AB; font-size: .88rem; }
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #C8D0D5; }
@media (max-width: 1023px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } .footer-nav { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-nav { grid-template-columns: 1fr; gap: 26px; } .footer-bottom { flex-direction: column; } .site-footer { padding-bottom: 96px; } }
