:root {
  --navy: #06345d;
  --blue: #006BD8;
  --blue-dark: #045da7;
  --sky: #eaf6ff;
  --ink: #142433;
  --muted: #5e6f7f;
  --line: #dbe7f0;
  --surface: #f6faff;
  --white: #fff;
  --success: #08735b;
  --radius: 22px;
  --shadow: 0 16px 44px rgba(5, 55, 95, .12);
  --side-nav-width: 260px;
  --side-nav-bg: #1a2332;
  --side-nav-text: #c8d4e0;
  --side-nav-hover: #ffffff;
  --scroll-offset: 5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: var(--scroll-offset); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.5 "Source Sans Pro", "Segoe UI", Roboto, Arial, sans-serif;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute; 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; z-index: 100; top: -5rem; left: calc(var(--side-nav-width) + 1rem); padding: .7rem 1rem;
  color: var(--white); background: var(--navy); border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0 0 .85rem;
  color: var(--blue-dark); font-size: .78rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; width: 1.05rem; height: 1.05rem; color: var(--blue);
  font-size: .95rem; line-height: 1;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.1; }
h1 { margin-bottom: 1.35rem; font-size: clamp(2.35rem, 5vw, 4.35rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 3.2vw, 3.15rem); letter-spacing: -.035em; }
h3 { margin-bottom: .8rem; font-size: 1.25rem; }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.2rem); }
.accent { color: var(--blue); font-weight: 700; }
.section-heading { max-width: 735px; margin: 0 auto 3.4rem; text-align: center; }
.section-heading .lead { margin: 0 auto; }
main [id] { scroll-margin-top: var(--scroll-offset); }

/* ---- Dark left side nav ---- */
.side-nav {
  position: fixed; z-index: 40; top: 0; left: 0; bottom: 0;
  display: flex; flex-direction: column; width: var(--side-nav-width);
  padding: 1.35rem 1.1rem 1.5rem;
  background: var(--side-nav-bg); color: var(--side-nav-text);
  box-shadow: 4px 0 24px rgba(8, 20, 40, .18);
}
.side-nav-brand {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 2rem; padding: 0 .15rem; text-decoration: none; color: inherit;
}
.side-nav-brand img {
  width: 132px; height: auto;
}
.side-nav-links {
  display: flex; flex-direction: column; gap: .15rem; flex: 1;
}
.side-nav-links a {
  display: flex; align-items: center; gap: .8rem;
  padding: .78rem .9rem; border-radius: 8px;
  color: var(--side-nav-text); font-size: .98rem; font-weight: 650;
  text-decoration: none; white-space: nowrap;
  transition: background .18s ease-out, color .18s ease-out;
}
.side-nav-links a :is(i, .svg-inline--fa) {
  display: block; flex: 0 0 1.15rem; width: 1.15rem; height: 1rem; text-align: center;
  font-size: 1rem; opacity: .9;
}
.side-nav-links a:is(:hover, :focus-visible) {
  color: var(--side-nav-hover); background: rgba(255, 255, 255, .08);
}
.side-nav-backdrop {
  position: fixed; z-index: 35; inset: 0;
  background: rgba(6, 18, 32, .45); backdrop-filter: blur(2px);
}
.site-shell {
  margin-left: var(--side-nav-width); min-width: 0;
}

