/* UNIUM — global styles */
@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Mulish-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish-Italic-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Mulish-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}

:root {
  --logo-blue: #357BFF;
  --logo-deep: #173E89;
  --cta-blue: #5689F0;
  --cta-deep: #1358E1;
  --indigo: #454CEE;
  --link-blue: #4575F0;
  --hover-deep: #1250CF;
  --white: #FFFFFF;
  --cloud: #FFFFFF;
  --figma-cloud: #FFFFFF;
  --app-surface: #F8F9FA;
  --soft-blue: #F5F8FF;
  --pale-blue: #F0F5FF;
  --blue-panel: #E0EAFF;
  --brand-cloud: #ADC9FF;
  --line-light: #E8EBEF;
  --line-blue: #E0EAFF;
  --ink: #272C30;
  --ink-product: #26325C;
  --body-gray: #525866;
  --secondary-gray: #83899F;
  --neutral-gray: #737373;
  --success: #1CC14D;
  --danger: #EA4335;
  --warning: #F2C94C;
  --chart-positive: #50E3C2;
  --chart-decline: #EF5C6E;
  --chart-planned: #FF9F43;
  --grad-logo: linear-gradient(135deg, #357BFF 0%, #173E89 100%);
  --grad-cta: linear-gradient(135deg, #5689F0 0%, #1358E1 100%);
  --sh-1: 0 1px 2px rgba(82, 88, 102, 0.06);
  --sh-2: 0 4px 12px rgba(5, 12, 38, 0.12);
  --sh-cta: 0 4px 14px rgba(16, 65, 188, 0.20);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line-blue);
  position: sticky; top: 0; z-index: 50;
}
.site-header-inner {
  display: flex; align-items: center;
  height: 80px; gap: 32px; flex-wrap: nowrap;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.logo img { display: block; height: 36px; width: auto; }
.footer-about .logo img { height: 32px; }
.nav-links {
  display: flex; gap: 28px; list-style: none;
  margin: 0; padding: 0; white-space: nowrap;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 8px 0; position: relative; transition: color .15s;
}
.nav-links a:hover { color: var(--link-blue); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--link-blue); border-radius: 2px;
}
.header-phone {
  font-weight: 700; font-size: 14px; color: var(--ink); margin-right: 8px;
  white-space: nowrap; margin-left: auto;
}
.header-actions { display: flex; gap: 10px; align-items: center; }

/* MOBILE NAV TOGGLE (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px; background: transparent;
  border: 1px solid transparent;
  margin-left: auto; position: relative;
  flex-shrink: 0; padding: 0;
}
.nav-toggle:hover { background: var(--soft-blue); }
.nav-toggle-bar {
  position: absolute; left: 50%; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle-bar:nth-child(1) { top: 13px; }
.nav-toggle-bar:nth-child(2) { top: 19px; }
.nav-toggle-bar:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 19px; transform: translateX(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 19px; transform: translateX(-50%) rotate(-45deg);
}

/* MOBILE NAV PANEL (hidden on desktop) */
.mobile-nav { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 14px;
  border-radius: 40px; padding: 11px 20px;
  cursor: pointer; transition: all .15s;
  white-space: nowrap; border: 1px solid transparent;
}
.btn-ghost {
  background: var(--white); border: 1px solid var(--line-blue); color: var(--ink);
}
.btn-ghost:hover { border-color: var(--cta-blue); color: var(--cta-deep); }
.btn-primary {
  background: var(--grad-cta); color: white; box-shadow: var(--sh-cta);
}
.btn-primary:hover { filter: brightness(0.95); }
.btn-secondary {
  background: var(--white); border: 1px solid var(--line-blue); color: var(--ink);
}
.btn-secondary:hover { border-color: var(--cta-blue); color: var(--cta-deep); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 50px; }

/* FOOTER */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line-blue);
  padding: 40px 0 20px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-about p {
  color: var(--body-gray); font-size: 13px;
  margin: 12px 0 16px; max-width: 240px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--soft-blue); display: flex;
  align-items: center; justify-content: center;
  color: var(--link-blue);
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--ink);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--body-gray); font-size: 13px; font-weight: 500;
}
.footer-col a:hover { color: var(--link-blue); }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--secondary-gray);
}
.footer-ogrn { white-space: nowrap; }

