:root {
  --brand: #1f7a45;
  --brand-dark: #155f35;
  --brand-soft: #e8f4ed;
  --accent: #f28a16;
  --ink: #17202a;
  --muted: #637083;
  --line: #dce3e9;
  --surface: #ffffff;
  --surface-alt: #f5f7f9;
  --danger: #b42318;
  --success: #087443;
  --shadow: 0 8px 24px rgba(25, 39, 52, 0.08);
  --radius: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #17202a;
  color: var(--ink);
  background: #f5f7f9;
  background: var(--surface-alt);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.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;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 2000;
  padding: 10px 14px;
  background: #17202a;
  color: #fff;
  border-radius: 6px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: calc(100% - 32px);
  max-width: 1180px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.container.narrow { max-width: 860px; }
.section { padding: 72px 0; }
.section-white { background: #fff; background: var(--surface); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: #17202a;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
h1 { margin-bottom: 20px; font-size: 46px; font-size: clamp(34px, 5vw, 54px); }
h2 { margin-bottom: 16px; font-size: 32px; font-size: clamp(26px, 3vw, 36px); }
h3 { margin-bottom: 10px; font-size: 20px; }
p { margin-bottom: 18px; }
.lead { max-width: 760px; color: #4f5e70; font-size: 20px; line-height: 1.55; }
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #155f35;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid rgba(242, 138, 22, .38);
  outline-offset: 2px;
}
.button-primary { background: #1f7a45; background: var(--brand); color: #fff; border-color: #1f7a45; border-color: var(--brand); }
.button-primary:hover { background: #155f35; background: var(--brand-dark); border-color: #155f35; border-color: var(--brand-dark); box-shadow: 0 5px 16px rgba(31, 122, 69, .18); }
.button-secondary { background: #fff; color: #17202a; border-color: #c9d2da; }
.button-secondary:hover { border-color: #8d9aa8; background: #fafbfc; }
.button-small { min-height: 40px; padding: 9px 14px; font-size: 14px; }
.button-block { width: 100%; }
.text-link, .link-button {
  color: #155f35;
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.link-button { padding: 0; border: 0; background: transparent; }

.utility-bar { background: #17202a; color: #dce4ea; font-size: 13px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-inner div { display: flex; gap: 18px; }
.utility-inner a { color: #fff; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #dce3e9;
  border-bottom-color: var(--line);
}
.header-main { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #17202a; text-decoration: none; font-size: 18px; font-weight: 850; white-space: nowrap; }
.brand-mark { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 7px; background: #1f7a45; color: #fff; font-size: 13px; letter-spacing: .04em; }
.primary-nav { display: flex; flex: 1; align-items: center; gap: 24px; }
.primary-nav a { color: #374556; text-decoration: none; font-size: 15px; font-weight: 650; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: #155f35; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-link { min-width: 42px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #d3dbe2; border-radius: 8px; color: #263445; text-decoration: none; font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid #d3dbe2; border-radius: 8px; background: #fff; }
.menu-toggle > span:not(.visually-hidden) { display: block; height: 2px; margin: 4px 0; background: #263445; }

.hero { padding-top: 80px; padding-bottom: 74px; background: #fff; }
.hero-grid, .service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 64px; align-items: center; }
.hero-copy .lead { max-width: 720px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 0; list-style: none; color: #4f5e70; font-size: 14px; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: #1f7a45; font-weight: 900; }
.control-card { border: 1px solid #d6dee5; border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(25, 39, 52, .09); overflow: hidden; }
.control-card-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid #e2e7eb; font-size: 14px; }
.control-card-head strong { color: #087443; font-size: 12px; text-transform: uppercase; }
.control-row { display: grid; grid-template-columns: 12px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 18px; border-bottom: 1px solid #edf0f2; }
.control-row div { display: flex; flex-direction: column; }
.control-row strong { font-size: 15px; }
.control-row small { margin-top: 2px; color: #687587; }
.control-row b { color: #a1abb7; font-size: 13px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #1f7a45; box-shadow: 0 0 0 4px #e8f4ed; }
.control-summary { display: flex; flex-direction: column; gap: 2px; padding: 18px; background: #f5f7f9; }
.control-summary span { color: #687587; font-size: 13px; }
.control-summary strong { font-size: 15px; }

.platform-strip { padding: 28px 0; border-top: 1px solid #dce3e9; border-bottom: 1px solid #dce3e9; background: #f5f7f9; }
.platform-strip p { margin-bottom: 14px; color: #667486; font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.platform-scroll { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-chip { display: inline-flex; align-items: baseline; gap: 8px; min-height: 38px; padding: 8px 11px; border: 1px solid #d7dfe6; border-radius: 7px; background: #fff; }
.platform-chip strong { font-size: 14px; }
.platform-chip small { color: #758193; font-size: 11px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { display: flex; min-width: 0; flex-direction: column; padding: 22px; border: 1px solid #dce3e9; border-radius: 10px; background: #fff; box-shadow: 0 1px 0 rgba(25, 39, 52, .02); }
.service-card:hover { border-color: #b8c5cf; box-shadow: 0 8px 22px rgba(25, 39, 52, .07); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.service-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 8px; background: #e8f4ed; color: #155f35; font-weight: 900; }
.service-price { color: #4c5969; font-size: 13px; text-align: right; }
.service-price small { display: block; color: #7d8896; }
.service-card h3 a { text-decoration: none; }
.service-card h3 a:hover { color: #155f35; }
.service-card > p { flex: 1; color: #5f6c7d; font-size: 15px; }
.service-platforms { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 18px; }
.service-platforms span { padding: 5px 7px; border-radius: 5px; background: #f0f3f5; color: #596676; font-size: 11px; }
.service-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card-actions .text-link { font-size: 14px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step-card { padding: 22px; border-left: 3px solid #1f7a45; background: #f5f7f9; }
.step-card > span { display: block; margin-bottom: 20px; color: #a1abb7; font-size: 13px; font-weight: 800; }
.step-card p { margin-bottom: 0; color: #5f6c7d; font-size: 14px; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 52px; align-items: start; }
.prose { min-width: 0; color: #374556; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 34px; font-size: 27px; }
.prose h3 { margin-top: 26px; }
.prose a { color: #155f35; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote { margin: 24px 0; padding: 18px 20px; border-left: 4px solid #1f7a45; background: #f5f7f9; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { padding: 10px; border: 1px solid #dce3e9; text-align: left; }
.intro-prose { padding-right: 20px; }
.side-card, .price-box { padding: 24px; border: 1px solid #d7dfe6; border-radius: 10px; background: #fff; box-shadow: 0 6px 18px rgba(25, 39, 52, .06); }
.side-card h2 { font-size: 23px; }
.side-card p { color: #5f6c7d; }
.side-card > a, .side-card > span { display: block; margin-bottom: 10px; overflow-wrap: anywhere; }
.check-list { padding: 0; margin: 0 0 22px; list-style: none; }
.check-list li { padding: 8px 0 8px 27px; position: relative; border-bottom: 1px solid #edf0f2; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #1f7a45; font-weight: 900; }

.page-head { padding-top: 68px; padding-bottom: 48px; background: #fff; border-bottom: 1px solid #dce3e9; }
.page-intro { margin-top: 28px; }
.page-intro p:last-child { margin-bottom: 0; }
.breadcrumbs { padding-top: 24px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px 10px; padding: 0; margin: 0; list-style: none; color: #697688; font-size: 13px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 10px; color: #a4aeba; }
.breadcrumbs a { color: #465467; }
.service-hero { padding-top: 52px; background: #fff; }
.price-box > span { display: block; margin-bottom: 8px; color: #667486; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.price-box > strong { display: block; margin-bottom: 14px; color: #17202a; font-size: 32px; line-height: 1.15; }
.price-box strong small { display: block; margin-top: 5px; color: #596676; font-size: 14px; font-weight: 650; }
.price-box p { margin-bottom: 0; color: #687587; font-size: 14px; }

.service-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-button { min-height: 40px; padding: 8px 13px; border: 1px solid #d0d9e0; border-radius: 7px; background: #fff; color: #3c4a5b; font-weight: 700; }
.filter-button:hover, .filter-button.active { border-color: #1f7a45; background: #e8f4ed; color: #155f35; }

.table-scroll { overflow-x: auto; border: 1px solid #dce3e9; border-radius: 10px; background: #fff; }
.price-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.price-table caption { padding: 18px 20px; color: #17202a; font-size: 18px; font-weight: 800; text-align: left; }
.price-table th, .price-table td { padding: 18px 20px; border-top: 1px solid #e5eaee; text-align: left; vertical-align: middle; }
.price-table thead th { background: #f5f7f9; color: #5b6878; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.price-table tbody th { width: 58%; font-weight: 750; }
.price-table tbody th a { text-decoration: none; }
.price-table tbody th a:hover { color: #155f35; }
.price-table tbody th small { display: block; margin-top: 5px; color: #6b7788; font-weight: 400; }
.price-table td:nth-child(2) { white-space: nowrap; }
.price-table td:last-child { width: 120px; text-align: right; }
.table-note { margin: 16px 0 0; color: #6b7788; font-size: 13px; }

.platform-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.platform-card { display: flex; min-height: 250px; flex-direction: column; padding: 22px; border: 1px solid #dce3e9; border-radius: 10px; background: #fff; }
.platform-card > span { color: #6b7788; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.platform-card h2 { margin: 16px 0 12px; font-size: 23px; }
.platform-card p { flex: 1; color: #5f6c7d; font-size: 14px; }

.cta-section { background: #e8f4ed; border-top: 1px solid #cee4d6; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { max-width: 700px; margin-bottom: 0; color: #405449; }
.cta-actions { flex: 0 0 auto; margin: 0; }

.site-footer { padding-top: 52px; background: #17202a; color: #cbd4dc; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 42px; padding-bottom: 40px; }
.brand-footer { margin-bottom: 18px; color: #fff; }
.footer-grid p { max-width: 460px; color: #aeb9c4; font-size: 13px; }
.footer-grid h2 { margin-bottom: 14px; color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid a, .footer-grid span, .footer-grid .link-button { display: block; margin: 8px 0; color: #cbd4dc; font-size: 14px; text-align: left; text-decoration: none; }
.footer-grid a:hover, .footer-grid .link-button:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid #34404b; color: #98a5b2; font-size: 12px; }

.modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; inset: 0; z-index: 1500; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; background: rgba(11, 18, 24, .72); }
.modal-panel { position: relative; z-index: 1; width: 100%; max-width: 620px; max-height: calc(100vh - 40px); overflow-y: auto; padding: 28px; border-radius: 12px; background: #fff; box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }
.modal-close { position: absolute; right: 14px; top: 12px; width: 40px; height: 40px; border: 0; border-radius: 7px; background: #f1f3f5; color: #344253; font-size: 26px; line-height: 1; }
.modal-panel h2 { padding-right: 46px; font-size: 28px; }
.modal-service { padding: 10px 12px; border-left: 3px solid #1f7a45; background: #f5f7f9; color: #455365; font-size: 14px; }
.form-field { margin-bottom: 15px; }
.form-field label { display: block; margin-bottom: 6px; color: #344253; font-size: 13px; font-weight: 750; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #bdc8d1;
  border-radius: 7px;
  background: #fff;
  color: #17202a;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: #1f7a45; box-shadow: 0 0 0 3px rgba(31, 122, 69, .12); outline: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint, .legal-hint { color: #6b7788; font-size: 12px; }
.form-error { margin-bottom: 14px; padding: 10px 12px; border: 1px solid #efb8b2; border-radius: 7px; background: #fff1f0; color: #b42318; font-size: 13px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 1200; }
.chat-launcher { display: inline-flex; min-height: 54px; align-items: center; gap: 9px; padding: 11px 17px; border: 0; border-radius: 27px; background: #1f7a45; color: #fff; box-shadow: 0 8px 24px rgba(20, 70, 43, .28); font-weight: 800; }
.chat-launcher-icon { font-size: 20px; }
.chat-panel { position: absolute; right: 0; bottom: 68px; width: 370px; max-width: calc(100vw - 28px); border: 1px solid #ccd5dd; border-radius: 12px; background: #fff; box-shadow: 0 18px 50px rgba(20, 31, 42, .24); overflow: hidden; }
.chat-panel header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #17202a; color: #fff; }
.chat-panel header div { display: flex; flex-direction: column; }
.chat-panel header span { color: #b8c3cc; font-size: 11px; }
.chat-panel header button { width: 36px; height: 36px; border: 0; border-radius: 6px; background: #2e3944; color: #fff; font-size: 23px; }
.chat-messages { height: 330px; overflow-y: auto; padding: 14px; background: #f5f7f9; }
.chat-message { display: flex; margin: 8px 0; }
.chat-message p { max-width: 84%; margin: 0; padding: 10px 12px; border-radius: 9px; background: #fff; border: 1px solid #dce3e9; color: #344253; font-size: 14px; white-space: pre-wrap; word-wrap: break-word; overflow-wrap: anywhere; }
.chat-message.visitor { justify-content: flex-end; }
.chat-message.visitor p { border-color: #cde4d5; background: #e8f4ed; }
.chat-message time { display: block; margin-top: 4px; color: #8792a0; font-size: 10px; }
.chat-panel form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px; border-top: 1px solid #dce3e9; }
.chat-panel textarea { min-width: 0; min-height: 44px; max-height: 110px; padding: 9px 10px; resize: vertical; border: 1px solid #bdc8d1; border-radius: 7px; }
.chat-note { margin: 0; padding: 0 12px 10px; color: #7a8795; font-size: 10px; }

.consent-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 1400; display: flex; max-width: 1040px; align-items: center; justify-content: space-between; gap: 28px; margin: 0 auto; padding: 18px 20px; border: 1px solid #cbd4dc; border-radius: 10px; background: #fff; box-shadow: 0 12px 34px rgba(20, 31, 42, .2); }
.consent-banner strong { display: block; margin-bottom: 4px; }
.consent-banner p { margin: 0; color: #5c6979; font-size: 13px; }
.consent-actions { display: flex; flex: 0 0 auto; gap: 8px; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 2000; transform: translateX(-50%); max-width: calc(100vw - 32px); padding: 12px 16px; border-radius: 8px; background: #17202a; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.22); font-size: 14px; }
.toast.error { background: #8f2018; }

@media (max-width: 1040px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 14px; }
  .header-actions .button { display: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: flex-end; }
  .header-main { min-height: 66px; gap: 12px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 16px; border-bottom: 1px solid #dce3e9; background: #fff; box-shadow: 0 10px 20px rgba(25, 39, 52, .1); }
  .primary-nav.open { display: flex; }
  .primary-nav a { min-height: 44px; display: flex; align-items: center; padding: 8px 4px; border-bottom: 1px solid #edf0f2; }
  .header-actions { gap: 8px; }
  .hero-grid, .service-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 56px; }
  .content-layout { grid-template-columns: 1fr; gap: 30px; }
  .side-card, .price-box { max-width: none; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 22px; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 24px); }
  .section { padding: 52px 0; }
  .utility-inner div { width: 100%; justify-content: space-between; gap: 10px; }
  .utility-inner a { font-size: 12px; }
  .brand > span:last-child { display: none; }
  .header-actions .language-link { min-width: 40px; }
  h1 { font-size: 35px; }
  h2 { font-size: 27px; }
  .lead { font-size: 18px; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .hero-points { display: block; }
  .hero-points li { margin: 8px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .service-grid, .steps-grid, .platform-grid { grid-template-columns: 1fr; }
  .service-card { padding: 19px; }
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 8px; }
  .modal-panel { max-height: calc(100vh - 16px); padding: 22px 18px; border-radius: 9px; }
  .chat-widget { right: 12px; bottom: 12px; }
  .chat-launcher { width: 54px; padding: 0; justify-content: center; }
  .chat-launcher > span:last-child { display: none; }
  .chat-panel { right: 0; bottom: 64px; width: calc(100vw - 24px); }
  .chat-messages { height: min(330px, 45vh); }
  .consent-banner { left: 8px; right: 8px; bottom: 8px; align-items: stretch; flex-direction: column; gap: 14px; }
  .consent-actions { width: 100%; }
  .consent-actions .button { flex: 1; }
}

@media (pointer: coarse) {
  .primary-nav a, .text-link, .link-button { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (forced-colors: active) {
  .button, .service-card, .side-card, .control-card, .platform-card { border: 1px solid ButtonText; }
  .status-dot { forced-color-adjust: none; background: Highlight; }
}

@media print {
  .utility-bar, .site-header, .chat-widget, .consent-banner, .button, .cta-section { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 24px 0; }
  .service-card, .side-card, .price-box { box-shadow: none; break-inside: avoid; }
}