/* ---- Top bar (lang / login / CTA only) ---- */
.site-header {
  position: sticky; z-index: 20; top: 0;
  border-bottom: 1px solid #e8eef4;
  background: rgba(255, 255, 255, .98); backdrop-filter: blur(12px);
}
.top-bar {
  display: flex; align-items: center; justify-content: flex-end;
  min-height: 64px; gap: 1rem;
}
.nav-actions { display: flex; align-items: center; gap: .7rem; margin-left: auto; }
.language-switcher { display: inline-flex; align-items: center; gap: .35rem; padding: 0; border: 0; border-radius: 0; }
.language-switcher .fa-globe { color: #6b7f93; font-size: .78rem; line-height: 1; }
.language-switcher a {
  position: relative; padding: .2rem .28rem; color: #6b7f93; font-size: .78rem; font-weight: 750; text-decoration: none; border-radius: 5px;
  transition: color .18s ease-out, background .18s ease-out;
}
.language-switcher a[aria-current="page"] { color: var(--blue); background: transparent; }
.language-switcher a[aria-current="page"]::after {
  position: absolute; left: 50%; bottom: -.12rem; width: 5px; height: 5px; content: "";
  border-radius: 50%; background: var(--blue); transform: translateX(-50%);
}
.language-switcher a:not([aria-current="page"]):is(:hover, :focus-visible) { color: var(--blue-dark); background: var(--sky); }
.language-switcher a[aria-current="page"]:is(:hover, :focus-visible) { color: var(--blue); background: transparent; }
.menu-toggle {
  display: none; margin-right: auto; border: 0; background: transparent;
  color: var(--navy); font-weight: 800;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand-mark {
  color: var(--navy); font-size: 1.55rem; font-weight: 800; letter-spacing: -.07em;
}
.brand-mark::before {
  display: inline-grid; width: .85em; height: .85em; margin-right: .25em; content: "";
  background: radial-gradient(circle at 22% 22%, #00a4e9 0 18%, transparent 19%),
    radial-gradient(circle at 78% 22%, #0878cf 0 18%, transparent 19%),
    radial-gradient(circle at 22% 78%, #0878cf 0 18%, transparent 19%),
    radial-gradient(circle at 78% 78%, #00a4e9 0 18%, transparent 19%);
}

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .68rem 1.05rem;
  border: 1px solid transparent; border-radius: 8px; font-size: .9rem; font-weight: 750; text-align: center; text-decoration: none;
  transition: transform .2s, background .2s, border .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: .7; }
  .button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible, .menu-toggle:focus-visible, .modal-close:focus-visible, .video-preview:focus-visible, .faq-expand:focus-visible {
  outline: 3px solid #f2ac37; outline-offset: 3px;
}
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 8px 16px rgba(8, 120, 207, .22); }
.button-primary:hover { background: var(--blue-dark); }
.button-outline { color: var(--blue); border-color: var(--blue); background: var(--white); }
.button-outline:hover { border-color: var(--blue-dark); background: var(--sky); color: var(--blue-dark); }
.button-small { min-height: 38px; padding: .48rem .9rem; font-size: .78rem; }
.nav-consultation-cta { gap: .4rem; }

.hero {
  overflow: hidden; padding: 18px 0 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}
.hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(1.25rem, 3.5vw, 3.5rem); }
.hero-copy { align-self: start; padding: 34px 0 0 8px; }
.hero h1 { margin-bottom: .5rem; color: #10243a; font-size: clamp(2rem, 2.75vw, 2.45rem); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; }
.hero h1 .headline-blue { color: var(--blue); }
.hero .lead { max-width: 390px; margin-bottom: 0; color: #566779; font-size: .89rem; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }
.hero-actions .button { min-height: 36px; padding: .45rem .9rem; font-size: .78rem; border-radius: 7px; }
.hero-actions .hero-video-button {
  min-height: 46px; gap: .58rem; padding: .72rem 1.2rem;
  font-size: .92rem; border-radius: 9px;
}
.hero-video-button .fa-play { font-size: .83em; }
.hero-visual { position: relative; min-width: 0; margin: 0; display: grid; place-items: center; }
.hero-composition {
  display: block; width: 100%; max-width: 640px; height: auto;
}

.hero-values { padding: 13px 0 24px; background: #fff; }
.value-cards {
  display: grid; width: min(1160px, calc(100% - 40px)); margin: 0 auto;
  grid-template-columns: repeat(3, 1fr); gap: 0; padding: 19px 22px;
  border: 1px solid #e6eef4; border-radius: 9px; background: #f8fbfe;
}
.value-card { display: grid; grid-template-columns: 40px 1fr; gap: 11px; padding: 0 21px; }
.value-card + .value-card { border-left: 1px solid #dbe7ef; }
.value-icon { display: grid; width: 33px; height: 33px; place-items: center; color: var(--blue); border: 1px solid #a8d3f2; border-radius: 50%; font-size: .95rem; line-height: 1; }
.value-card h3 { margin: 0 0 .24rem; color: #133c68; font-size: 1.12rem; }
.value-card p { margin: 0; color: #52677b; font-size: .83rem; line-height: 1.45; }

.intro-grid, .advantage-grid { display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.media-frame {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #f3f7fa; box-shadow: var(--shadow);
}
.media-frame img { width: 100%; aspect-ratio: 1.36; object-fit: cover; }
.video-play {
  position: absolute; top: 50%; left: 50%; display: grid; width: 66px; height: 66px; place-items: center;
  color: var(--white); border: 0; border-radius: 50%; background: var(--blue); box-shadow: 0 9px 30px rgba(0, 85, 160, .36); transform: translate(-50%, -50%);
  font-size: 1.25rem; line-height: 1;
}
.video-play .fa-play { margin-left: 3px; }
.copy-list { display: grid; gap: 1.1rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.copy-list li { position: relative; padding-left: 1.65rem; color: var(--muted); }
.copy-list li::before { position: absolute; left: 0; top: .55rem; width: .65rem; height: .65rem; content: ""; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px #e7f4fd; }

.advantages { background: var(--surface); }
.advantage-cards {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; margin-top: .4rem;
}
.advantage-card {
  display: flex; flex-direction: column; min-height: 100%; padding: 1.55rem 1.35rem 1.4rem;
  border: 1px solid var(--line); border-radius: 16px; background: var(--white);
  box-shadow: 0 10px 24px rgba(5, 55, 95, .06);
}
.advantage-icon {
  display: grid; width: 42px; height: 42px; place-items: center; margin: 0 auto 1rem;
  color: var(--blue); border-radius: 12px; background: transparent; font-size: 1.35rem; line-height: 1;
}
.advantage-card h3 { margin-bottom: .75rem; color: var(--blue); font-size: 1.18rem; text-align: center; }
.advantage-card ul {
  display: grid; gap: .55rem; margin: 0; padding: 0; color: var(--muted); font-size: .88rem; list-style: none;
}
.advantage-card li { position: relative; padding-left: 1.05rem; line-height: 1.4; }
.advantage-card li::before {
  position: absolute; left: 0; top: .55em; width: .38rem; height: .38rem; content: "";
  border-radius: 50%; background: var(--blue);
}
.flow-card {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 2.7rem; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow);
}
.flow-step { position: relative; padding: 2rem 1.7rem; }
.flow-step + .flow-step { border-left: 1px solid var(--line); }
.step-number { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 1rem; color: var(--blue); border-radius: 50%; background: var(--sky); font-weight: 800; }
.flow-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.outcome-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.5rem; margin-top: 2.2rem; color: var(--navy); font-weight: 750; }
.outcome-strip span::before {
  margin-right: .5rem; content: "✓"; color: var(--blue);
}

.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.module-card {
  display: flex; flex-direction: column; min-height: 100%; padding: 2rem; border: 1px solid var(--line); border-radius: 18px;
  background: var(--white); transition: transform .22s, box-shadow .22s;
}
.module-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.module-icon {
  display: grid; width: 72px; height: 72px; place-items: center; margin-bottom: 1.2rem;
  color: var(--blue); border-radius: 16px; background: transparent; font-size: 2.35rem; line-height: 1;
}
.module-card p { color: var(--muted); }
.module-card ul { display: grid; gap: .65rem; margin: auto 0 1.6rem; padding: 0; color: var(--muted); font-size: .9rem; list-style: none; }
.module-card li { padding-left: 1.3rem; position: relative; }
.module-card li::before {
  position: absolute; left: 0; content: "→"; color: var(--blue); font-weight: 700; font-size: .8rem;
}
.text-link { color: var(--blue-dark); font-size: .9rem; font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.video-player { margin-top: auto; }
.video-player video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 10px; background: #102b44; }
.advantages-video-cta { display: flex; justify-content: center; margin-top: 2.2rem; }
.video-preview-card {
  display: grid; gap: .85rem; width: min(100%, 560px); margin: 0 auto; text-align: left;
}
.module-card .video-preview-card { width: 100%; }
.video-preview {
  position: relative; display: block; width: 100%; padding: 0; overflow: hidden;
  aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 12px;
  background: #102b44; cursor: pointer;
}
.video-preview:focus-visible { outline: 3px solid #7ec2f0; outline-offset: 3px; }
.video-preview-poster {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.video-preview-play {
  position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; width: 58px; height: 58px; place-items: center;
  color: var(--white); border-radius: 50%; background: var(--blue);
  box-shadow: 0 9px 28px rgba(0, 85, 160, .38); transform: translate(-50%, -50%);
  pointer-events: none;
}
.video-preview-play::before {
  width: 0; height: 0; margin-left: 3px;
  content: ""; border-top: .48em solid transparent; border-bottom: .48em solid transparent; border-left: .7em solid currentColor;
}
.video-preview:hover .video-preview-play,
.video-preview:focus-visible .video-preview-play {
  background: var(--blue-dark);
  box-shadow: 0 12px 32px rgba(0, 85, 160, .42);
  transform: translate(-50%, -50%) scale(1.04);
}
.video-preview-meta { display: grid; gap: .28rem; }
.video-preview-title {
  margin: 0; color: var(--navy); font-size: 1.05rem; font-weight: 750; line-height: 1.25;
}
.video-preview-desc { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }

.references { overflow: hidden; background: linear-gradient(180deg, #f6faff, #fff); }
.stats { display: flex; justify-content: center; margin: 0 auto 3.2rem; }
.stats-list { display: flex; margin: 0; overflow: hidden; border: 1px solid #d7e7f3; border-radius: 12px; background: #fff; box-shadow: 0 9px 25px rgba(5, 55, 95, .1); }
.stats-list > div { min-width: 190px; padding: 1rem 2.4rem; text-align: center; }
.stats-list > div + div { border-left: 1px solid #d7e7f3; }
.stats-list dt { color: var(--blue); font-size: 2rem; font-weight: 700; line-height: 1; }
.stats-list dd { margin: .3rem 0 0; color: var(--navy); font-weight: 600; }
.logo-wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .7rem; align-items: center; }
.logo-tile { display: grid; min-height: 90px; padding: .7rem; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.logo-tile img { width: 100%; max-width: 115px; max-height: 54px; object-fit: contain; filter: saturate(.93); }

.faq { background: var(--surface); }
.faq-list { display: grid; gap: .75rem; max-width: 850px; margin: 0 auto; }
.faq-list details { padding: 1.1rem 1.25rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq-list summary { color: var(--navy); cursor: pointer; font-weight: 750; }
.faq-list p { margin: .85rem 0 0; color: var(--muted); }
.faq-list details.faq-extra[hidden] { display: none; }
.faq-expand {
  display: inline-flex; align-items: center; justify-content: center; justify-self: center;
  min-height: 44px; margin-top: .35rem; padding: .65rem 1.15rem;
  color: var(--blue-dark); border: 1px solid #98c8ec; border-radius: 8px; background: var(--white);
  font: inherit; font-size: .92rem; font-weight: 750;
}
.faq-expand:hover { color: var(--blue-dark); border-color: var(--blue); background: var(--sky); }
.faq-expand[hidden] { display: none; }

.contact-panel {
  padding: 3rem; overflow: hidden;
  color: var(--white); border-radius: var(--radius); background: linear-gradient(125deg, #04335c, #0677c9);
}
.contact-panel h2 { color: var(--white); margin-bottom: .8rem; }
.contact-panel p { max-width: 690px; margin: 0; color: #d9efff; }
.contact-panel .eyebrow,
.contact-panel .eyebrow-icon { color: #9fd4f8; }
.contact-panel .button-primary { color: var(--blue-dark); background: var(--white); box-shadow: none; }
.contact-panel .button-primary:hover { background: #eaf6ff; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.15rem 1.7rem; margin-top: 1.5rem; }
.contact-details { display: flex; flex: 1 1 auto; flex-wrap: wrap; gap: .75rem 1.4rem; margin: 0; color: #e9f6ff; font-weight: 650; }
.contact-details a { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; white-space: nowrap; }
.contact-details a:hover { text-decoration: underline; }
.contact-details i { font-size: .95em; }
.contact-detail-icon { display: block; width: .95em; height: .95em; fill: currentColor; }
.contact-cta { flex: 0 0 auto; gap: .45rem; min-height: 50px; padding: .78rem 1.3rem; font-size: .96rem; }

.footer { padding: 1.1rem 0; color: var(--muted); border-top: 1px solid var(--line); background: #fbfdff; }
.footer-grid {
  display: grid; justify-items: center; gap: .45rem; text-align: center;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1rem; font-size: .78rem; line-height: 1.4; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: var(--blue); }
.footer small { display: block; font-size: .74rem; }

.error-page { max-width: 720px; padding-top: 10vh; text-align: center; }
.error-page .lead { margin: 0 auto 2rem; }
.error-page .hero-actions { justify-content: center; }

.legal-page { max-width: 720px; padding: .5rem 0 0; }
.legal-page h1 { margin-bottom: 1rem; font-size: clamp(1.85rem, 3vw, 2.45rem); }
.legal-page .lead { margin-bottom: 1.25rem; }
.legal-page p { color: var(--muted); line-height: 1.55; }
.legal-page p a { color: var(--blue); font-weight: 650; }
.legal-page .hero-actions { margin-top: 1.75rem; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 50; inset: 0; display: grid; padding: .9rem; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 25, 44, .7); backdrop-filter: blur(3px); }
.modal-dialog {
  position: relative; width: min(650px, 100%); max-height: calc(100dvh - 1.8rem); overflow: auto;
  padding: clamp(1.15rem, 2.5vw, 1.6rem); border: 1px solid rgba(219, 231, 240, .9); border-radius: 18px;
  background: var(--white); box-shadow: 0 30px 70px rgba(0, 22, 42, .34); scrollbar-color: #b9ccdc transparent;
}
.video-modal {
  place-items: center;
  align-content: center;
  padding:
    max(.9rem, env(safe-area-inset-top, 0px))
    max(.9rem, env(safe-area-inset-right, 0px))
    max(.9rem, env(safe-area-inset-bottom, 0px))
    max(.9rem, env(safe-area-inset-left, 0px));
}
.video-modal .modal-backdrop {
  background: rgba(6, 18, 32, .72);
  backdrop-filter: blur(8px);
}
.video-modal-dialog {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem;
  width: auto; max-width: min(1100px, calc(100vw - 2rem));
  max-height: calc(100dvh - 1.8rem);
  margin: 0; padding: 0; overflow: visible;
  border: 0; border-radius: 0; background: transparent; box-shadow: none;
}
.video-modal-dialog h2 {
  margin: 0; padding: 0 3.25rem; max-width: 36rem;
  color: #f4f8fc; text-align: center; font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 650; letter-spacing: -.02em; line-height: 1.25;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .45);
}
.video-modal-content {
  display: grid; place-items: center; width: auto; min-height: 0; margin: 0;
  line-height: 0; background: transparent;
}
.video-modal-content video {
  display: block; width: auto; height: auto;
  max-width: min(1100px, calc(100vw - 2rem));
  max-height: calc(100dvh - 6.5rem);
  object-fit: contain; border: 0; border-radius: 10px; background: transparent;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}
.video-modal-content iframe {
  display: block; border: 0; border-radius: 10px; background: transparent;
  width: min(1100px, calc(100vw - 2rem), calc((100dvh - 6.5rem) * 16 / 9));
  aspect-ratio: 16 / 9; height: auto; max-height: calc(100dvh - 6.5rem);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}
.video-modal .modal-close {
  top: 0; right: 0; color: #eef5fb; border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
}
.video-modal .modal-close:hover {
  color: #fff; border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .22);
}
.modal-header { padding-right: 2.65rem; }
.modal .eyebrow { margin-bottom: .45rem; font-size: .7rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; display: grid; width: 36px; height: 36px; padding: 0; place-items: center;
  color: var(--navy); border: 1px solid #c9dce9; border-radius: 50%; background: #f8fbfe; font-size: 1.3rem; line-height: 1;
  transition: color .2s, background .2s, border .2s, transform .2s;
}
.modal-close:hover { color: var(--white); border-color: var(--blue); background: var(--blue); transform: rotate(90deg); }
.modal h2 { margin: 0 0 .45rem; font-size: clamp(1.6rem, 3vw, 2rem); }
.modal-intro { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.45; }
.lead-form { display: grid; gap: .7rem; margin-top: .85rem; }
.hp-field {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  pointer-events: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem .8rem; }
.form-field { min-width: 0; gap: .3rem; margin: 0; padding: 0; border: 0; }
.form-field label, .field-label { color: var(--navy); font-size: .76rem; font-weight: 800; line-height: 1.25; }
.form-field input:not([type="checkbox"]), .form-field select {
  width: 100%; min-height: 42px; padding: .5rem .7rem; color: var(--ink); border: 1px solid #b9ccdc; border-radius: 8px;
  background: #fbfdff; box-shadow: inset 0 1px 2px rgba(5, 55, 95, .03); transition: border .2s, box-shadow .2s, background .2s;
}
.form-field input:not([type="checkbox"]):hover, .form-field select:hover { border-color: #8dbce0; }
.form-field input:not([type="checkbox"]):focus, .form-field select:focus {
  border-color: var(--blue); outline: 0; background: var(--white); box-shadow: 0 0 0 3px rgba(8, 120, 207, .14);
}
.form-field input:not([type="checkbox"]):invalid:not(:placeholder-shown) { border-color: #c73737; }
.business-types { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .45rem; padding: .45rem; border: 1px solid var(--line); border-radius: 11px; background: #f8fbfe; }
.business-option { position: relative; min-width: 0; cursor: pointer; }
.business-option input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.business-option span {
  display: flex; align-items: center; min-height: 36px; gap: .5rem; padding: .4rem .55rem; color: #42566a;
  border: 1px solid transparent; border-radius: 7px; background: var(--white); font-size: .78rem; font-weight: 650; line-height: 1.2;
  transition: color .2s, border .2s, background .2s, box-shadow .2s;
}
.business-option span::before {
  display: grid; flex: 0 0 auto; width: 15px; height: 15px; content: ""; place-items: center;
  border: 1.5px solid #8aa9bf; border-radius: 4px; background: var(--white); transition: border .2s, background .2s;
}
.business-option input:checked + span { color: var(--blue-dark); border-color: #9dcced; background: #edf8ff; }
.business-option input:checked + span::before { content: "✓"; color: var(--white); border-color: var(--blue); background: var(--blue); font-size: .68rem; font-weight: 800; }
.business-option input:focus-visible + span { outline: 3px solid #f2ac37; outline-offset: 2px; }
.consent { display: flex; align-items: flex-start; gap: .5rem; color: #536779; font-size: .76rem; line-height: 1.4; }
.consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: .1rem 0 0; accent-color: var(--blue); }
.consent a { color: var(--blue-dark); font-weight: 700; }
.lead-form > .button { width: 100%; min-height: 43px; margin-top: .05rem; }
.form-status { min-height: 0; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.form-status:empty { display: none; }
.form-status.error { color: #af2525; }
.form-status.success { color: var(--success); font-weight: 650; }

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-enter {
  from { opacity: 0; transform: translate(20px, 12px); }
  to { opacity: 1; transform: translate(0, 0); }
}

.motion-ready .hero-copy { animation: hero-copy-enter .6s cubic-bezier(.22, .75, .32, 1) both; }
.motion-ready .hero-visual { animation: hero-visual-enter .7s .12s cubic-bezier(.22, .75, .32, 1) both; }
.motion-ready .modal {
  opacity: 0;
  transition: opacity .2s ease-out;
}
.motion-ready .modal-backdrop {
  background: rgba(3, 25, 44, 0);
  backdrop-filter: blur(0);
  transition: backdrop-filter .2s ease-out, background .2s ease-out;
}
.motion-ready .modal-dialog {
  opacity: 0;
  transform: translateY(10px) scale(.985);
  transition: opacity .2s ease-out, transform .2s cubic-bezier(.22, .75, .32, 1);
}
.motion-ready .modal.is-open { opacity: 1; }
.motion-ready .modal.is-open .modal-backdrop { background: rgba(3, 25, 44, .7); backdrop-filter: blur(3px); }
.motion-ready .modal.is-open .modal-dialog { opacity: 1; transform: translateY(0) scale(1); }
.motion-ready .video-modal { transition-duration: .18s; }
.motion-ready .video-modal .modal-backdrop { transition-duration: .18s; }
.motion-ready .video-modal .modal-dialog { transition-duration: .18s; transform: translateY(6px) scale(.99); }
.motion-ready .video-modal.is-open .modal-backdrop {
  background: rgba(6, 18, 32, .72); backdrop-filter: blur(8px);
}

@media (hover: hover) and (pointer: fine) {
  .text-link, .footer-nav a, .contact-details a {
    transition: color .18s ease-out, opacity .18s ease-out;
  }
  .footer-nav a:hover, .contact-details a:hover { color: var(--blue); }
  .logo-tile { transition: transform .2s ease-out, box-shadow .2s ease-out; }
  .logo-tile:hover { box-shadow: 0 8px 18px rgba(5, 55, 95, .08); transform: translateY(-2px); }
  .video-play { transition: transform .2s ease-out, background .2s ease-out, box-shadow .2s ease-out; }
  .video-play:hover { background: var(--blue-dark); box-shadow: 0 12px 32px rgba(0, 85, 160, .42); transform: translate(-50%, -50%) scale(1.04); }
  .video-preview-play { transition: transform .2s ease-out, background .2s ease-out, box-shadow .2s ease-out; }
}

@media (max-width: 1000px) {
  :root { --side-nav-width: 0px; }
  .site-shell { margin-left: 0; }
  .side-nav {
    width: min(280px, 86vw);
    transform: translateX(-105%);
    transition: transform .22s ease-out;
    box-shadow: none;
  }
  body.menu-open .side-nav {
    transform: translateX(0);
    box-shadow: 8px 0 32px rgba(8, 20, 40, .28);
  }
  .side-nav-backdrop[hidden] { display: none; }
  body.menu-open .side-nav-backdrop { display: block; }
  body.menu-open { overflow: hidden; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .top-bar { min-height: 60px; justify-content: space-between; }
  .nav-actions { margin-left: 0; }
  .hero-grid, .intro-grid, .advantage-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 710px; }
  .hero-visual { min-height: auto; max-width: 700px; width: 100%; margin: 0 auto; }
  .hero-composition { max-width: 560px; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 30px, 1160px); }
  .section { padding: 65px 0; }
  .top-bar { min-height: 56px; gap: .65rem; }
  .nav-actions .button { display: none; }
  .nav-actions .nav-consultation-cta { display: inline-flex; width: 36px; min-width: 36px; min-height: 36px; padding: 0; }
  .nav-consultation-cta span { display: none; }
  .hero { padding: 18px 0 8px; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .hero-visual { min-height: auto; }
  .hero-composition { max-width: 100%; }
  .hero-values { padding: 15px 0 20px; }
  .value-cards { width: calc(100% - 30px); grid-template-columns: 1fr; gap: 13px; padding: 17px; }
  .value-card { padding: 0; }
  .value-card + .value-card { padding-top: 13px; border-top: 1px solid #dbe7ef; border-left: 0; }
  .stats-list > div { min-width: 135px; padding: .85rem 1.25rem; }
  .stats-list dt { font-size: 1.65rem; }
  .flow-card, .modules-grid, .advantage-cards { grid-template-columns: 1fr; }
  .flow-step + .flow-step { border-top: 1px solid var(--line); border-left: 0; }
  .contact-panel { padding: 2rem 1.5rem; }
  .contact-actions { align-items: stretch; }
  .contact-details { gap: .7rem 1.15rem; }
  .contact-cta { width: 100%; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .footer-nav { gap: .4rem .8rem; font-size: .75rem; }
  .modal { padding: .5rem; }
  .modal-dialog { max-height: calc(100dvh - 1rem); padding: 1.1rem; border-radius: 15px; }
  .video-modal {
    padding:
      max(.75rem, env(safe-area-inset-top, 0px))
      max(.75rem, env(safe-area-inset-right, 0px))
      max(.75rem, env(safe-area-inset-bottom, 0px))
      max(.75rem, env(safe-area-inset-left, 0px));
    place-items: center;
    align-content: center;
  }
  .video-modal-dialog {
    width: auto;
    max-width: calc(100vw - 1.5rem);
    max-height: calc(100svh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
    gap: .65rem;
    overflow: visible;
    padding: 0;
  }
  .video-modal-dialog h2 { padding: 0 2.5rem; font-size: 1.1rem; flex: 0 0 auto; }
  .video-modal-content { flex: 0 1 auto; min-height: 0; }
  .video-modal-content video {
    max-width: calc(100vw - 1.5rem);
    max-height: calc(100svh - 6.25rem);
    max-height: calc(100dvh - 6.25rem);
  }
  .video-modal-content iframe {
    width: min(calc(100vw - 1.5rem), calc((100svh - 6.25rem) * 16 / 9));
    width: min(calc(100vw - 1.5rem), calc((100dvh - 6.25rem) * 16 / 9));
    max-height: calc(100svh - 6.25rem);
    max-height: calc(100dvh - 6.25rem);
  }
  .video-modal .modal-close { top: -.15rem; right: 0; }
  .modal-close { top: .7rem; right: .7rem; width: 34px; height: 34px; }
  .modal-header { padding-right: 2.25rem; }
  .modal h2 { font-size: 1.55rem; }
  .lead-form { gap: .7rem; margin-top: .85rem; }
  .form-grid { gap: .6rem; }
  .business-types { gap: .35rem; padding: .35rem; }
  .business-option span { min-height: 36px; padding: .4rem .45rem; font-size: .72rem; }
  .consent { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
