:root {
  --blue: #3764e9;
  --blue-dark: #244dcc;
  --blue-soft: #e8efff;
  --navy: #0c1833;
  --ink: #101722;
  --muted: #5e6878;
  --line: #dce3ee;
  --paper: #f7f9fc;
  --white: #ffffff;
  --green: #24a36a;
  --tech: #0aa184;
  --tech-dark: #087766;
  --tech-soft: #e5f7f2;
  --yellow: #f2bd42;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(33, 52, 91, .12);
  --container: 1305px;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Manrope, Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

h1, h2, h3,
.eyebrow,
.button,
.text-link,
.contact-form label > span,
.contact-method-field > .field-label,
.footer-links strong {
  font-family: var(--font-display);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(20, 42, 83, .09);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 32px rgba(30, 48, 85, .08); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .63px;
  line-height: 1.5;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #2563eb;
  box-shadow: none;
  color: white;
  font-size: 14px;
  letter-spacing: .63px;
  line-height: 1.5;
}

.brand-name { color: #2563eb; font-size: 21px; }

.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { color: #4d5561; font-size: 15px; font-weight: 400; transition: color .2s; }
.desktop-nav a:hover { color: var(--blue); }

.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  box-shadow: 0 13px 32px rgba(55, 100, 233, .22);
  color: var(--white);
  font-weight: 750;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 18px 36px rgba(55, 100, 233, .28); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: 14px; }
.button-outline { background: transparent; box-shadow: none; color: var(--blue); }
.button-outline:hover { background: var(--blue); color: var(--white); }
.button-white { border-color: var(--white); background: var(--white); box-shadow: none; color: var(--blue); }
.button-white:hover { background: #eff3ff; color: var(--blue-dark); }

.menu-toggle, .mobile-menu { display: none; }

.grid-bg {
  background-color: #f6f8fd;
  background-image:
    linear-gradient(rgba(69, 100, 170, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 100, 170, .065) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(79, 126, 255, .12), transparent 32%);
  background-size: 70px 70px, 70px 70px, auto;
}

.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  min-height: 755px;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 36px;
  padding-block: 82px 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 7px 12px;
  border: 1px solid #a9ddd2;
  border-radius: 99px;
  background: rgba(236, 251, 247, .72);
  color: var(--tech-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .99;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 12px 9px;
  border-radius: 7px;
  background: linear-gradient(105deg, var(--blue) 0%, #3568eb 48%, var(--tech) 125%);
  color: white;
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 645px;
  margin: 30px 0 0;
  color: #4b5666;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 750; }
.text-link span { color: var(--blue); font-size: 22px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }

.trust-list {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid #cad4e4;
  list-style: none;
}

.trust-list li { padding: 18px 20px 0 0; color: #4d5868; font-size: 13px; font-weight: 650; line-height: 1.4; }
.trust-list li + li { padding-left: 20px; border-left: 1px solid #cad4e4; }
.trust-list span { display: block; margin-bottom: 7px; color: var(--tech-dark); font-size: 11px; font-weight: 900; }

.hero-visual { position: relative; min-width: 0; perspective: 1200px; }
.status-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(92, 181, 164, .45);
  border-radius: 18px;
  background: white;
  box-shadow: 0 35px 80px rgba(29, 58, 118, .19);
  transform: rotate(-2.5deg) translateX(15px);
}

.window-bar { display: flex; align-items: center; height: 52px; padding-inline: 18px; border-bottom: 1px solid var(--line); background: #f9fbff; color: #7a8494; font-size: 12px; }
.window-bar > span { margin: auto; }
.window-bar strong { color: #2e57bf; font-size: 11px; letter-spacing: .05em; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #f67b67; }
.window-dots i:nth-child(2) { background: #f4c34f; }
.window-dots i:nth-child(3) { background: #4bc27f; }

.status-body { padding: 24px; background: #f5f8fd; }
.health-card { display: flex; align-items: center; justify-content: space-between; padding: 21px 22px; border-radius: 14px; background: var(--navy); color: white; }
.health-card small { display: block; margin-bottom: 4px; color: #9dabca; font-size: 11px; }
.health-card strong { font-size: 24px; }
.health-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 99px; background: rgba(56, 218, 149, .13); color: #5de1a6; font-size: 11px; font-weight: 800; }
.health-pill i { width: 7px; height: 7px; border-radius: 50%; background: #4cdb98; box-shadow: 0 0 0 5px rgba(76,219,152,.12); }

.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 13px; }
.status-grid article { position: relative; min-height: 140px; padding: 18px; border: 1px solid #d8e0ed; border-radius: 12px; background: white; }
.status-grid small { display: block; color: #858e9d; font-size: 10px; }
.status-grid strong { display: block; margin: 10px 0 17px; font-size: 14px; }
.status-grid em { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 6px; font-size: 9px; font-style: normal; font-weight: 800; }
.state-ok { background: var(--tech-soft); color: var(--tech-dark); }
.state-check { background: #e8efff; color: #315bc5; }
.status-icon { position: absolute; top: 15px; right: 15px; color: #bdc7d6; font-size: 10px; font-weight: 900; }

.order-flow { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-top: 13px; padding: 12px 14px; border: 1px solid #d8e0ed; border-radius: 11px; background: white; color: #657184; font-size: 9px; font-weight: 750; }
.order-flow i { width: 25px; height: 1px; background: #aab8d3; }

.floating-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid #d6e0f2; border-radius: 11px; background: rgba(255,255,255,.92); box-shadow: 0 15px 40px rgba(31,59,115,.15); color: #33415a; font-size: 11px; font-weight: 750; backdrop-filter: blur(12px); }
.floating-note span { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 7px; background: var(--tech-soft); color: var(--tech-dark); }
.note-one { left: -35px; bottom: 55px; }
.note-two { top: 105px; right: -18px; }
.note-two span { background: #e8efff; color: var(--blue); }

.signal-strip { overflow: hidden; border-block: 1px solid #d8dfeb; background: white; }
.signal-track { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; white-space: nowrap; }
.signal-track span { color: #596477; font-size: 13px; font-weight: 750; }
.signal-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--tech); }

.section { padding-block: 112px; }
.section-dark { background: var(--navy); color: white; }
.section-blue { position: relative; overflow: hidden; background: linear-gradient(125deg, #315fe0 0%, #2857d6 52%, #087b78 115%); color: white; }
.section-blue::after { content: ""; position: absolute; top: -260px; right: -190px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02); }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.section-heading h2, .system-copy h2, .audit-copy h2, .faq-intro h2, .contact-copy h2 { max-width: 780px; margin: 0; font-size: clamp(38px, 4vw, 58px); font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.heading-light > p { color: #aeb9d0; }
.eyebrow-dark { border-color: rgba(151,174,227,.28); background: rgba(255,255,255,.05); color: #9bb7ff; }
.eyebrow-blue { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: white; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid #283653; border-radius: var(--radius); background: #283653; }
.problem-card { position: relative; min-height: 330px; padding: 30px; background: #101d39; }
.problem-card h3 { max-width: 270px; margin: 62px 0 14px; font-size: 24px; letter-spacing: -.025em; line-height: 1.18; }
.problem-card p { margin: 0; color: #9eabc3; font-size: 15px; }
.card-number { color: #62cfb7; font-size: 11px; font-weight: 900; }
.problem-card-accent { background: var(--blue); }
.problem-card-accent p { color: #dbe4ff; }
.problem-card-accent .card-number { color: white; }
.problem-card-accent a { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.25); font-weight: 750; }

.mini-alert, .mini-code { position: absolute; right: 30px; bottom: 30px; left: 30px; padding: 10px 12px; border: 1px solid #2c3c5d; border-radius: 8px; background: #142442; color: #91a0bb; font-size: 10px; }
.mini-alert i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #f07d70; }
.mini-bars { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; height: 45px; align-items: end; gap: 7px; }
.mini-bars i { flex: 1; border-radius: 3px 3px 0 0; background: #3b64c9; }
.mini-bars i:nth-child(1) { height: 35%; }.mini-bars i:nth-child(2) { height: 70%; }.mini-bars i:nth-child(3) { height: 45%; }.mini-bars i:nth-child(4) { height: 90%; background: var(--tech); }
.mini-route { position: absolute; right: 30px; bottom: 30px; left: 30px; display: flex; align-items: center; }
.mini-route span { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid #3b4c70; border-radius: 9px; color: #94b0ff; font-size: 12px; font-weight: 850; }
.mini-route i { flex: 1; height: 1px; background: #3b4c70; }
.mini-speed { position: absolute; right: 30px; bottom: 30px; left: 30px; }
.mini-speed::before { content: ""; display: block; height: 4px; border-radius: 99px; background: #283958; }
.mini-speed span { display: block; width: 65%; height: 4px; margin-top: -4px; border-radius: 99px; background: #f2bd42; }
.mini-speed strong { display: block; margin-top: 8px; color: #a9b6ca; font-size: 10px; }
.mini-code { display: flex; justify-content: space-between; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.mini-code b { color: #f2bd42; }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 80px 1.05fr .95fr; align-items: center; gap: 34px; min-height: 150px; border-bottom: 1px solid var(--line); }
.service-index { color: #9aa5b6; font-size: 11px; font-weight: 900; }
.service-title { display: flex; align-items: center; gap: 22px; }
.service-title h3 { margin: 0; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.035em; }
.service-symbol { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border: 1px solid #a9ddd2; border-radius: 13px; background: var(--tech-soft); color: var(--tech-dark); font-size: 24px; }
.service-row > p { margin: 0; color: var(--muted); line-height: 1.7; }

.system-section { border-block: 1px solid #dfe6f1; }
.system-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.system-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 34px; border-bottom: 1px solid #dce3ef; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--tech); font-weight: 900; }

.system-map { position: relative; min-height: 555px; }
.map-core, .map-node { position: absolute; z-index: 2; border: 1px solid #cfdaec; background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(40,67,121,.1); backdrop-filter: blur(8px); }
.map-core { top: 50%; left: 50%; display: grid; width: 180px; height: 180px; place-items: center; padding: 36px 20px; border-radius: 50%; transform: translate(-50%,-50%); text-align: center; }
.map-core span { position: absolute; top: 20px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; background: var(--blue); color: white; font-size: 10px; font-weight: 900; }
.map-core strong { margin-top: 31px; font-size: 19px; }
.map-core small { color: #8590a2; }
.map-node { width: 165px; min-height: 110px; padding: 20px; border-radius: 15px; }
.map-node i { display: block; margin-bottom: 14px; color: var(--tech-dark); font-size: 9px; font-style: normal; font-weight: 900; }
.map-node strong, .map-node small { display: block; }
.map-node small { margin-top: 4px; color: #8a94a5; font-size: 11px; }
.node-catalog { top: 20px; left: 10px; }.node-crm { top: 20px; right: 10px; }.node-pay { bottom: 20px; left: 10px; }.node-delivery { right: 10px; bottom: 20px; }
.map-lines { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; }
.map-lines path { fill: none; stroke: #72c8b7; stroke-width: 1.5; stroke-dasharray: 6 7; }

.process-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.25); list-style: none; }
.process-list li { min-height: 310px; padding: 25px 22px 0 0; }
.process-list li + li { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.25); }
.process-list > li > span { color: #c7d5ff; font-size: 11px; font-weight: 900; }
.process-list h3 { margin: 125px 0 13px; font-size: 20px; letter-spacing: -.02em; }
.process-list p { margin: 0; color: #d5dfff; font-size: 14px; line-height: 1.6; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.price-card-featured { border: 2px solid var(--blue); box-shadow: var(--shadow); }
.popular-label { position: absolute; top: -13px; right: 23px; padding: 5px 10px; border-radius: 99px; background: var(--blue); color: white; font-size: 10px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.price-top { display: flex; align-items: center; justify-content: space-between; color: #9ba6b5; font-size: 11px; }
.price-top em { font-style: normal; }
.price-card h3 { margin: 58px 0 12px; font-size: 30px; letter-spacing: -.035em; }
.price-card > p { min-height: 50px; margin: 0; color: var(--muted); }
.price { margin: 30px 0 24px; color: #737e8f; }
.price strong { color: var(--ink); font-size: 29px; letter-spacing: -.035em; }
.price small { display: inline-block; margin-left: 4px; }
.price-card ul { margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding: 7px 0 7px 25px; color: #4f5a69; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.price-card .button { width: 100%; margin-top: auto; }
.pricing-note { max-width: 900px; margin: 25px auto 0; color: #7c8695; font-size: 12px; text-align: center; }

.audit-section { padding-top: 25px; }
.audit-card { display: grid; overflow: hidden; grid-template-columns: 1fr 1fr; border-radius: 27px; background: linear-gradient(125deg, var(--blue) 0%, #2b61df 55%, var(--tech) 135%); box-shadow: 0 34px 70px rgba(35, 111, 168, .2); color: white; }
.audit-copy { padding: 65px; }
.audit-copy > p:not(.eyebrow) { max-width: 540px; margin: 22px 0; color: #dce5ff; font-size: 16px; }
.audit-price { margin: 35px 0 22px; font-size: 27px; font-weight: 800; }
.audit-result { margin: 18px; padding: 40px; border-radius: 19px; background: white; color: var(--ink); }
.result-label { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.audit-result ol { margin: 45px 0 0; padding: 0; list-style: none; }
.audit-result li { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.audit-result i { color: #9ba6b5; font-size: 10px; font-style: normal; font-weight: 900; }
.audit-result strong, .audit-result small { display: block; }
.audit-result small { margin-top: 3px; color: #7d8797; }

.faq-section { padding-top: 80px; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro > p:not(.eyebrow) { max-width: 400px; margin: 25px 0; color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 19px; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--blue); font-size: 28px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 690px; margin: -6px 0 28px; color: var(--muted); line-height: 1.7; }

.contact-section { padding-block: 110px; border-top: 1px solid #dce4f0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0; color: var(--muted); font-size: 17px; }
.contact-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 40px; }
.contact-meta a { color: var(--blue); font-weight: 750; }
.contact-meta span { color: #7b8595; font-size: 13px; }
.contact-form { padding: 36px; border: 1px solid #d7e0ef; border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 15px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #647084; font-size: 14px; font-weight: 750; }
.contact-method-field { margin-bottom: 15px; }
.contact-method-field > .field-label { display: block; margin-bottom: 7px; color: #647084; font-size: 14px; font-weight: 750; }
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 8px; }
.contact-methods .method-option { position: relative; margin: 0; }
.contact-methods .method-option input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-methods .method-option span { display: grid; min-height: 38px; place-items: center; margin: 0; border: 1px solid #d4ddea; border-radius: 9px; background: white; color: #687386; cursor: pointer; font-size: 11px; font-weight: 750; transition: border-color .2s, background .2s, color .2s; }
.contact-methods .method-option input:checked + span { border-color: var(--blue); background: #edf2ff; color: var(--blue); }
.contact-methods .method-option input:focus-visible + span { outline: 3px solid rgba(55,100,233,.18); outline-offset: 1px; }
.contact-value-label { margin: 0 !important; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; margin: -1px !important; padding: 0 !important; border: 0 !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #d4ddea; border-radius: 10px; outline: none; background: white; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.contact-form input, .contact-form select { height: 49px; padding-inline: 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(55,100,233,.12); }
.contact-form .checkbox { display: flex; align-items: flex-start; gap: 10px; margin-block: 7px 17px; }
.contact-form .checkbox input { width: 17px; height: 17px; flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--blue); }
.contact-form .checkbox span { margin: 0; font-weight: 500; }
.contact-form .checkbox a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cf-turnstile { min-height: 65px; margin: 3px 0 15px; }
.form-submit { width: 100%; }

.site-footer { padding: 64px 0 22px; background: var(--navy); color: white; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr .9fr .9fr; gap: 54px; padding-bottom: 50px; }
.brand-footer .brand-name { color: white; }
.footer-top > div:first-child p { max-width: 430px; margin: 24px 0 0; color: #9ca9c1; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links strong { margin-bottom: 7px; color: #7182a3; font-size: 16px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.footer-links a, .footer-links span { color: #c7d0e2; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid #263653; color: #6f7e9a; font-size: 11px; }
.footer-bottom > div { display: flex; align-items: center; gap: 22px; }
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: #c7d0e2; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1050px) {
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 680px; margin: 25px auto 0; }
  .status-window { transform: rotate(-1.5deg); }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .system-grid { grid-template-columns: 1fr; gap: 35px; }
  .system-copy { max-width: 760px; }
  .system-map { width: min(100%, 650px); margin-inline: auto; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:nth-child(4) { border-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .price-card { min-height: auto; }
  .price-card .button { margin-top: 15px; }
  .contact-grid { gap: 45px; }
  .footer-top { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { display: flex; min-height: 68px; justify-content: space-between; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { position: relative; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
  .menu-toggle span { position: absolute; display: block; width: 17px; height: 2px; border-radius: 99px; background: var(--ink); transition: opacity .2s, transform .2s; }
  .menu-toggle span:nth-child(1) { transform: translateY(-5px); }
  .menu-toggle span:nth-child(3) { transform: translateY(5px); }
  .menu-toggle:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(55,100,233,.18); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% + 8px); right: 18px; left: 18px; display: grid; gap: 6px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 18px 55px rgba(15,31,58,.12); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 12px 10px; border-radius: 8px; color: var(--ink); font-family: var(--font-display); font-weight: 800; }
  .mobile-menu a:hover { background: var(--blue-soft); color: var(--blue-dark); }
  .mobile-menu .mobile-menu-cta { margin-top: 4px; background: var(--blue); box-shadow: 0 10px 28px rgba(55,100,233,.18); color: var(--white); text-align: center; }
  .mobile-menu .mobile-menu-cta:hover { background: var(--blue-dark); color: var(--white); }

  .grid-bg { background-size: 42px 42px, 42px 42px, auto; }
  .hero-grid { min-height: 0; padding-block: 62px 70px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .text-link { display: none; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { padding: 14px 0; border-bottom: 1px solid #cad4e4; }
  .trust-list li + li { padding-left: 0; border-left: 0; }
  .status-body { padding: 15px; }
  .status-grid { grid-template-columns: 1fr; }
  .status-grid article { min-height: 115px; }
  .floating-note { display: none; }
  .order-flow span { font-size: 8px; }
  .signal-track { justify-content: flex-start; overflow: hidden; }

  .section { padding-block: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }
  .section-heading h2, .system-copy h2, .audit-copy h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(35px, 10vw, 48px); }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 300px; }
  .problem-card-accent a { min-height: 50px; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid var(--white); border-radius: 11px; background: var(--white); color: var(--blue); font-family: var(--font-display); font-weight: 750; text-align: center; }

  .service-row { grid-template-columns: 44px 1fr; gap: 10px; padding-block: 28px; }
  .service-row > p { grid-column: 2; }
  .service-title { gap: 14px; }
  .service-symbol { width: 42px; height: 42px; }

  .system-map { display: none; }
  .map-core { width: 155px; height: 155px; }
  .map-node { width: 142px; min-height: 103px; padding: 16px; }
  .node-catalog, .node-pay { left: 0; }
  .node-crm, .node-delivery { right: 0; }

  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li { display: grid; min-height: 0; grid-template-columns: 48px 1fr; gap: 10px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.25); }
  .process-list li + li { padding-left: 0; border-left: 0; }
  .process-list h3 { margin: 0 0 8px; }

  .audit-card { grid-template-columns: 1fr; }
  .audit-copy { padding: 38px 26px; }
  .audit-result { margin: 0 12px 12px; padding: 28px 22px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .accordion summary { min-height: 82px; font-size: 17px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-bottom > div { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 430px) {
  .hero h1 span { padding-inline: 7px; }
  .health-card { align-items: flex-start; flex-direction: column; gap: 13px; }
  .order-flow i { width: 10px; }
  .map-node { width: 125px; font-size: 13px; }
  .map-core { width: 140px; height: 140px; }
  .price-card { padding: 23px 20px; }
}
