:root {
  --navy: #061b3a;
  --navy-soft: #0b2e5d;
  --blue: #075bc7;
  --royal: #0874eb;
  --gold: #e3aa28;
  --gold-light: #f4c95d;
  --ink: #10233e;
  --muted: #5e6d7f;
  --line: #dce2e8;
  --surface: #f5f7f9;
  --white: #fff;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow: 0 18px 50px rgba(6, 27, 58, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font-body); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 1000; padding: .75rem 1rem; color: var(--white); background: var(--navy); border-radius: .35rem; }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-tint { background: var(--surface); }
.section-kicker { margin: 0 0 18px; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker::before { content: ""; display: inline-block; width: 28px; height: 2px; margin: 0 10px 3px 0; background: var(--gold); }
.section-kicker-light { color: var(--gold-light); }
.section-title { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -.045em; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 52px; padding: .8rem 1.45rem; border: 1px solid transparent; border-radius: 3px; font-size: .88rem; font-weight: 700; letter-spacing: .01em; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-navy { color: var(--white); background: var(--navy); }
.button-navy:hover { background: var(--blue); }
.button-outline { color: var(--navy); border-color: #aeb9c5; background: transparent; }
.button-outline:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-compact { min-height: 43px; padding: .55rem 1rem; white-space: nowrap; }
.inline-link { display: inline-flex; gap: .6rem; align-items: center; color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--gold); padding-bottom: .3rem; }
.site-footer { padding: 74px 0 22px; color: rgba(255,255,255,.68); background: #04152e; }
.footer-grid { display: grid; grid-template-columns: minmax(250px, 1.7fr) repeat(4, minmax(110px, 1fr)); gap: clamp(2rem, 4vw, 4rem); }
.footer-grid > div:first-child p { max-width: 360px; }
.footer-grid h2 { margin: 0 0 1.2rem; color: var(--white); font-size: .86rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid a:not(.brand) { display: block; margin: .65rem 0; }
.footer-grid a:hover { color: var(--gold-light); }
.brand-footer { display: inline-flex; margin-bottom: 1.2rem; }
.brand-footer .brand-mark { width: 52px; height: 52px; flex-basis: 52px; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.5vw, 36px);
  bottom: clamp(18px, 2.5vw, 36px);
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 58px;
  padding: .65rem 1.15rem .65rem .72rem;
  color: var(--white);
  background: #25d366;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(6,27,58,.25);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  color: var(--white);
  background: #1ebe5a;
  box-shadow: 0 16px 38px rgba(6,27,58,.32);
  transform: translateY(-3px);
}
.whatsapp-float:focus-visible {
  outline-color: var(--gold-light);
  outline-offset: 3px;
}
.whatsapp-float__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.whatsapp-float__label { white-space: nowrap; }
