:root {
  --paper: #f2f3f0;
  --surface: #fafaf7;
  --surface-strong: #ffffff;
  --ink: #091722;
  --ink-soft: #233543;
  --muted: #63717b;
  --line: rgba(9, 23, 34, 0.12);
  --line-strong: rgba(9, 23, 34, 0.2);
  --blue: #176aa8;
  --blue-dark: #0b4a78;
  --green: #2aa67a;
  --green-soft: #dff2e9;
  --sky-soft: #dceef8;
  --night: #06141f;
  --night-soft: #0d2231;
  --white: #fff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow-soft: 0 18px 60px rgba(7, 21, 33, 0.09);
  --shadow-deep: 0 35px 110px rgba(7, 21, 33, 0.2);
  --display: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", sans-serif;
  --body: "Helvetica Neue", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --label: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI", sans-serif;
  --numeric: "Avenir Next", Avenir, "Helvetica Neue", "Segoe UI Variable Display", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 2%, rgba(42, 166, 122, 0.1), transparent 24rem),
    radial-gradient(circle at 10% 18%, rgba(23, 106, 168, 0.08), transparent 28rem),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(23, 106, 168, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--night);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tight { padding: 76px 0; }
.section-dark { color: var(--white); background: var(--night); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-family: var(--label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.section-dark .eyebrow { color: #9bd5c1; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  font-kerning: normal;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 8.4vw, 7.8rem);
  letter-spacing: -0.012em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.2vw, 5.1rem);
  line-height: 1.04;
}

h3 { margin-bottom: 14px; font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -0.01em; line-height: 1.2; }
.lead { max-width: 700px; color: var(--ink-soft); font-size: clamp(1.12rem, 2vw, 1.42rem); line-height: 1.55; }
.section-dark .lead { color: #b8c4cc; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  border-bottom: 1px solid rgba(9, 23, 34, 0.08);
  background: rgba(242, 243, 240, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-row { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 11px; font-family: var(--label); font-weight: 700; letter-spacing: 0.12em; line-height: 1; }
.brand-mark { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 10px; color: var(--white); background: linear-gradient(145deg, var(--blue), var(--green)); box-shadow: 0 8px 22px rgba(23, 106, 168, 0.2); font-size: 0.88rem; letter-spacing: -0.05em; }
.brand em { color: var(--muted); font-size: 0.78rem; font-style: normal; font-weight: 600; letter-spacing: 0.035em; }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 30px; color: var(--ink-soft); font-family: var(--label); font-size: 0.9rem; font-weight: 600; }
.nav-links a:not(.button) { position: relative; display: inline-flex; min-height: 44px; padding: 9px 0; align-items: center; }
.nav-links a:not(.button)::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; content: ""; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, 0.72); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { width: 17px; height: 1px; content: ""; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle { grid-template-rows: repeat(3, 1px); gap: 4px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { border-top: 1px solid var(--line); margin-top: 14px; padding: 18px 24px 10px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: flex; padding: 11px 0; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-weight: 600; }

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--night); box-shadow: 0 12px 30px rgba(6, 20, 31, 0.16); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(6, 20, 31, 0.24); }
.button-light { color: var(--night); background: var(--white); }
.button-ghost { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.45); }
.button-arrow { transition: transform 180ms ease; }
.button:hover .button-arrow { transform: translateX(3px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.home-hero { position: relative; overflow: hidden; padding: 104px 0 92px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.74fr); align-items: center; gap: 64px; }
.hero-copy h1 { font-size: clamp(4rem, 7.7vw, 7.4rem); }
.aurora-word { color: transparent; background: linear-gradient(115deg, var(--blue-dark) 8%, var(--blue) 45%, var(--green) 86%); -webkit-background-clip: text; background-clip: text; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 40px; color: var(--muted); font-family: var(--label); font-size: 0.94rem; font-weight: 600; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--green); box-shadow: 0 0 0 5px rgba(42, 166, 122, 0.11); }

