:root {
  --navy: #102a43;
  --navy-2: #0a1e31;
  --blue: #12679f;
  --blue-dark: #0c527f;
  --teal: #178b91;
  --sky: #eaf4f8;
  --cream: #f8f5ee;
  --green: #137a4b;
  --gold: #f3c64d;
  --red: #b42318;
  --ink: #182630;
  --muted: #52636f;
  --line: #d8e1e7;
  --light: #f5f8fa;
  --white: #fff;
  --shadow: 0 24px 70px rgba(15, 42, 63, .12);
  --shadow-soft: 0 12px 34px rgba(15, 42, 63, .07);
  --radius: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 860px; }
.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: 9999; left: 16px; top: -100px; background: #fff; color: #000; padding: 12px 18px; border: 3px solid var(--gold); font-weight: 800; }
.skip-link:focus { top: 12px; }

.service-bar { background: var(--navy-2); color: #d6e5ee; font-size: .76rem; letter-spacing: .025em; }
.service-bar-inner { min-height: 32px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.service-bar span { display: inline-flex; align-items: center; gap: 8px; }
.service-bar span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #64c4c9; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(216,225,231,.92); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand img { display: block; border-radius: 11px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.08rem; letter-spacing: -.015em; }
.brand small { max-width: 230px; font-size: .71rem; color: var(--muted); line-height: 1.2; }
.main-nav { display: flex; align-items: center; gap: 21px; }
.main-nav a { position: relative; font-weight: 720; font-size: .94rem; color: var(--navy); text-decoration: none; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal); transition: right .18s ease; }
.main-nav a:not(.nav-cta):hover::after { right: 0; }
.main-nav .nav-cta { background: var(--navy); color: #fff; padding: 10px 17px; border-radius: 8px; }
.main-nav .nav-cta:hover { background: var(--blue); color: #fff; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; color: var(--navy); padding: 9px 13px; border-radius: 8px; font-weight: 750; }

.hero { position: relative; overflow: hidden; padding: 92px 0 84px; background: #f8fbfc; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55; background-image: linear-gradient(rgba(18,103,159,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(18,103,159,.055) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, #000, transparent 80%); }
.hero::after { content: ""; position: absolute; width: 470px; height: 470px; right: -230px; top: -250px; border-radius: 50%; border: 72px solid rgba(23,139,145,.07); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 70px; align-items: center; }
.eyebrow { display: inline-block; color: var(--blue); font-size: .76rem; letter-spacing: .115em; text-transform: uppercase; font-weight: 850; margin-bottom: 11px; }
.hero h1, .section h1 { max-width: 800px; font-size: clamp(2.8rem, 5.5vw, 5.25rem); line-height: .99; letter-spacing: -.052em; color: var(--navy); margin: 0 0 26px; }
.lead { max-width: 760px; margin: 0; font-size: 1.2rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 22px; border: 2px solid transparent; border-radius: 8px; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button:focus-visible, .main-nav a:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible, .text-link:focus-visible { outline: 4px solid var(--gold); outline-offset: 3px; }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(18,103,159,.18); }
.button-primary:hover { background: var(--blue-dark); color: #fff; }
.button-secondary { background: #fff; color: var(--navy); border-color: #bfd0db; }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }
.button-light { background: #fff; color: var(--navy); }
.button-block { width: 100%; }
.button-large { min-height: 58px; font-size: 1.04rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 13px 25px; color: var(--muted); font-size: .91rem; }
.hero-proof span { display: inline-flex; align-items: baseline; gap: 6px; }
.hero-proof strong { color: var(--navy); font-size: 1.03rem; }

.product-card { position: relative; background: #fff; border: 1px solid #cfdae1; box-shadow: var(--shadow); padding: 28px; border-radius: 14px; }
.product-card::before { content: ""; position: absolute; top: 0; left: 28px; width: 82px; height: 4px; background: var(--teal); }
.product-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.product-kicker { display: block; color: var(--muted); font-size: .78rem; }
.product-card h2 { margin: 3px 0 0; color: var(--navy); letter-spacing: -.035em; font-size: 1.85rem; }
.product-card h2 b { font-weight: 500; color: var(--teal); }
.version-chip { flex: 0 0 auto; background: var(--sky); color: var(--blue-dark); border: 1px solid #cce0ea; border-radius: 999px; padding: 5px 10px; font-size: .73rem; font-weight: 800; }
.product-window { margin: 23px 0; border: 1px solid #cbd7df; border-radius: 10px; overflow: hidden; background: #eef4f7; box-shadow: 0 12px 32px rgba(16,42,67,.12); }
.window-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 11px; background: #fff; border-bottom: 1px solid #d6e0e6; }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #c2cdd4; }
.window-bar i:nth-child(1) { background: #e69d91; }
.window-bar i:nth-child(2) { background: #eccf7d; }
.window-bar i:nth-child(3) { background: #77c19b; }
.window-bar span { margin-left: 7px; color: #7a8b96; font-size: .66rem; }
.window-layout { display: grid; grid-template-columns: 92px 1fr; min-height: 178px; }
.window-nav { padding: 19px 13px; background: var(--navy); }
.window-nav b { display: block; height: 6px; margin: 0 0 13px; border-radius: 5px; background: rgba(255,255,255,.22); }
.window-nav b:first-child { width: 72%; background: #65c5ca; }
.window-content { padding: 21px; background: #f8fafb; }
.window-content > strong { display: block; width: 48%; height: 13px; background: #23415a; border-radius: 3px; }
.window-content > span { display: block; height: 7px; margin-top: 11px; background: #cbd8df; border-radius: 3px; }
.window-content > span:nth-of-type(1) { width: 82%; }
.window-content > span:nth-of-type(2) { width: 61%; }
.window-content > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 25px; }
.window-content > div i { height: 57px; border-radius: 5px; background: #fff; border: 1px solid #d9e2e7; box-shadow: 0 4px 11px rgba(16,42,67,.05); }
.product-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 3px 0 20px; border-bottom: 1px solid var(--line); }
.product-price-row small, .product-price-row strong, .product-price-row span { display: block; }
.product-price-row small { color: var(--muted); font-size: .75rem; }
.product-price-row strong { margin-top: 2px; color: var(--navy); font-size: 1.65rem; line-height: 1.15; }
.product-price-row strong em { font-style: normal; font-size: .72rem; color: var(--muted); }
.product-price-row span { color: var(--muted); font-size: .78rem; }
.product-list { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; color: #40525f; font-size: .88rem; }
.product-list li { position: relative; padding-left: 22px; }
.product-list li::before { content: ""; position: absolute; left: 1px; top: .61em; width: 9px; height: 5px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

.trust-strip { background: var(--navy); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { position: relative; padding: 25px 28px; border-left: 1px solid rgba(255,255,255,.13); }
.trust-grid > div:first-child { border-left: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 1.03rem; }
.trust-grid span { margin-top: 3px; color: #bdd1df; font-size: .79rem; }

.section { padding: 92px 0; }
.section:not(.order-section):not(.legal-page):not(.status-section) { content-visibility: auto; contain-intrinsic-size: 1px 850px; }
.section-muted { background: var(--light); }
.section-dark { background: var(--navy-2); color: #fff; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.heading-row { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.section-heading h2, .split h2, .demo-banner h2, .order-intro h2, .package-layout h2 { max-width: 820px; font-size: clamp(2.05rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.04em; color: var(--navy); margin: 0 0 17px; }
.section-heading p, .split > div > p, .package-layout > div > p { color: var(--muted); font-size: 1.07rem; }
.heading-row p { margin: 0 0 4px; }
.section-heading-light h2 { color: #fff; }
.section-heading-light p { color: #c7d9e8; }

.audience-section { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d7d2c6; border-bottom: 1px solid #d7d2c6; }
.audience-grid article { min-height: 240px; padding: 29px 25px 30px; border-left: 1px solid #d7d2c6; }
.audience-grid article:first-child { border-left: 0; }
.audience-grid article > span { display: block; color: #9d8d6c; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .74rem; }
.audience-grid h3 { color: var(--navy); margin: 43px 0 8px; font-size: 1.15rem; line-height: 1.25; }
.audience-grid p { color: var(--muted); margin: 0; font-size: .92rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.feature-card { position: relative; min-height: 235px; padding: 28px 30px 32px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card:nth-child(3n+1) { border-left: 1px solid var(--line); }
.feature-card:hover { z-index: 1; background: #f9fcfd; box-shadow: var(--shadow-soft); }
.feature-number { display: block; color: #93a4af; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .76rem; }
.feature-card h3 { color: var(--navy); margin: 34px 0 8px; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.split-top { align-items: start; }
.check-list { padding: 0; margin: 23px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin: 11px 0; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: .66em; width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.check-list.compact li { margin: 7px 0; }
.editor-demo { overflow: hidden; border: 1px solid #cbd8e0; border-radius: 11px; background: #fff; box-shadow: var(--shadow); transform: rotate(.45deg); }
.editor-top { display: flex; gap: 7px; padding: 12px; background: #e8eef2; }
.editor-top span { width: 10px; height: 10px; border-radius: 50%; background: #a6b5bf; }
.editor-toolbar { display: flex; gap: 13px; padding: 13px 17px; border-bottom: 1px solid var(--line); color: var(--navy); }
.editor-toolbar > * { min-width: 22px; text-align: center; }
.editor-body { padding: 28px; }
.editor-body small, .editor-body strong { display: block; }
.editor-body small { color: var(--muted); margin: 13px 0 5px; }
.editor-body > strong, .editor-body > p { border: 1px solid var(--line); border-radius: 7px; padding: 12px; }
.editor-body > p { min-height: 94px; color: var(--muted); }
.editor-row { display: flex; justify-content: space-between; align-items: center; }
.editor-row span { background: #fff6d8; color: #6f5200; padding: 5px 9px; border-radius: 99px; font-size: .8rem; font-weight: 800; }
.editor-row button { background: var(--blue); color: #fff; border: 0; border-radius: 7px; padding: 9px 13px; }

.module-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.module-grid article { grid-column: span 2; min-height: 225px; background: var(--navy); color: #fff; padding: 27px; border-top: 4px solid transparent; }
.module-grid article:nth-child(1), .module-grid article:nth-child(2) { grid-column: span 3; }
.module-grid article:nth-child(1) { border-top-color: #5ec0c5; }
.module-grid article:nth-child(2) { border-top-color: #efc967; }
.module-grid article:nth-child(3) { border-top-color: #7aa9cf; }
.module-grid article:nth-child(4) { border-top-color: #89bd9d; }
.module-grid article:nth-child(5) { border-top-color: #c99bb5; }
.module-grid h3 { margin: 0 0 10px; font-size: 1.2rem; }
.module-grid p { color: #c9d8e2; font-size: .92rem; margin-bottom: 0; }

.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compliance-panel { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); padding: 30px; }
.compliance-panel h3 { font-size: 1.3rem; margin-top: 0; }
.check-list.light { color: #d9e8f3; }
.check-list.light li::before { border-color: #6bcbd0; }
.legal-note { margin-top: 24px; padding: 18px 22px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.075); color: #e8f1f7; }
.security-card { background: var(--navy); color: #fff; padding: 30px; border-top: 5px solid var(--teal); }
.security-card h3 { margin-top: 0; }
.security-card dl { margin: 0; }
.security-card dl > div { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); }
.security-card dt { font-weight: 850; color: #8bd6dc; }
.security-card dd { margin: 4px 0 0; color: #d2e1eb; }

.requirements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.requirements-grid article { background: #fff; border: 1px solid var(--line); padding: 28px; }
.requirements-grid h3 { color: var(--navy); margin-top: 0; }
.requirements-grid ul { padding-left: 19px; }
.requirements-grid li { margin: 9px 0; }
.install-steps { margin-top: 20px; background: #fff; padding: 30px; border: 1px solid var(--line); }
.install-steps h3 { margin-top: 0; color: var(--navy); }
.install-steps ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; list-style: none; padding: 0; margin: 0; }
.install-steps li { font-weight: 720; font-size: .92rem; }
.install-steps li span { display: grid; place-items: center; width: 34px; height: 34px; background: var(--navy); color: #fff; border-radius: 50%; margin-bottom: 10px; }

.demo-banner { position: relative; overflow: hidden; background: var(--blue); color: #fff; padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.demo-banner::after { content: "DEMO"; position: absolute; right: 190px; top: -36px; color: rgba(255,255,255,.08); font-size: 8rem; font-weight: 900; letter-spacing: -.08em; }
.demo-banner > * { position: relative; z-index: 1; }
.demo-banner h2 { color: #fff; margin-bottom: 8px; }
.demo-banner p { margin: 0; color: #d9edf7; }
.demo-banner .eyebrow { color: #b6edf0; }

.package-section { background: #fff; }
.package-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 13px; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.scope-table { border-top: 1px solid var(--line); }
.scope-table > div { display: grid; grid-template-columns: 150px 1fr; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.scope-table strong { color: var(--navy); }
.scope-table span { color: var(--muted); }

.order-section { background: #edf4f7; }
.order-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: start; }
.order-intro { position: sticky; top: 105px; }
.order-summary { background: var(--navy); color: #fff; padding: 24px; margin: 25px 0; border-top: 5px solid var(--teal); }
.order-summary h3 { margin-top: 0; }
.order-summary > div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.14); }
.order-summary .total { font-size: 1.16rem; color: #fff; }
.order-form-card { background: #fff; border: 1px solid var(--line); padding: 35px; box-shadow: var(--shadow-soft); }
fieldset { border: 0; padding: 0; margin: 0 0 34px; }
legend { width: 100%; font-weight: 850; color: var(--navy); font-size: 1.15rem; padding: 0 0 10px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.form-grid.three { grid-template-columns: repeat(3, 1fr); }
.span-2 { grid-column: span 2; }
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 720; color: var(--navy); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 1px solid #aebecd; border-radius: 6px; padding: 11px 12px; color: var(--ink); background: #fff; }
.field input:hover, .field textarea:hover { border-color: var(--blue); }
.field input[aria-invalid=true], .field textarea[aria-invalid=true] { border-color: var(--red); border-width: 2px; }
.field-error { color: var(--red); font-size: .87rem; font-weight: 700; margin: 5px 0 0; }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; margin: 13px 0; }
.checkbox-row input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.receiver-fields[hidden] { display: none; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.payment-option { display: flex; gap: 12px; border: 2px solid var(--line); border-radius: 8px; padding: 16px; cursor: pointer; }
.payment-option:has(input:checked) { border-color: var(--blue); background: var(--sky); }
.payment-option input { width: 20px; height: 20px; flex: 0 0 auto; }
.payment-option strong, .payment-option small { display: block; }
.payment-option small { color: var(--muted); margin-top: 4px; }
.form-footnote { font-size: .85rem; color: var(--muted); text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { padding: 14px 17px; border-radius: 7px; margin-bottom: 20px; }
.alert-error { background: #fff0ef; color: #8f1d15; border: 1px solid #efb4af; }
.alert-warning { background: #fff8dd; color: #6b5100; border: 1px solid #f1d777; }
.alert-info { background: #eaf5ff; color: #164e78; border: 1px solid #abd7f5; }

.faq-section details { border-top: 1px solid var(--line); padding: 19px 0; }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { position: relative; padding-right: 40px; font-weight: 820; color: var(--navy); cursor: pointer; font-size: 1.06rem; list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after { content: "+"; position: absolute; right: 8px; top: -5px; color: var(--teal); font-size: 1.6rem; font-weight: 400; }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { max-width: 740px; color: var(--muted); }

.status-section { min-height: 65vh; background: var(--light); }
.status-card { background: #fff; border: 1px solid var(--line); padding: 44px; text-align: center; box-shadow: var(--shadow-soft); }
.status-card h1 { font-size: clamp(2rem, 5vw, 3.3rem); margin: 10px 0 16px; color: var(--navy); }
.status-icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; font-size: 2.2rem; font-weight: 900; }
.status-icon.success { background: #e5f7ed; color: var(--green); }
.status-icon.pending { background: #fff4cd; color: #7a5900; }
.status-icon.error { background: #ffebe9; color: var(--red); }
.status-details { text-align: left; border: 1px solid var(--line); margin: 27px 0; padding: 7px 20px; }
.status-details > div { display: grid; grid-template-columns: 180px 1fr; gap: 15px; padding: 10px 0; border-top: 1px solid var(--line); }
.status-details > div:first-child { border-top: 0; }
.status-details dt { font-weight: 800; }
.status-details dd { margin: 0; }
.status-card .button { margin: 5px; }

.breadcrumbs { margin: 0 0 24px; font-size: .86rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span { margin: 0 7px; color: #8fa0aa; }
.legal-page { background: var(--light); }
.legal-content { background: #fff; border: 1px solid var(--line); padding: 46px; box-shadow: 0 10px 35px rgba(16,42,67,.05); }
.legal-content h1 { font-size: clamp(2.1rem, 5vw, 3.65rem); color: var(--navy); line-height: 1.08; letter-spacing: -.04em; }
.legal-content h2 { color: var(--navy); margin-top: 38px; line-height: 1.25; }
.legal-content h3 { color: var(--navy); }
.legal-content li { margin: 8px 0; }
.legal-meta { padding: 13px 16px; background: var(--sky); border-left: 4px solid var(--blue); margin: 20px 0; }

.error-page { min-height: 58vh; display: grid; place-items: center; background: var(--light); }
.error-page .status-card { max-width: 720px; }

.site-footer { background: var(--navy-2); color: #cbdbe7; padding: 62px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr .9fr; gap: 46px; }
.brand-footer { color: #fff; }
.brand-footer:hover { color: #fff; }
.brand-footer small { color: #b8cad8; }
.site-footer h2 { font-size: .95rem; color: #fff; margin-top: 0; }
.site-footer a { display: block; color: #d6e9f5; margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); padding-top: 20px; margin-top: 37px; font-size: .86rem; }

.admin-body { background: var(--light); }
.admin-header { background: var(--navy); color: #fff; padding: 18px 0; }
.admin-header .container { display: flex; justify-content: space-between; align-items: center; }
.admin-header a { color: #fff; }
.admin-main { padding: 40px 0; }
.login-card { max-width: 480px; margin: 50px auto; background: #fff; padding: 35px; box-shadow: var(--shadow-soft); }
.admin-table-wrap { overflow: auto; background: #fff; border: 1px solid var(--line); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 1000px; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { background: #edf3f8; color: var(--navy); }
.badge { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #e7eef4; font-size: .78rem; font-weight: 800; }
.admin-actions { display: flex; gap: 7px; flex-wrap: wrap; }
.admin-actions button { border: 0; background: var(--blue); color: #fff; border-radius: 7px; padding: 7px 10px; cursor: pointer; }
.admin-actions .danger { background: var(--red); }

@media (max-width: 1060px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .88rem; }
  .hero-grid { grid-template-columns: 1fr 440px; gap: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n+1) { border-left: 0; }
  .feature-card:nth-child(2n+1) { border-left: 1px solid var(--line); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid article:nth-child(3) { border-left: 0; border-top: 1px solid #d7d2c6; }
  .audience-grid article:nth-child(4) { border-top: 1px solid #d7d2c6; }
  .order-layout { grid-template-columns: 1fr; }
  .order-intro { position: static; }
  .requirements-grid { grid-template-columns: 1fr; }
  .install-steps ol { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .service-bar { display: none; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 78px; padding: 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 10px 22px rgba(16,42,67,.1); flex-direction: column; align-items: stretch; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 8px 14px; }
  .main-nav a::after { display: none; }
  .hero { padding: 64px 0; }
  .hero-grid, .heading-row, .split, .compliance-grid, .package-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .heading-row { gap: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .section { padding: 68px 0; }
  .module-grid { grid-template-columns: 1fr; }
  .module-grid article, .module-grid article:nth-child(1), .module-grid article:nth-child(2) { grid-column: auto; min-height: auto; }
  .demo-banner { display: block; padding: 31px; }
  .demo-banner::after { right: -30px; }
  .demo-banner .button { margin-top: 20px; }
  .form-grid.two, .form-grid.three, .payment-options { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .order-form-card, .legal-content, .status-card { padding: 25px; }
  .status-details > div { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .brand small { display: none; }
  .brand img { width: 43px; height: 43px; }
  .hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .product-card { padding: 21px; }
  .product-card-top, .product-price-row { align-items: flex-start; flex-direction: column; }
  .product-price-row .button { width: 100%; }
  .window-layout { grid-template-columns: 66px 1fr; }
  .trust-grid, .audience-grid, .feature-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:first-child { border-top: 0; }
  .audience-grid article { min-height: auto; border-left: 0; border-top: 1px solid #d7d2c6; }
  .audience-grid article:first-child { border-top: 0; }
  .audience-grid h3 { margin-top: 24px; }
  .feature-card, .feature-card:nth-child(2n+1), .feature-card:nth-child(3n+1) { min-height: auto; border-left: 1px solid var(--line); }
  .install-steps ol { grid-template-columns: 1fr; }
  .scope-table > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin: 4px 0; }
  .section-heading h2, .split h2, .demo-banner h2, .order-intro h2, .package-layout h2 { font-size: 2.05rem; }
}

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

@media print {
  .service-bar, .site-header, .site-footer, .hero-actions, .button, .menu-toggle { display: none !important; }
  .section { padding: 20px 0; content-visibility: visible !important; }
  .legal-content, .status-card { box-shadow: none; border: 0; padding: 0; }
}

/* Bezpieczna strona pobierania */
.download-section { min-height: 68vh; display: flex; align-items: center; }
.download-card { background: #fff; border: 1px solid #d9e2ec; border-radius: 18px; padding: clamp(24px, 5vw, 48px); box-shadow: 0 20px 55px rgba(16,42,67,.10); text-align: center; }
.download-card h1 { margin-top: .35rem; }
.download-icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: #e6f6f0; color: #0b6e4f; font-size: 36px; font-weight: 800; }
.download-details { margin: 28px 0; text-align: left; border-top: 1px solid #e6edf3; }
.download-details div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid #e6edf3; }
.download-details dt { color: #627d98; }
.download-details dd { margin: 0; font-weight: 700; color: #102a43; text-align: right; }
.download-button { width: 100%; justify-content: center; font-size: 1.05rem; }
.download-note { margin: 18px 0 0; color: #627d98; font-size: .9rem; }
@media (max-width: 520px) { .download-details div { display: block; } .download-details dd { margin-top: 5px; text-align: left; } }
