:root {
  --ink: #08101f;
  --navy: #061628;
  --navy-2: #0a233a;
  --cyan: #3bbcff;
  --cyan-soft: #c7efff;
  --mint: #3bbcff;
  --warm: #fff9ef;
  --paper: #f6f8fb;
  --line: #d9e2ea;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(6, 22, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
summary,
.hero-proof span {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(246, 248, 251, 0.88);
  border-bottom: 1px solid rgba(217, 226, 234, 0.8);
  backdrop-filter: blur(18px);
  transition:
    padding 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.site-header.header--scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(246, 248, 251, 0.95);
  border-bottom-color: rgba(199, 211, 224, 0.95);
  box-shadow: 0 12px 34px rgba(6, 22, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.site-header.header--scrolled .brand {
  transform: translateY(0) scale(0.96);
  transform-origin: left center;
}

.brand:hover {
  color: #0b6fb3;
}

.brand:active {
  transform: translateY(1px);
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(59, 188, 255, 0.28);
  transition: width 200ms ease, height 200ms ease, box-shadow 200ms ease;
}

.site-header.header--scrolled .brand-mark {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 22px rgba(59, 188, 255, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav a {
  position: relative;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a:active {
  color: #086aa5;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

[hidden] {
  display: none !important;
}

.nav-cta {
  transition:
    min-height 200ms ease,
    padding 200ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-header.header--scrolled .nav-cta {
  min-height: 40px;
  padding-right: 16px;
  padding-left: 16px;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0588d8, #0c2d4b);
  box-shadow: 0 14px 34px rgba(5, 136, 216, 0.28);
}

.nav-cta:hover,
.button.primary:hover {
  background: linear-gradient(135deg, #11a5f4, #0e3a63);
  box-shadow:
    0 18px 40px rgba(5, 136, 216, 0.36),
    0 0 0 1px rgba(199, 239, 255, 0.18) inset;
  transform: translateY(-2px);
}

.nav-cta:active,
.button.primary:active {
  background: linear-gradient(135deg, #057dc6, #09263f);
  box-shadow: 0 8px 22px rgba(5, 136, 216, 0.24);
  transform: translateY(1px) scale(0.99);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  color: #06243e;
  border-color: rgba(59, 188, 255, 0.55);
  background: #f8fdff;
  box-shadow:
    0 14px 30px rgba(6, 22, 40, 0.14),
    0 0 0 1px rgba(59, 188, 255, 0.12) inset;
  transform: translateY(-2px);
}

.button.secondary:active {
  background: #eaf7ff;
  box-shadow: 0 8px 20px rgba(6, 22, 40, 0.12);
  transform: translateY(1px) scale(0.99);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 0;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px) 50px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 40, 0.96), rgba(8, 16, 31, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(59, 188, 255, 0.22), transparent 34%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #1877b9;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--cyan-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  color: #d5e5f2;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: #d8f3ff;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(199, 239, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-proof span:hover {
  color: var(--white);
  border-color: rgba(59, 188, 255, 0.7);
  background: rgba(59, 188, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.hero-proof span:active {
  background: rgba(59, 188, 255, 0.22);
  transform: translateY(1px) scale(0.99);
}

.hero-visual {
  position: relative;
  min-height: 624px;
  overflow: hidden;
  border: 1px solid rgba(199, 239, 255, 0.16);
  border-radius: 8px;
  background: #020812;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.02), rgba(2, 8, 18, 0.72)),
    radial-gradient(circle at 50% 28%, transparent 0 28%, rgba(2, 8, 18, 0.28) 60%);
}

.visual-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(59, 188, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 64px rgba(59, 188, 255, 0.16),
    inset 0 0 44px rgba(59, 188, 255, 0.1);
  pointer-events: none;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(59, 188, 255, 0.72);
}

.visual-orbit::before {
  width: 8px;
  height: 8px;
  top: 14%;
  right: 20%;
}

.visual-orbit::after {
  width: 5px;
  height: 5px;
  left: 18%;
  bottom: 24%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 624px;
  object-fit: contain;
  object-position: center top;
  opacity: 0.95;
  padding: 24px 34px 246px;
  transform: none;
}

.system-panel {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px;
  color: var(--white);
  border: 1px solid rgba(199, 239, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 14, 26, 0.82);
  backdrop-filter: blur(18px);
}

.automation-frame {
  overflow: hidden;
  height: clamp(252px, 26.5vw, 317px);
  min-height: clamp(180px, 21.5vw, 294px);
  padding: 0;
  border-color: rgba(155, 222, 255, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(77, 181, 255, 0.16), transparent 58%),
    rgba(3, 14, 26, 0.9);
  box-shadow:
    0 0 0 1px rgba(135, 219, 255, 0.1) inset,
    0 0 26px rgba(59, 188, 255, 0.13);
}

.automation-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 14, 26, 0.22), transparent 18%, transparent 82%, rgba(3, 14, 26, 0.22)),
    radial-gradient(circle at 50% 48%, rgba(180, 228, 255, 0.16), transparent 46%);
  mix-blend-mode: screen;
}

.hero-visual .automation-frame__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: fill;
  object-position: center;
  filter: brightness(1.08) contrast(1.08) saturate(1.12);
  opacity: 0.5;
  transform: none;
}

.panel-head,
.flow-row,
.metric-grid {
  display: grid;
  gap: 12px;
}

.panel-head {
  grid-template-columns: 1fr auto;
  margin-bottom: 16px;
}

.panel-head strong {
  color: var(--mint);
}

.flow-row {
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  margin-bottom: 16px;
  color: #e5f7ff;
  font-size: 0.9rem;
}

.flow-row span {
  display: grid;
  min-height: 40px;
  place-items: center;
  border: 1px solid rgba(199, 239, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.flow-row span:hover {
  border-color: rgba(59, 188, 255, 0.62);
  background: rgba(59, 188, 255, 0.12);
  box-shadow: 0 0 18px rgba(59, 188, 255, 0.12);
  transform: translateY(-1px);
}

.flow-row i {
  height: 1px;
  background: var(--cyan);
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid strong {
  display: block;
  font-size: 1.4rem;
}

.metric-grid span {
  display: block;
  color: #bfd3df;
  font-size: 0.78rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-strip div {
  padding: 26px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(66px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 780px;
}

.intro {
  background: var(--warm);
}

.service-grid,
.case-grid,
.trust-grid,
.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article,
.case-grid article,
.cooperation-grid article,
.trust-grid div,
.timeline article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-grid article,
.case-grid article,
.cooperation-grid article {
  padding: 24px;
}

.service-grid article:hover,
.case-grid article:hover,
.cooperation-grid article:hover,
.trust-grid div:hover,
.timeline article:hover,
details:hover {
  border-color: rgba(59, 188, 255, 0.34);
  box-shadow: 0 18px 42px rgba(6, 22, 40, 0.12);
  transform: translateY(-3px);
}

.service-grid article:active,
.case-grid article:active,
.cooperation-grid article:active,
.trust-grid div:active,
.timeline article:active {
  box-shadow: 0 10px 26px rgba(6, 22, 40, 0.1);
  transform: translateY(1px);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(59, 188, 255, 0.28);
  border-radius: 8px;
  background: #eef9ff;
  font-weight: 850;
}

.service-grid p,
.case-grid p,
.timeline p,
.faq p,
.split p,
.roi-copy p,
.contact p {
  color: var(--muted);
}

.roi-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.signals {
  display: grid;
  gap: 12px;
}

.signals div {
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.signals div:hover {
  background: #eef9ff;
  box-shadow: 0 12px 28px rgba(6, 22, 40, 0.1);
  transform: translateX(4px);
}

.process {
  background: var(--navy);
  color: var(--white);
}

.process .eyebrow {
  color: var(--cyan-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 24px;
  color: var(--white);
  border-color: rgba(199, 239, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: 8px;
  font-weight: 900;
}

.timeline p {
  color: #c9d8e2;
}

.cooperation {
  background: var(--paper);
}

.cooperation-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 251, 0.95));
}

.deliverables {
  background: var(--white);
}

.deliverables-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.deliverable-list {
  display: grid;
  gap: 14px;
}

.deliverable-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.deliverable-list strong,
.deliverable-list span {
  display: block;
}

.deliverable-list span,
.audit-card p {
  color: var(--muted);
}

.audit-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 22, 40, 0.96), rgba(10, 35, 58, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(59, 188, 255, 0.26), transparent 34%);
  box-shadow: var(--shadow);
}

.audit-card .tag {
  color: var(--cyan-soft);
}

.audit-card p {
  color: #d2e3ee;
}

.audit-card .button {
  margin-top: 10px;
}

.cases {
  background: var(--paper);
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tag {
  color: #0b75b7;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.case-grid li {
  margin: 6px 0;
}

.roi {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--warm);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 40, 0.98), rgba(8, 16, 31, 0.94)),
    radial-gradient(circle at 70% 20%, rgba(59, 188, 255, 0.18), transparent 34%);
}

.final-cta .eyebrow {
  color: var(--cyan-soft);
}

.final-cta h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-presets {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 4px;
}

.process-preset {
  display: grid;
  gap: 8px;
  min-height: 92px;
  align-content: center;
  justify-items: center;
  padding: 14px 12px;
  color: var(--ink);
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #fbfcfe;
  font: inherit;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.process-preset span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--cyan);
  border-radius: 8px;
  background: #eef9ff;
  font-weight: 900;
}

.process-preset:hover,
.process-preset:focus-visible {
  border-color: rgba(59, 188, 255, 0.7);
  box-shadow: 0 10px 22px rgba(10, 38, 66, 0.1);
  transform: translateY(-1px);
}

.process-preset.active {
  border-color: var(--cyan);
  background: #eef9ff;
  box-shadow: 0 12px 24px rgba(59, 188, 255, 0.14);
}

.full-field {
  grid-column: 1 / -1;
}

.automation-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #fbfcfe;
}

.automation-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.automation-heading strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.automation-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.automation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.automation-option {
  display: grid;
  gap: 4px;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: var(--ink);
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.automation-option strong {
  color: var(--cyan);
  font-size: 1rem;
}

.automation-option span {
  color: var(--muted);
  font-size: 0.82rem;
}

.automation-option:hover,
.automation-option:focus-visible,
.automation-option.active {
  border-color: var(--cyan);
  background: #eef9ff;
  box-shadow: 0 8px 20px rgba(59, 188, 255, 0.12);
}

.automation-range {
  gap: 10px;
}

.automation-range input {
  min-height: auto;
  padding: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}

.calculator-costs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #f7f9fc;
}

.calculator-contact {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 750;
}

.calculator-contact span {
  line-height: 1.2;
}

.calculator-contact .button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  padding: 12px 13px;
  border-color: #cbd5df;
  border-radius: 8px;
  box-shadow: none;
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cbd5df;
  border-radius: 8px;
  background: #fbfcfe;
  font: inherit;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(59, 188, 255, 0.55);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 188, 255, 0.16);
}

input:invalid,
select:invalid,
textarea:invalid {
  border-color: #cbd5df;
  box-shadow: none;
}

input:invalid:focus,
select:invalid:focus,
textarea:invalid:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(59, 188, 255, 0.16);
}

textarea {
  resize: vertical;
}

.result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  min-height: 118px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b4a72);
  border-radius: 8px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.result-value {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 22px;
}

.result-value span {
  font-size: 0.82rem;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.result-value strong {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.result-explain {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 22px;
  color: var(--white);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.result-explain:hover,
.result-explain:focus-visible {
  color: var(--white);
  background: rgba(59, 188, 255, 0.24);
}

.calculator:hover .result {
  box-shadow: 0 16px 34px rgba(11, 74, 114, 0.2);
  transform: translateY(-2px);
}

.calculator-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calculator-summary div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #f7f9fc;
}

.calculator-summary span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.calculator-summary strong {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.result-interpretation {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #fbfdff;
}

.result-interpretation[hidden] {
  display: none;
}

.result-interpretation .eyebrow {
  margin: 0;
}

.interpretation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.interpretation-grid article {
  padding: 16px;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #f7f9fc;
}

.interpretation-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.interpretation-grid p {
  margin: 0;
  color: var(--muted);
}

.interpretation-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.interpretation-actions[data-enabled-actions="1"] {
  grid-template-columns: 1fr;
}

.interpretation-actions[data-enabled-actions="2"] {
  grid-template-columns: 2fr 1fr;
}

.interpretation-actions[data-enabled-actions="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.interpretation-actions .button {
  width: 100%;
  min-width: 0;
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
  white-space: normal;
}

.interpretation-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.print-summary {
  display: none;
}

.trust {
  background: var(--white);
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 22px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq .eyebrow {
  color: var(--cyan);
}

details {
  max-width: 920px;
  margin: 12px 0;
  padding: 20px 22px;
}

.faq-extra {
  max-height: 1200px;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
}

.faq-extra[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
}

.faq-toggle {
  margin-top: 10px;
  padding: 0;
  color: var(--cyan);
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
  color: #0b75b7;
  transform: translateY(-1px);
}

details[open] {
  border-color: rgba(59, 188, 255, 0.38);
  background: #fbfdff;
  box-shadow: 0 18px 42px rgba(6, 22, 40, 0.1);
}

summary {
  cursor: pointer;
  font-weight: 850;
  transition: color 180ms ease;
}

summary:hover,
details[open] summary {
  color: #0b75b7;
}

details p {
  margin: 12px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(66px, 9vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 40, 0.98), rgba(10, 35, 58, 0.94)),
    radial-gradient(circle at 80% 0%, rgba(59, 188, 255, 0.16), transparent 34%);
}

.contact p {
  color: #d2e3ee;
}

.contact-direct {
  margin-top: 22px;
  font-weight: 750;
}

.contact-direct a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 180ms ease,
    text-underline-offset 180ms ease;
}

.contact-direct a:hover {
  color: var(--cyan);
  text-underline-offset: 7px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(199, 239, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  color: #eaf7ff;
}

.phone-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(199, 239, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.phone-fields[hidden] {
  display: none;
}

.phone-fields .form-hint {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--cyan);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-hint,
.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-privacy {
  margin: -2px 0 0;
  font-size: 0.84rem;
}

.form-privacy a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 750;
}

.form-status.is-success {
  color: #8ef6c7;
}

.form-status.is-error {
  color: #ffd1d1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 8px clamp(20px, 5vw, 72px);
  color: #526070;
  background: var(--white);
  font-size: 0.92rem;
  line-height: 1.25;
}

.footer-side,
.footer-center {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-side {
  flex-wrap: wrap;
}

.footer-center {
  flex-direction: column;
  gap: 1px;
  text-align: center;
}

.footer-center span:last-child {
  color: #758195;
  font-size: 0.88rem;
}

.footer-right {
  justify-content: flex-end;
}

.site-footer a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #0b75b7;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  align-items: end;
  padding: clamp(16px, 3vw, 32px);
  background: rgba(3, 10, 18, 0.42);
}

.cookie-card,
.cookie-preferences {
  width: min(100%, 560px);
  padding: 28px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(6, 22, 40, 0.22);
}

.cookie-card h2,
.cookie-preferences h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.cookie-card p,
.cookie-preferences p {
  margin: 0 0 18px;
  color: #243244;
}

.cookie-card a,
.cookie-preferences a {
  color: #0b75b7;
  font-weight: 750;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cookie-preferences {
  justify-self: center;
  width: min(100%, 980px);
  max-height: min(86vh, 760px);
  overflow: auto;
}

.cookie-preferences-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.cookie-preferences-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #758195;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cookie-category strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.cookie-category p,
.cookie-category small {
  display: block;
  margin: 0;
  color: #526070;
  line-height: 1.55;
}

.cookie-category > span:last-child {
  color: #007a2d;
  font-weight: 800;
}

.cookie-category input {
  width: 22px;
  height: 22px;
  accent-color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 72px) 40px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 40, 0.98), rgba(10, 35, 58, 0.94)),
    radial-gradient(circle at 75% 18%, rgba(59, 188, 255, 0.2), transparent 34%);
}

.legal-hero h1 {
  max-width: 920px;
}

.legal-hero p {
  max-width: 760px;
  color: #d2e3ee;
  font-size: 1.1rem;
}

.legal-content {
  max-width: 860px;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.legal-content p {
  color: var(--muted);
}

noscript {
  display: block;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #7a3311;
}

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .roi,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .trust-grid,
  .cooperation-grid,
  .process-presets,
  .automation-options,
  .calculator-costs,
  .interpretation-grid,
  .interpretation-actions,
  .calculator-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .interpretation-actions[data-enabled-actions="2"] {
    grid-template-columns: 1.6fr 1fr;
  }

  .interpretation-actions[data-enabled-actions="3"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverables-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .audit-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 390px;
  }

  .visual-orbit {
    inset: 12%;
  }

  .proof-strip,
  .service-grid,
  .case-grid,
  .timeline,
  .calculator,
  .process-presets,
  .automation-options,
  .calculator-costs,
  .result,
  .interpretation-grid,
  .interpretation-actions,
  .calculator-summary,
  .trust-grid,
  .cooperation-grid {
    grid-template-columns: 1fr;
  }

  .phone-fields {
    grid-template-columns: 1fr;
  }

  .interpretation-actions[data-enabled-actions] {
    grid-template-columns: 1fr;
  }

  .result-explain {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .cookie-consent {
    align-items: end;
    padding: 12px;
  }

  .cookie-card,
  .cookie-preferences {
    padding: 22px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-category {
    grid-template-columns: 1fr;
  }

  .interpretation-actions .button {
    width: 100%;
  }

  .deliverable-list div {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .flow-row {
    grid-template-columns: 1fr;
  }

  .flow-row i {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-side,
  .footer-center,
  .footer-right {
    justify-content: flex-start;
    text-align: left;
  }
}

@media print {
  @page {
    margin: 18mm;
  }

  body {
    color: #111827;
    background: #ffffff;
  }

  body * {
    visibility: hidden;
  }

  .print-summary,
  .print-summary * {
    visibility: visible;
  }

  .print-summary {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    color: #111827;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  }

  .print-summary h1 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
  }

  .print-summary h2 {
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d1d5db;
    font-size: 18px;
  }

  .print-summary h3 {
    margin: 14px 0 4px;
    font-size: 14px;
  }

  .print-summary p {
    margin: 0 0 8px;
    color: #374151;
  }

  .print-summary dl {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6px 18px;
    margin: 0;
  }

  .print-summary dt {
    color: #4b5563;
    font-weight: 700;
  }

  .print-summary dd {
    margin: 0;
    color: #111827;
  }

  .print-disclaimer {
    margin-top: 24px !important;
    padding-top: 10px;
    border-top: 1px solid #d1d5db;
    font-size: 12px;
  }
}
