:root {
  --enterprise-navy: #071a35;
  --enterprise-navy-2: #102b52;
  --enterprise-burgundy: #7c1738;
  --enterprise-burgundy-dark: #5d1029;
  --enterprise-green: #087d70;
  --enterprise-blue: #1857a4;
  --enterprise-ink: #132238;
  --enterprise-muted: #56657a;
  --enterprise-soft: #f3f6fa;
  --enterprise-border: #d8e0ea;
  --enterprise-white: #fff;
  --enterprise-shadow: 0 18px 50px rgba(7, 26, 53, .10);
  --enterprise-radius: 18px;
  --enterprise-max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.proplix-site {
  margin: 0;
  min-width: 320px;
  background: var(--enterprise-white);
  color: var(--enterprise-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.proplix-site img { max-width: 100%; height: auto; }
body.proplix-site button,
body.proplix-site input,
body.proplix-site select,
body.proplix-site textarea { font: inherit; }
body.proplix-site a { text-underline-offset: .18em; }
body.proplix-site [hidden] { display: none !important; }
.container { width: min(var(--enterprise-max), calc(100% - 40px)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 10000; padding: 10px 16px;
  background: #fff; color: var(--enterprise-navy); border: 2px solid var(--enterprise-navy);
  border-radius: 8px; transform: translateY(-150%); font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e8a52b !important; outline-offset: 3px !important; }
#main-content { scroll-margin-top: 96px; }
#main-content p a:not(.btn):not(.button):not([class*="card"]) { text-decoration: underline; }

.enterprise-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--enterprise-border); box-shadow: 0 6px 22px rgba(7, 26, 53, .06);
}
.enterprise-header__bar {
  position: relative; width: min(1440px, calc(100% - 36px)); min-height: 78px; margin-inline: auto;
  display: flex; align-items: center; gap: 24px;
}
.enterprise-brand { flex: 0 0 205px; display: grid; text-decoration: none; color: var(--enterprise-muted); line-height: 1.15; }
.enterprise-brand__logo { display: inline-flex; align-items: center; }
.enterprise-brand__logo img { width: 132px; height: auto; display: block; }
.enterprise-brand__parent { margin-top: 3px; font-size: 9px; letter-spacing: .01em; }
.enterprise-nav { flex: 1; display: flex; justify-content: center; align-items: stretch; gap: 1px; }
.enterprise-nav__group { display: flex; align-items: stretch; }
.enterprise-nav__trigger,
.enterprise-nav__direct {
  display: inline-flex; align-items: center; gap: 5px; min-height: 50px; padding: 0 10px;
  border: 0; background: transparent; color: var(--enterprise-ink); text-decoration: none;
  font-size: .88rem; font-weight: 730; cursor: pointer; white-space: nowrap;
}
.enterprise-nav__trigger:hover,
.enterprise-nav__trigger[aria-expanded="true"],
.enterprise-nav__direct:hover { color: var(--enterprise-burgundy); }
.enterprise-nav__trigger span { font-size: .85rem; transition: transform .18s ease; }
.enterprise-nav__trigger[aria-expanded="true"] span { transform: rotate(180deg); }
.enterprise-mega {
  position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%);
  width: min(1040px, calc(100vw - 48px)); padding: 24px; background: #fff;
  border: 1px solid var(--enterprise-border); border-radius: 0 0 20px 20px;
  box-shadow: var(--enterprise-shadow); visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}
.enterprise-nav__group.is-open .enterprise-mega { visibility: visible; opacity: 1; pointer-events: auto; }
.enterprise-mega__eyebrow { margin: 0 0 10px; color: var(--enterprise-burgundy); font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.enterprise-mega__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.enterprise-mega__grid a { padding: 13px; border-radius: 12px; color: var(--enterprise-ink); text-decoration: none; }
.enterprise-mega__grid a:hover { background: var(--enterprise-soft); }
.enterprise-mega__grid strong { display: block; margin-bottom: 2px; font-size: .92rem; }
.enterprise-mega__grid span { display: block; color: var(--enterprise-muted); font-size: .78rem; line-height: 1.45; }
.enterprise-header__actions { display: flex; align-items: center; gap: 8px; }
.icon-button {
  width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--enterprise-border);
  border-radius: 11px; background: #fff; color: var(--enterprise-navy); cursor: pointer;
}
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.enterprise-login { padding: 10px 7px; color: var(--enterprise-navy); font-size: .88rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.enterprise-cta,
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 17px;
  border: 1px solid var(--enterprise-burgundy); border-radius: 10px; background: var(--enterprise-burgundy);
  color: #fff; text-decoration: none; font-weight: 800; line-height: 1.3; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.enterprise-cta { font-size: .82rem; white-space: nowrap; }
.enterprise-cta:hover, .button:hover { background: var(--enterprise-burgundy-dark); border-color: var(--enterprise-burgundy-dark); transform: translateY(-1px); }
.button--outline { background: #fff; color: var(--enterprise-navy); border-color: var(--enterprise-navy); }
.button--light { background: #fff; color: var(--enterprise-navy); border-color: #fff; }
.button--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.button--outline-light:hover { background: #fff; color: var(--enterprise-navy); border-color: #fff; }
.menu-button { display: none; min-height: 44px; padding: 8px 11px; border: 1px solid var(--enterprise-border); border-radius: 10px; background: #fff; color: var(--enterprise-navy); font-weight: 800; }
.menu-button > span:first-child { width: 18px; height: 12px; margin-right: 7px; border-block: 2px solid currentColor; position: relative; }
.menu-button > span:first-child::after { content: ""; position: absolute; left: 0; right: 0; top: 4px; border-top: 2px solid currentColor; }
.mobile-navigation { max-height: calc(100vh - 78px); padding: 15px 20px 24px; overflow-y: auto; background: #fff; border-top: 1px solid var(--enterprise-border); }
.mobile-navigation details { border-bottom: 1px solid var(--enterprise-border); }
.mobile-navigation summary { padding: 13px 2px; color: var(--enterprise-navy); font-weight: 800; cursor: pointer; }
.mobile-navigation a { display: block; padding: 10px 15px; color: var(--enterprise-ink); text-decoration: none; }

.site-search { width: min(760px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 32px)); padding: 0; border: 0; border-radius: 20px; box-shadow: 0 34px 100px rgba(7,26,53,.35); }
.site-search::backdrop { background: rgba(7, 26, 53, .74); backdrop-filter: blur(3px); }
.site-search__panel { padding: 28px; }
.site-search__top { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.site-search h2 { margin: 2px 0 20px; color: var(--enterprise-navy); font-size: clamp(1.65rem, 4vw, 2.25rem); }
.site-search label { display: block; margin-bottom: 6px; font-weight: 800; }
.site-search input { width: 100%; min-height: 54px; padding: 12px 15px; border: 2px solid var(--enterprise-border); border-radius: 11px; color: var(--enterprise-ink); }
.site-search__hint { margin: 8px 0 18px; color: var(--enterprise-muted); font-size: .83rem; }
.site-search__results { display: grid; gap: 7px; max-height: 390px; overflow: auto; }
.site-search__result { display: block; padding: 12px; border: 1px solid var(--enterprise-border); border-radius: 11px; color: var(--enterprise-ink); text-decoration: none; }
.site-search__result:hover, .site-search__result.is-active { border-color: var(--enterprise-blue); background: #f4f8ff; }
.site-search__result-type { color: var(--enterprise-burgundy); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.site-search__result strong { display: block; }
.site-search__result span:last-child { display: block; color: var(--enterprise-muted); font-size: .8rem; line-height: 1.45; }

.eyebrow { margin: 0 0 8px; color: var(--enterprise-burgundy); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.section { padding-block: 74px; }
.text-link { color: var(--enterprise-burgundy); font-weight: 800; }
.help-guidance { margin-top: 72px; background: #eef3f8; border-top: 1px solid var(--enterprise-border); }
.help-guidance__shell { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.45fr); gap: 42px; align-items: start; }
.help-guidance__intro h2 { margin: 0 0 14px; color: var(--enterprise-navy); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; }
.help-guidance__intro p:not(.eyebrow) { color: var(--enterprise-muted); }
.help-guidance__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.help-card { display: flex; flex-direction: column; gap: 8px; min-height: 100%; padding: 20px; background: #fff; border: 1px solid var(--enterprise-border); border-radius: var(--enterprise-radius); color: var(--enterprise-ink); text-decoration: none; box-shadow: 0 10px 24px rgba(7,26,53,.05); }
.help-card:hover { border-color: #a9b8ca; box-shadow: 0 16px 34px rgba(7,26,53,.09); }
.help-card__type { color: var(--enterprise-burgundy) !important; font-size: .7rem !important; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.help-card strong { color: var(--enterprise-navy); font-size: 1.02rem; line-height: 1.35; }
.help-card > span:last-of-type:not(.visually-hidden) { color: var(--enterprise-muted); font-size: .86rem; line-height: 1.55; }

.conversion-strip { background: linear-gradient(115deg, var(--enterprise-navy), #102c55 72%, #153a63); color: #fff; }
.conversion-strip__inner { min-height: 230px; padding-block: 48px; display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.conversion-strip .eyebrow { color: #f0bdca; }
.conversion-strip h2 { max-width: 720px; margin: 0 0 9px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.12; }
.conversion-strip p:not(.eyebrow) { max-width: 770px; margin: 0; color: #d9e5f4; }
.conversion-strip__actions { flex: 0 0 260px; display: grid; gap: 10px; }

.enterprise-footer { padding: 60px 0 25px; background: #06152c; color: #d9e4f2; }
.enterprise-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(5, minmax(115px, 1fr)); gap: 30px 24px; }
.enterprise-footer__brand img { width: 148px; padding: 8px 11px; background: #fff; border-radius: 10px; }
.enterprise-footer__brand p { max-width: 380px; color: #b8c8dc; font-size: .84rem; }
.enterprise-footer__company { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); }
.enterprise-footer h2 { margin: 6px 0 13px; color: #fff; font-size: .81rem; letter-spacing: .08em; text-transform: uppercase; }
.enterprise-footer__grid > div:not(.enterprise-footer__brand) > a { display: block; padding: 5px 0; color: #dce8f6; font-size: .82rem; line-height: 1.45; text-decoration: none; }
.enterprise-footer__grid > div:not(.enterprise-footer__brand) > a:hover { color: #fff; text-decoration: underline; }
.enterprise-footer__legal { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; gap: 25px; color: #aebed2; font-size: .75rem; }
.enterprise-footer__legal p { margin: 0; }
.enterprise-footer__legal nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
.enterprise-footer__legal a, .enterprise-footer__legal button { padding: 0; border: 0; background: transparent; color: #dce8f6; font: inherit; text-decoration: none; cursor: pointer; }
.enterprise-footer__legal a:hover, .enterprise-footer__legal button:hover { color: #fff; text-decoration: underline; }

.whatsapp-link { position: fixed; right: 18px; bottom: 18px; z-index: 800; display: inline-flex; align-items: center; gap: 7px; padding: 10px 13px; border-radius: 999px; background: #087d52; color: #fff; text-decoration: none; font-size: .78rem; font-weight: 850; box-shadow: 0 12px 30px rgba(7,26,53,.22); }
.whatsapp-link svg { width: 20px; height: 20px; fill: currentColor; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 1500; width: min(900px, calc(100% - 36px)); margin-inline: auto; padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #fff; border: 1px solid var(--enterprise-border); border-radius: 15px; box-shadow: 0 18px 60px rgba(7,26,53,.28); }
.cookie-banner strong { color: var(--enterprise-navy); }
.cookie-banner p { margin: 4px 0 0; color: var(--enterprise-muted); font-size: .82rem; }
.cookie-banner__actions { flex: 0 0 auto; display: flex; gap: 8px; }
.cookie-banner .button { font-size: .78rem; }

/* Contact and enquiry forms */
.contact-revamp { background: linear-gradient(180deg, #f3f6fa 0, #fff 620px); }
.contact-hero { padding: 72px 0 35px; }
.contact-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr); gap: 36px; align-items: center; }
.contact-hero h1 { max-width: 820px; margin: 0 0 18px; color: var(--enterprise-navy); font-size: clamp(2.35rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.045em; }
.contact-hero__lead { max-width: 780px; color: var(--enterprise-muted); font-size: clamp(1.03rem, 1.6vw, 1.22rem); }
.contact-trust { display: grid; gap: 10px; padding: 24px; background: var(--enterprise-navy); color: #fff; border-radius: 22px; box-shadow: var(--enterprise-shadow); }
.contact-trust p { margin: 0; color: #dce8f6; font-size: .9rem; }
.contact-layout { padding: 30px 0 76px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .62fr); gap: 30px; align-items: start; }
.enquiry-form-shell, .contact-sidebar__card { background: #fff; border: 1px solid var(--enterprise-border); border-radius: 20px; box-shadow: var(--enterprise-shadow); }
.enquiry-form-shell { padding: clamp(22px, 4vw, 38px); }
.enquiry-form-shell h2 { margin-top: 0; color: var(--enterprise-navy); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.form-status { margin-bottom: 20px; padding: 14px 16px; border-left: 5px solid var(--enterprise-green); border-radius: 8px; background: #edf9f5; }
.form-status--error { border-color: var(--enterprise-burgundy); background: #fff1f4; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; align-content: start; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-field legend { color: var(--enterprise-navy); font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid #adbacb; border-radius: 9px; background: #fff; color: var(--enterprise-ink); }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field small { color: var(--enterprise-muted); }
.checkbox-field { display: grid; grid-template-columns: 22px 1fr; gap: 9px; align-items: start; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 3px; }
.enquiry-context { margin: 6px 0 22px; padding: 16px; background: #eef4fb; border-radius: 10px; color: var(--enterprise-muted); }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.form-actions p { margin: 0; color: var(--enterprise-muted); font-size: .8rem; }
.contact-sidebar { display: grid; gap: 16px; }
.contact-sidebar__card { padding: 23px; }
.contact-sidebar__card h2 { margin: 0 0 10px; color: var(--enterprise-navy); font-size: 1.25rem; }
.contact-sidebar__card p { color: var(--enterprise-muted); }
.contact-sidebar__card a { color: var(--enterprise-burgundy); font-weight: 800; }
.contact-steps { margin: 0; padding-left: 21px; color: var(--enterprise-muted); }
.contact-steps li { margin-bottom: 8px; }

@media (max-width: 1280px) {
  .enterprise-header__bar { width: min(100% - 28px, 1280px); gap: 13px; }
  .enterprise-brand { flex-basis: 168px; }
  .enterprise-brand__parent { display: none; }
  .enterprise-nav__trigger, .enterprise-nav__direct { padding-inline: 7px; font-size: .82rem; }
  .enterprise-login { display: none; }
  .enterprise-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
@media (max-width: 1080px) {
  .enterprise-nav, .enterprise-header__actions .enterprise-cta { display: none; }
  .enterprise-header__actions { margin-left: auto; }
  .enterprise-login, .menu-button { display: inline-flex; align-items: center; }
  .help-guidance__grid { grid-template-columns: 1fr; }
  .enterprise-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .enterprise-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 800px) {
  .container { width: min(100% - 30px, var(--enterprise-max)); }
  .section { padding-block: 55px; }
  .help-guidance__shell, .contact-hero__grid, .contact-layout { grid-template-columns: 1fr; }
  .conversion-strip__inner { display: grid; gap: 26px; }
  .conversion-strip__actions { width: min(100%, 350px); }
  .enterprise-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .enterprise-footer__brand { grid-column: 1 / -1; }
  .enterprise-footer__legal { display: grid; }
  .enterprise-footer__legal nav { justify-content: flex-start; }
  .cookie-banner { display: grid; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
}
@media (max-width: 520px) {
  .enterprise-header__bar { min-height: 68px; }
  .enterprise-brand { flex-basis: auto; }
  .enterprise-brand__logo img { width: 112px; }
  .enterprise-login { display: none; }
  .menu-button > span:last-child { display: none; }
  .site-search__panel { padding: 20px; }
  .help-guidance { margin-top: 52px; }
  .enterprise-footer__grid { grid-template-columns: 1fr; }
  .enterprise-footer__brand { grid-column: auto; }
  .whatsapp-link span { display: none; }
  .whatsapp-link { width: 45px; height: 45px; padding: 0; justify-content: center; }
  .cookie-banner__actions { display: grid; }
  .contact-hero { padding-top: 52px; }
  .contact-hero h1 { font-size: clamp(2.25rem, 13vw, 3.45rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