/* CONTACT MODAL */
.contact-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.contact-modal[aria-hidden="false"] { display: flex; }
.contact-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(23, 30, 48, 0.54);
  backdrop-filter: blur(4px);
}
.contact-modal-panel {
  position: relative; width: min(100%, 460px);
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(5, 12, 38, 0.24);
  padding: 30px;
}
.contact-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--body-gray);
  font-size: 28px; line-height: 1;
}
.contact-modal-close:hover { background: var(--soft-blue); color: var(--cta-deep); }
.contact-modal-kicker {
  display: inline-flex;
  color: var(--cta-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.contact-modal h2 {
  margin: 0 42px 10px 0;
  font-size: 26px;
  line-height: 1.18;
  color: var(--ink);
}
.contact-modal p {
  margin: 0 0 18px;
  color: var(--body-gray);
  font-size: 14px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-field {
  display: grid;
  gap: 6px;
  position: relative;
}
.contact-field span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.contact-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 10px;
  font: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.contact-field input:focus {
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(86, 137, 240, 0.16);
}
.suggestions-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  min-width: 100%;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
  box-sizing: border-box;
  cursor: default;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 10px;
  box-shadow: var(--sh-2);
  -webkit-text-size-adjust: 100%;
}
.suggestions-suggestions strong {
  font-weight: 400;
  color: var(--ink);
}
.suggestions-suggestion {
  padding: 9px 12px;
  overflow: hidden;
  border-left: 2px solid var(--white);
  transition: background .15s, border-left-color .15s;
  cursor: pointer;
}
.suggestions-suggestion:hover,
.suggestions-suggestion:focus {
  background: var(--soft-blue);
  border-left-color: var(--cta-deep);
  outline: none;
}
.suggestions-selected {
  background: var(--pale-blue);
}
.suggestions-hint {
  padding: 8px 12px;
  overflow: hidden;
  color: var(--body-gray);
  font-size: 12px;
  line-height: 1.4;
}
.suggestions-value {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.suggestions-subtext {
  color: var(--body-gray);
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.82;
  margin-top: 2px;
}
.suggestions-value[data-suggestion-status="LIQUIDATED"] {
  position: relative;
}
.suggestions-value[data-suggestion-status="LIQUIDATED"]::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(0, 0, 0, .4);
  content: "";
}
.privacy-check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 14px;
  background: var(--soft-blue);
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  color: var(--body-gray);
  font-size: 13px;
  line-height: 1.45;
}
.privacy-check input {
  width: 18px; height: 18px;
  margin: 1px 0 0;
  flex-shrink: 0;
  accent-color: var(--cta-deep);
}
.privacy-check a {
  color: var(--cta-deep);
  font-weight: 700;
}
.contact-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  position: relative;
}
.contact-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: contact-spin .8s linear infinite;
}
.contact-submit.is-loading .contact-submit-spinner { display: inline-block; }
@keyframes contact-spin {
  to { transform: rotate(360deg); }
}
.contact-form-status {
  min-height: 18px;
  color: var(--body-gray);
  font-size: 13px;
  line-height: 1.4;
}
.contact-form-status:empty { display: none; }
.contact-form-status.is-success { color: var(--success); }
.contact-form-status.is-error { color: var(--danger); }
.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.15);
}
.contact-submit.is-loading {
  opacity: 0.82;
  cursor: progress;
  filter: none;
}
body.contact-modal-open { overflow: hidden; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px; z-index: 90;
  max-width: 1120px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(5, 12, 38, 0.16);
}
.cookie-banner p {
  margin: 0;
  color: var(--body-gray);
  font-size: 13px;
  line-height: 1.45;
}
.cookie-banner a {
  color: var(--cta-deep);
  font-weight: 700;
}
.cookie-banner .btn {
  flex-shrink: 0;
  padding: 10px 22px;
}

/* GENERIC */
.section { padding-top: 56px; padding-bottom: 56px; }
.section-tight { padding-top: 40px; padding-bottom: 40px; }
.section-title {
  text-align: center; font-size: 28px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.01em; margin: 0 0 28px;
}
.page-tag {
  display: inline-block; background: var(--blue-panel);
  color: var(--cta-deep); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; padding: 6px 14px;
  border-radius: 24px; text-transform: uppercase;
}