.product-stage { position: relative; padding: 32px 0 32px 30px; }
.product-stage::before { position: absolute; inset: -18% -18% -8% -10%; z-index: -1; border-radius: 48%; content: ""; background: conic-gradient(from 200deg, rgba(23, 106, 168, 0.15), rgba(42, 166, 122, 0.18), rgba(255, 255, 255, 0.35), rgba(23, 106, 168, 0.13)); filter: blur(36px); }
.erp-window { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.65); border-radius: 26px; background: rgba(255, 255, 255, 0.89); box-shadow: var(--shadow-deep); transform: rotate(1.2deg); }
.window-top { display: flex; height: 54px; padding: 0 20px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c8ced2; }
.window-title { color: var(--muted); font-family: var(--label); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.window-body { display: grid; grid-template-columns: 88px 1fr; min-height: 430px; }
.window-side { padding: 24px 19px; background: #f2f5f5; }
.window-side b { display: grid; width: 45px; height: 45px; margin-bottom: 28px; place-items: center; border-radius: 14px; color: var(--white); background: linear-gradient(145deg, var(--blue), var(--green)); }
.side-line { width: 100%; height: 7px; margin: 14px 0; border-radius: 4px; background: #d8dfe1; }
.side-line.active { background: var(--blue); }
.window-main { padding: 30px 26px; }
.window-main small { color: var(--muted); font-family: var(--label); font-size: 0.9rem; font-weight: 600; }
.window-main h2 { margin: 4px 0 26px; font-size: 1.9rem; letter-spacing: -0.018em; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.metric span { display: block; color: var(--muted); font-family: var(--label); font-size: 0.84rem; font-weight: 600; line-height: 1.35; }
.metric strong { display: block; margin-top: 7px; font-family: var(--numeric); font-size: 1.7rem; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.chart { position: relative; height: 126px; margin-top: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(180deg, rgba(220, 238, 248, 0.72), rgba(255, 255, 255, 0)); }
.chart svg { position: absolute; inset: 15px; width: calc(100% - 30px); height: calc(100% - 30px); }
.floating-note { position: absolute; right: -22px; bottom: 52px; width: 190px; padding: 15px 17px; border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 17px; background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-soft); transform: rotate(-3deg); }
.floating-note span { display: block; color: var(--muted); font-family: var(--label); font-size: 0.77rem; font-weight: 500; }
.floating-note strong { display: block; margin-top: 3px; font-family: var(--numeric); font-size: 1rem; font-variant-numeric: lining-nums tabular-nums; }

.statement { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 80px; align-items: start; }
.statement-copy { max-width: 760px; }
.statement-copy p { color: var(--ink-soft); font-size: clamp(1.35rem, 2.7vw, 2.2rem); letter-spacing: -0.01em; line-height: 1.45; }

.record-rail { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 65px; }
.record-rail::before { position: absolute; top: 23px; right: 8%; left: 8%; height: 2px; content: ""; background: linear-gradient(90deg, var(--blue), var(--green)); opacity: 0.5; }
.record { position: relative; z-index: 1; padding: 0 8px; text-align: center; }
.record-icon { display: grid; width: 48px; height: 48px; margin: 0 auto 15px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-dark); background: var(--surface-strong); box-shadow: 0 8px 24px rgba(7, 21, 33, 0.08); font-family: var(--numeric); font-size: 0.84rem; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; }
.record strong { display: block; font-size: 0.98rem; }
.record span { color: var(--muted); font-size: 0.86rem; }

.split-heading { display: flex; margin-bottom: 58px; align-items: end; justify-content: space-between; gap: 40px; }
.split-heading h2 { max-width: 740px; margin-bottom: 0; }
.split-heading p { max-width: 420px; margin-bottom: 8px; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 310px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(250, 250, 247, 0.82); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset; }
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-card p { max-width: 520px; color: var(--muted); }
.feature-number { display: block; margin-bottom: 76px; color: var(--blue); font-family: var(--label); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; }
.feature-card::after { position: absolute; right: -35px; bottom: -65px; width: 180px; height: 180px; border: 1px solid rgba(23, 106, 168, 0.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 28px rgba(42, 166, 122, 0.05), 0 0 0 58px rgba(23, 106, 168, 0.035); }

.dark-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.service-list { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.service-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; padding: 25px 0; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.service-row b { color: #96d7be; font-family: var(--numeric); font-size: 0.86rem; font-variant-numeric: lining-nums tabular-nums; }
.service-row strong { font-size: 1.05rem; }
.service-row span { color: #c4d0d6; font-size: 0.98rem; }

.price-preview { padding: 52px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-strong); box-shadow: var(--shadow-soft); }
.price-preview-top { display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.price { display: flex; align-items: baseline; letter-spacing: -0.035em; }
.price strong { font-family: var(--numeric); font-size: clamp(4.8rem, 9vw, 8.5rem); font-variant-numeric: lining-nums tabular-nums; font-weight: 600; line-height: 0.9; }
.price span { color: var(--muted); font-family: var(--label); font-size: 1.18rem; font-weight: 600; letter-spacing: 0; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; margin: 38px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: var(--ink-soft); font-size: 0.95rem; }
.check-list li::before { position: absolute; top: 0.45em; left: 0; width: 14px; height: 14px; border-radius: 50%; content: ""; background: radial-gradient(circle, var(--white) 0 26%, transparent 28%), linear-gradient(145deg, var(--blue), var(--green)); }

.closing { padding: 106px 0; color: var(--white); background: linear-gradient(125deg, #071522 0%, #0a2639 58%, #0f4a4c 125%); }
.closing-inner { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.closing h2 { max-width: 760px; margin-bottom: 0; }

.page-hero { position: relative; padding: 92px 0 80px; overflow: hidden; }
.page-hero::after { position: absolute; right: -10vw; bottom: -280px; width: 680px; height: 420px; border: 1px solid rgba(23, 106, 168, 0.14); border-radius: 50%; content: ""; transform: rotate(-14deg); box-shadow: 0 0 0 64px rgba(42, 166, 122, 0.04), 0 0 0 128px rgba(23, 106, 168, 0.025); }
.page-hero h1 { max-width: 1100px; font-size: clamp(3.9rem, 8vw, 7.4rem); }
.page-hero .lead { position: relative; z-index: 1; }

.workflow-stack { border-top: 1px solid var(--line); }
.workflow-row { display: grid; grid-template-columns: 72px 0.8fr 1.2fr; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.workflow-row > b { color: var(--blue); font-family: var(--numeric); font-size: 0.9rem; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; }
.workflow-row h3 { margin-bottom: 0; }
.workflow-row p { max-width: 650px; margin-bottom: 0; color: var(--muted); }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card { min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.62); }
.module-card small { display: block; margin-bottom: 55px; color: var(--blue); font-family: var(--label); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; }
.module-card p { margin-bottom: 0; color: var(--muted); }

.solution-block { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: 70px; padding: 78px 0; border-top: 1px solid var(--line); }
.solution-label { position: sticky; top: 100px; align-self: start; }
.solution-label span { display: block; margin-bottom: 12px; color: var(--blue); font-family: var(--label); font-size: 0.79rem; font-weight: 700; letter-spacing: 0.05em; }
.solution-copy h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.solution-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
.solution-point { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.58); }
.solution-point strong { display: block; margin-bottom: 7px; }
.solution-point p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.pricing-hero { padding-bottom: 42px; }
.pricing-main { display: grid; grid-template-columns: 0.74fr 1.26fr; gap: 70px; align-items: start; }
.pricing-sticky { position: sticky; top: 108px; }
.pricing-card { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-strong); box-shadow: var(--shadow-soft); }
.pricing-card .price strong { font-size: clamp(5rem, 9vw, 8rem); }
.pricing-card h2 { font-size: 2rem; }
.pricing-meta { margin: 0; color: var(--muted); font-family: var(--numeric); font-variant-numeric: lining-nums tabular-nums; }
.price-section { margin-top: 18px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.62); }
.price-section:first-child { margin-top: 0; }
.price-section-head { display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.price-section-head strong { color: var(--blue-dark); font-size: 1.32rem; white-space: nowrap; }
.price-section p { color: var(--muted); }
.price-section ul { margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-section li { display: flex; padding: 11px 0; justify-content: space-between; gap: 24px; color: var(--ink-soft); font-size: 1.03rem; }
.price-section li span { color: var(--blue-dark); font-family: var(--numeric); font-size: 1.04rem; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; text-align: right; }
.fine-print { margin-top: 28px; color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

.support-steps { counter-reset: support-step; }
.support-step { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 42px 0; border-top: 1px solid var(--line); counter-increment: support-step; }
.support-step::before { color: var(--blue); content: "0" counter(support-step); font-family: var(--numeric); font-size: 0.9rem; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; }
.support-step h3 { margin-bottom: 10px; }
.support-step p { max-width: 690px; margin-bottom: 0; color: var(--muted); }
.boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.boundary-card { padding: 34px; border-radius: var(--radius-md); }
.boundary-card.included { color: var(--white); background: var(--night-soft); }
.boundary-card.separate { border: 1px solid var(--line); background: var(--surface); }
.boundary-card ul { margin: 26px 0 0; padding: 0; list-style: none; }
.boundary-card li { padding: 10px 0; border-top: 1px solid currentColor; border-color: rgba(99, 113, 123, 0.25); }

.contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 72px; align-items: start; }
.contact-note { position: sticky; top: 110px; }
.contact-note a:not(.button) { display: inline-flex; min-height: 44px; align-items: center; color: var(--blue-dark); border-bottom: 1px solid currentColor; }
.contact-note a:not(.button):visited { color: #5f4b78; }
.form-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-strong); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink-soft); font-family: var(--label); font-size: 0.88rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); background: #fbfcfa; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid rgba(23, 106, 168, 0.12); }
.form-actions { display: flex; margin-top: 24px; align-items: center; gap: 18px; }
.form-status { margin: 0; color: var(--muted); font-size: 0.88rem; }

.site-footer { padding: 42px 0 34px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #b8c5cc; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
.footer-brand { color: var(--white); }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: #aab8c0; font-size: 0.94rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.footer-links strong { display: block; margin-bottom: 10px; color: var(--white); font-family: var(--label); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a { display: flex; width: fit-content; min-width: 44px; min-height: 44px; align-items: center; font-size: 0.92rem; }
.footer-links a:hover { color: var(--white); }
.footer-base { display: flex; margin-top: 48px; padding-top: 22px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #a8b6be; font-size: 0.88rem; line-height: 1.55; }

.error-page { display: grid; min-height: 72vh; place-items: center; text-align: center; }
.error-code { margin-bottom: 12px; color: var(--blue); font-family: var(--label); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; }
.error-page h1 { max-width: 700px; font-size: clamp(3.5rem, 8vw, 7rem); }

.js .motion-ready [data-reveal] { opacity: 0; transform: translateY(20px); }
.js .motion-ready [data-reveal][data-visible="true"] { opacity: 1; transform: translateY(0); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  .section { padding: 88px 0; }
  .nav-links { gap: 18px; }
  .nav-links .button { display: none; }
  .hero-grid, .statement, .dark-grid, .pricing-main, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .product-stage { max-width: 620px; padding-left: 0; }
  .floating-note { right: 4px; }
  .statement, .dark-grid, .pricing-main, .contact-layout { gap: 46px; }
  .split-heading { display: block; }
  .split-heading p { margin-top: 24px; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-block { grid-template-columns: 1fr; gap: 28px; }
  .solution-label, .pricing-sticky, .contact-note { position: static; }
  .closing-inner { display: block; }
  .closing .button { margin-top: 30px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 620px); }
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 58px 0; }
  .site-header { padding: 10px 0; }
  .nav-row { min-height: 42px; }
  .js .nav-links { display: none; }
  .js .nav-toggle { display: grid; }
  html:not(.js) .nav-links { display: flex; width: 100%; padding-bottom: 3px; overflow-x: auto; justify-content: flex-start; order: 3; }
  html:not(.js) .nav-row { flex-wrap: wrap; }
  .brand em { display: none; }
  .home-hero { padding: 72px 0 54px; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(3.35rem, 15vw, 5.8rem); }
  .lead { font-size: 1.06rem; }
  .product-stage { padding-top: 18px; }
  .window-body { grid-template-columns: 58px 1fr; min-height: 360px; }
  .window-side { padding: 18px 12px; }
  .window-side b { width: 35px; height: 35px; }
  .window-main { padding: 22px 16px; }
  .window-main h2 { font-size: 1.5rem; }
  .metric { padding: 14px; }
  .metric strong { font-size: 1.5rem; }
  .floating-note { display: none; }
  .record-rail { grid-template-columns: 1fr; margin-top: 42px; text-align: left; }
  .record-rail::before { top: 0; bottom: 0; left: 23px; width: 2px; height: auto; }
  .record { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding: 0 0 17px; text-align: left; }
  .record-icon { grid-row: span 2; margin: 0; }
  .record strong { align-self: end; }
  .feature-card:nth-child(n), .module-card { grid-column: 1 / -1; }
  .module-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 270px; padding: 28px; }
  .feature-number { margin-bottom: 56px; }
  .service-row { grid-template-columns: 32px 1fr; }
  .service-row span { grid-column: 2; }
  .price-preview, .pricing-card, .price-section, .form-card { padding: 28px; border-radius: var(--radius-md); }
  .price-preview-top, .price-section-head { display: block; }
  .price-preview-top .button { margin-top: 22px; }
  .check-list, .solution-points, .boundary-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .workflow-row { grid-template-columns: 46px 1fr; gap: 15px; }
  .workflow-row p { grid-column: 2; }
  .solution-block { padding: 58px 0; }
  .price-section-head strong { display: block; margin: 8px 0 18px; }
  .price-section li { display: block; }
  .price-section li span { display: block; margin-top: 3px; text-align: left; }
  .support-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .closing { padding: 76px 0; }
  .footer-grid { gap: 40px; }
  .footer-base { align-items: flex-start; flex-direction: column; }
}

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