.cta-banner {
  background: linear-gradient(135deg, #EAF1FF 0%, #DDE7FF 100%);
  border-radius: 20px; padding: 28px 36px;
  display: flex; align-items: center; gap: 28px;
  border: 1px solid var(--blue-panel);
}
.cta-banner-img { width: 130px; flex-shrink: 0; }
.cta-banner-img img { width: 100%; mix-blend-mode: multiply; }
.cta-banner-body { flex: 1; }
.cta-banner h3 {
  margin: 0 0 6px; font-size: 20px;
  font-weight: 800; color: var(--ink);
}
.cta-banner p { margin: 0 0 16px; color: var(--body-gray); font-size: 13px; }
.cta-banner-actions { display: flex; gap: 10px; }

/* MODULE HERO (used by inner pages) */
.module-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 48px; align-items: center;
  padding-top: 48px; padding-bottom: 56px;
  min-height: 540px;
}
.home-hero, .legal-hero { min-height: 540px; }
.module-hero-img img,
.home-hero-img img,
.legal-hero-img img {
  max-height: 420px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .module-hero, .home-hero, .legal-hero { min-height: 0; }
  .module-hero-img img, .home-hero-img img, .legal-hero-img img { max-height: none; }
}
.module-hero h1 {
  font-size: 36px; font-weight: 800; line-height: 1.14;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 14px 0 16px;
}
.module-hero p {
  color: var(--body-gray); font-size: 14px;
  line-height: 1.6; margin: 0 0 24px; max-width: 460px;
}
.hero-actions { display: flex; gap: 10px; }
.module-hero-img {
  background: var(--white); border: 1px solid var(--line-blue);
  border-radius: 16px; padding: 8px;
  box-shadow: var(--sh-2); overflow: hidden;
}
.module-hero-img img { border-radius: 10px; width: 100%; }

/* PROCESS NUMBERED CARDS */
.process-grid { display: grid; gap: 10px; }
.process-card {
  background: var(--white); border: 1px solid var(--line-blue);
  border-radius: 12px; padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.process-num {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 7px; background: var(--soft-blue);
  color: var(--cta-deep); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.process-card h4 {
  margin: 0 0 3px; font-size: 13px; font-weight: 700; color: var(--ink);
}
.process-card p { margin: 0; color: var(--body-gray); font-size: 12px; line-height: 1.45; }

/* CHECK LIST */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 10px; padding: 5px 0;
  font-size: 13px; color: var(--ink); align-items: flex-start;
}
.check-list li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" fill="%23E0EAFF"/><path d="M8 12.5l3 3 5-6" stroke="%231358E1" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
  margin-top: 2px;
}

/* BLOG */
.blog-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 36px;
  min-width: 0;
}
.blog-hero-copy {
  min-width: 0;
}
.blog-hero h1 {
  max-width: 760px;
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  overflow-wrap: break-word;
}
.blog-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--body-gray);
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: break-word;
}
.blog-hero-media {
  min-width: 0;
  margin: 0;
}
.blog-hero-media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(16, 65, 188, 0.10));
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  min-width: 0;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}
.article-card {
  display: flex;
  min-width: 0;
  max-width: 100%;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.article-card:hover,
.article-card:focus-visible {
  border-color: var(--cta-blue);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
  outline: none;
}
.article-card-featured {
  grid-column: 1 / -1;
  min-height: 300px;
  background: linear-gradient(135deg, #F7FAFF 0%, #EEF4FF 100%);
}
.article-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--secondary-gray);
  font-size: 12px;
  font-weight: 700;
}
.article-tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  color: var(--cta-deep);
  background: var(--blue-panel);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.article-card h2,
.article-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  overflow-wrap: break-word;
}
.article-card h3 { font-size: 18px; }
.article-card p {
  margin: 0 0 18px;
  color: var(--body-gray);
  font-size: 14px;
  line-height: 1.58;
}
.article-card .more {
  margin-top: auto;
  color: var(--link-blue);
  font-size: 14px;
  font-weight: 800;
}
.blog-sidebar {
  min-width: 0;
  max-width: 100%;
  padding: 22px;
  background: var(--soft-blue);
  border: 1px solid var(--line-blue);
  border-radius: 12px;
}
.blog-sidebar h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}
.blog-sidebar p {
  margin: 0 0 16px;
  color: var(--body-gray);
  font-size: 13px;
  line-height: 1.55;
}
.blog-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-topic-list span {
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--line-blue);
  border-radius: 20px;
  color: var(--body-gray);
  font-size: 12px;
  font-weight: 700;
}
.article-page {
  max-width: 840px;
  padding-top: 54px;
  min-width: 0;
}
.article-page h1 {
  margin: 14px 0 14px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: break-word;
}
.article-lead {
  margin: 0 0 26px;
  color: var(--body-gray);
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: break-word;
}
.article-body {
  padding-top: 12px;
  color: var(--ink);
  min-width: 0;
}
.article-body h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}
.article-body p {
  margin: 0 0 16px;
  color: var(--body-gray);
  font-size: 15px;
  line-height: 1.75;
}
.article-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--body-gray);
}
.article-body li { margin-bottom: 8px; }
.article-note {
  margin: 28px 0;
  padding: 20px 22px;
  background: var(--soft-blue);
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  color: var(--ink);
}
.article-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, #EAF1FF 0%, #DDE7FF 100%);
  border: 1px solid var(--blue-panel);
  border-radius: 14px;
}
.article-promo h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}
.article-promo p {
  max-width: 560px;
  margin: 0;
  color: var(--body-gray);
  font-size: 14px;
  line-height: 1.6;
}
.article-promo .btn {
  flex-shrink: 0;
}
.article-bottom-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}
.article-bottom-nav a {
  color: var(--link-blue);
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .module-hero { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .module-hero > * { min-width: 0; }
  .module-hero h1 { font-size: 30px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
}
@media (max-width: 900px) {
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-hero-media img {
    max-height: 360px;
  }
}
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
  .header-phone { font-size: 13px; }
  .site-header-inner { gap: 20px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }

  .mobile-nav {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white);
    border-top: 1px solid var(--line-blue);
    border-bottom: 1px solid var(--line-blue);
    box-shadow: var(--sh-2);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  body.menu-open .mobile-nav {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .mobile-nav .mobile-nav-inner { padding: 12px 16px 36px; }
  .mobile-nav-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column;
  }
  .mobile-nav-links li { border-bottom: 1px solid var(--line-light); }
  .mobile-nav-links li:last-child { border-bottom: 0; }
  .mobile-nav-links a {
    display: block; padding: 14px 4px;
    font-size: 16px; font-weight: 600; color: var(--ink);
  }
  .mobile-nav-links a.active { color: var(--cta-deep); }
  .mobile-nav-phone {
    display: block; margin-top: 16px; padding: 12px 4px;
    font-size: 16px; font-weight: 700; color: var(--ink);
    border-top: 1px solid var(--line-light);
  }
  .mobile-nav-actions {
    display: flex; flex-direction: column;
    gap: 10px; margin-top: 12px;
  }
  .mobile-nav-actions .btn {
    width: 100%; justify-content: center;
    padding: 12px 20px; font-size: 15px;
  }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .site-header-inner { height: 64px; gap: 16px; }
  .nav-links { display: none; }
  .header-phone { display: none; }
  body.menu-open .mobile-nav { max-height: calc(100vh - 64px); }
  .section { padding-top: 40px; padding-bottom: 40px; }
  .section-tight { padding-top: 56px; }
  .section-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .cta-banner { flex-direction: column; padding: 22px; text-align: center; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; }
  .contact-modal { padding: 16px; align-items: flex-end; }
  .contact-modal-panel { padding: 24px 20px 20px; border-radius: 16px; }
  .contact-modal h2 { font-size: 22px; }
  .cookie-banner {
    left: 12px; right: 12px; bottom: 12px;
    flex-direction: column; align-items: stretch;
    padding: 14px;
  }
  .cookie-banner .btn { width: 100%; }
  .module-hero { padding-top: 28px; padding-bottom: 36px; gap: 24px; }
  .module-hero h1 { font-size: 24px; margin: 12px 0 12px; }
  .module-hero p { font-size: 14px; max-width: 100%; margin-bottom: 20px; }
  .module-hero .hero-actions { flex-wrap: nowrap; gap: 8px; }
  .module-hero .btn-lg { padding: 11px 14px; font-size: 13px; white-space: nowrap; }
  .module-hero h1 .dash-mobile { display: none; }
  .process-grid { grid-auto-rows: 1fr; }
  .blog-hero { padding-top: 34px; padding-bottom: 18px; }
  .blog-hero-media img { max-height: 260px; }
  .blog-hero h1,
  .article-page h1 { font-size: 28px; }
  .blog-hero p,
  .article-lead { font-size: 15px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card,
  .article-card-featured { min-height: 0; padding: 20px; }
  .article-page { padding-top: 34px; }
  .article-page,
  .article-page *,
  .blog-hero,
  .blog-hero *,
  .blog-layout,
  .article-grid,
  .article-card {
    max-width: 100%;
  }
  .article-page h1,
  .article-lead,
  .article-body h2,
  .article-body p,
  .article-body li,
  .article-note,
  .article-promo,
  .article-promo h2,
  .article-promo p,
  .blog-hero h1,
  .blog-hero p,
  .article-card h2,
  .article-card h3,
  .article-card p {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .article-body h2 { font-size: 21px; }
  .article-promo {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .article-promo .btn { width: 100%; }
  .article-bottom-nav { flex-direction: column; }
}
