:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-2: #0d1118;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f8fb;
  --muted: #9ba3b3;
  --muted-2: #687181;
  --orange: #ff920d;
  --orange-2: #ffd36b;
  --cyan: #33d5ff;
  --blue: #2e74ff;
  --green: #63ffb1;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1160px;
  --header: 76px;
  --ease: cubic-bezier(.2,.8,.2,1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 25% 10%, rgba(255,146,13,0.13), transparent 25rem),
    radial-gradient(circle at 85% 15%, rgba(46,116,255,0.11), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.35), transparent 85%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.11) .6px, transparent .6px);
  background-size: 3px 3px;
  opacity: .08;
  z-index: -1;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.045em; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(2.4rem, 6.6vw, 6.4rem); max-width: 940px; line-height: 1.02; }
h2 { font-size: clamp(1.85rem, 4.2vw, 4.2rem); max-width: 850px; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.5rem); letter-spacing: -0.03em; }

::selection { background: rgba(255,146,13,.35); color: #fff; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: clamp(78px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }
.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.006));
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  transform: translateY(-130%);
  transition: transform .2s ease;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header);
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 10, 15, .72);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #dfe4ef);
  color: #0b0e14;
  font-weight: 900;
  letter-spacing: -.08em;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 40px rgba(255,146,13,.22);
}
.brand strong { display: block; font-size: .9rem; letter-spacing: -.02em; }
.brand small {
  display: block;
  margin-top: 1px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--muted);
}
.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,.055); }
.nav-cta {
  color: #111 !important;
  background: #fff !important;
  font-weight: 800;
}
.nav-cta:hover { background: var(--orange-2) !important; }
.nav-toggle { display: none; }

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header) + 64px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(255,146,13,.17), transparent 22rem),
    radial-gradient(circle at 74% 48%, rgba(51,213,255,.06), transparent 34rem),
    linear-gradient(180deg, transparent, rgba(8,10,15,.96));
  z-index: -2;
}
.hero-orb {
  position: absolute;
  right: max(4vw, calc((100vw - var(--container))/2 - 30px));
  top: 16%;
  width: min(53vw, 760px);
  height: min(53vw, 760px);
  opacity: .88;
  filter: drop-shadow(0 0 70px rgba(255,146,13,.11));
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--orange-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,146,13,.8);
}
.hero-lead {
  margin-top: 28px;
  max-width: 680px;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  color: #b7bdc9;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  font-size: .88rem;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #100b03;
  box-shadow: 0 16px 46px rgba(255,146,13,.24);
}
.button-ghost {
  background: rgba(255,255,255,.055);
  border-color: var(--line-strong);
  color: var(--text);
}
.button-ghost:hover { background: rgba(255,255,255,.09); }
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.trust-strip li {
  padding: 18px;
  border-right: 1px solid var(--line);
}
.trust-strip li:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: 1.22rem; letter-spacing: -.035em; }
.trust-strip span { display: block; margin-top: 2px; color: var(--muted-2); font-size: .78rem; }

.hero-visual { position: relative; min-height: 480px; }
.flow-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.flow-panel-main {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(100%, 520px);
  padding: 18px;
  transform: translateY(-50%);
}
.panel-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.panel-head small {
  margin-left: auto;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-orange { background: var(--orange); box-shadow: 0 0 16px var(--orange); }
.flow-diagram {
  padding: 24px 0 20px;
  display: grid;
  grid-template-columns: 1fr 30px 1.1fr 30px 1fr 30px 1fr;
  align-items: center;
  gap: 6px;
}
.flow-node {
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6,8,12,.66);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.flow-node.highlight {
  color: #101011;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 50px rgba(255,146,13,.22);
}
.flow-line { height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.15), var(--orange)); }
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.metric-row > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.22);
}
.metric-row span {
  display: block;
  color: var(--muted-2);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.metric-row strong { display: block; margin-top: 6px; font-size: .86rem; }
.float-card {
  position: absolute;
  width: 164px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.float-card span { display: block; color: var(--muted-2); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.float-card strong { display: block; margin-top: 5px; font-size: 1rem; }
.card-a { left: 10%; top: 14%; }
.card-b { right: 10%; bottom: 11%; }

.two-col {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}
.section-heading p { margin-top: 24px; max-width: 480px; }
.section-text p { font-size: 1.05rem; color: #b5bcc8; }
.section-text p + p { margin-top: 18px; }
.section-top { margin-bottom: 34px; max-width: 760px; }
.section-top.centered { text-align: center; margin-inline: auto; }
.section-top p:not(.eyebrow) { margin-top: 18px; max-width: 680px; }
.section-top.centered p:not(.eyebrow) { margin-inline: auto; }

.cards-grid { display: grid; gap: 16px; }
.cards-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .offer-card, .project-mini, .commercial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.032));
  box-shadow: 0 18px 60px rgba(0,0,0,.17);
}
.feature-card::before, .offer-card::before, .project-mini::before, .commercial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,146,13,.16), transparent 18rem);
  transition: opacity .25s ease;
  pointer-events: none;
}
.feature-card:hover::before, .offer-card:hover::before, .project-mini:hover::before, .commercial-card:hover::before { opacity: 1; }
.feature-card { min-height: 240px; padding: 24px; }
.feature-card h3 { margin-top: 30px; }
.feature-card p { margin-top: 14px; font-size: .94rem; }
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,146,13,.10);
  color: var(--orange-2);
  border: 1px solid rgba(255,146,13,.22);
  font-weight: 900;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.offer-card { padding: 28px; min-height: 375px; }
.offer-index {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--orange-2);
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 900;
}
.offer-card p { margin-top: 14px; color: #b9c0ca; }
.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
}
.offer-card li { position: relative; padding-left: 18px; }
.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.note-box {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,146,13,.2);
  border-radius: var(--radius-lg);
  background: rgba(255,146,13,.055);
  color: #f4e6ca;
}
.note-box span { color: #d7c8b5; }

.project-list { display: grid; gap: 18px; }
.project-card.large {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(255,146,13,.11), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.026));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.project-card.large.reverse .project-visual { order: 2; }
.project-card.large.reverse .project-copy { order: 1; }
.project-card.large.reverse {
  background:
    radial-gradient(circle at 100% 0, rgba(46,116,255,.10), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.026));
}
.project-flow {
  width: min(92%, 460px);
  padding: 18px;
}
.project-visual {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(51,213,255,.12), transparent 15rem),
    radial-gradient(circle at 15% 10%, rgba(255,146,13,.13), transparent 12rem),
    rgba(0,0,0,.2);
  border: 1px solid var(--line);
}
.terminal-card {
  width: min(84%, 420px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(5,7,11,.86);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  overflow: hidden;
}
.terminal-top {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.terminal-top span { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); }
.terminal-top span:first-child { background: var(--orange); }
.terminal-card pre {
  margin: 0;
  padding: 22px;
  color: #d7e0f0;
  font-size: clamp(.78rem, 1.4vw, .98rem);
  line-height: 1.7;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.project-copy p { margin-top: 16px; max-width: 580px; font-size: 1.04rem; color: #bdc4cf; }
.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,146,13,.22);
  background: rgba(255,146,13,.08);
  color: var(--orange-2);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.inline-list li {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.042);
  color: var(--muted);
  font-size: .78rem;
}
.project-mini { padding: 24px; min-height: 260px; }
.project-mini p { margin-top: 14px; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,146,13,.28);
  background: rgba(255,146,13,.08);
  color: var(--orange-2);
  font-weight: 850;
  font-size: .9rem;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.project-link span { transition: transform .2s var(--ease); }
.project-link:hover {
  transform: translateY(-2px);
  background: rgba(255,146,13,.14);
  border-color: rgba(255,146,13,.45);
}
.project-link:hover span { transform: translate(2px, -2px); }

/* --- Demo NovaInsight --------------------------------------------------- */
.demo-strip {
  padding: clamp(22px, 3.4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(51,213,255,.10), transparent 22rem),
    radial-gradient(circle at 0 100%, rgba(255,146,13,.08), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.demo-head { max-width: 640px; margin: 0 auto clamp(22px, 3vw, 32px); text-align: center; }
.demo-head .eyebrow { margin-bottom: 14px; }
.demo-head h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.demo-head p { margin-top: 12px; color: #bdc4cf; font-size: 1.02rem; }
.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  max-width: 760px;
  margin-inline: auto;
}
.demo-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5,7,11,.5);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.demo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,146,13,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.4);
}
.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05070b;
  border-bottom: 1px solid var(--line);
}
.demo-item figcaption { padding: 16px 18px 20px; }
.demo-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,146,13,.22);
  background: rgba(255,146,13,.08);
  color: var(--orange-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-item figcaption p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
@media (max-width: 880px) {
  .demo-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.commercial {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(46,116,255,.09), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.008));
}
.commercial-stack { display: grid; gap: 14px; }
.commercial-card { padding: 24px; }
.commercial-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.commercial-card h3 { font-size: 1.2rem; line-height: 1.15; }
.commercial-points {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #c4cbd6;
  font-size: .95rem;
}
.commercial-points li { position: relative; padding-left: 20px; }
.commercial-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--orange);
}
.commercial-result {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #f4e6ca;
  font-size: .95rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
}
.timeline-item {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.045);
}
.timeline-item span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--orange-2);
  font-size: .78rem;
  font-weight: 900;
}
.timeline-item h3 { font-size: 1.12rem; line-height: 1.06; }
.timeline-item p { margin-top: 12px; font-size: .9rem; }

.tech-stack {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.tech-row {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.tech-row:hover { background: rgba(255,146,13,.035); }
.tech-label {
  color: var(--orange-2);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tech-tags li {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: #d2d8e2;
  font-size: .9rem;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(255,146,13,.22), transparent 30rem),
    radial-gradient(circle at 70% 20%, rgba(46,116,255,.14), transparent 25rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.contact-copy h2 { max-width: 700px; }
.contact-copy p { margin-top: 24px; max-width: 620px; font-size: 1.05rem; }
.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 580px;
}
.contact-points div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.042);
  color: var(--muted);
}
.contact-points strong { color: var(--text); }
.contact-points a { color: var(--orange-2); font-weight: 800; }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.066);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; }
.contact-form span {
  color: #cfd5df;
  font-size: .83rem;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,.28);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 136px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255,146,13,.65);
  box-shadow: 0 0 0 4px rgba(255,146,13,.1);
}
.honeypot { display: none !important; }
.form-note { font-size: .78rem; color: var(--muted-2); }
.form-note code {
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: #cfd5df;
}
.contact-form .req {
  color: var(--orange);
  font-weight: 900;
  margin-left: 2px;
}
.form-required-note {
  margin-top: -4px;
  font-size: .72rem;
  color: var(--muted-2);
  letter-spacing: .04em;
}
.contact-form label.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.contact-form label.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  accent-color: var(--orange);
  cursor: pointer;
}
.contact-form label.checkbox-row span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0;
}
.contact-form label.checkbox-row a {
  color: var(--orange-2);
  text-decoration: underline;
  text-decoration-color: rgba(255,211,107,.4);
}
.contact-form label.checkbox-row a:hover {
  text-decoration-color: var(--orange-2);
}

/* Komunikaty po wysłaniu formularza */
.form-result {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.form-result h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  color: var(--text);
}
.form-result p { color: var(--muted); }
.form-result a { color: var(--orange-2); text-decoration: underline; }
.form-result-meta { font-size: .85rem; color: var(--muted-2); }

.form-result-success {
  border-color: rgba(99, 255, 177, 0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(99,255,177,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
}
.form-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #06120c;
  background: var(--green);
  margin-bottom: 6px;
  box-shadow: 0 8px 28px rgba(99,255,177,.3);
}

.form-result-error {
  padding: 18px 22px;
  border-color: rgba(255, 110, 80, 0.4);
  background: linear-gradient(180deg, rgba(255,110,80,.1), rgba(255,110,80,.02));
  margin-bottom: 14px;
}
.form-result-error strong {
  display: block;
  color: #ffb39c;
  font-size: 1rem;
  margin-bottom: 4px;
}
.form-result-error p { color: var(--muted); font-size: .9rem; }

/* Strony błędów (404 itp.) */
.error-section {
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 12vw, 140px);
  text-align: center;
}
.error-page {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-top: var(--header);
}
.error-page .eyebrow {
  justify-content: center;
  font-size: 1rem;
  letter-spacing: .26em;
  color: var(--orange-2);
}
.error-page h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  letter-spacing: -0.05em;
  margin: 0;
  background: linear-gradient(180deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-lead {
  max-width: 540px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}
.error-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.error-links {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  font-size: .92rem;
}
.error-links a {
  color: var(--muted);
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.error-links a:hover {
  color: var(--text);
  border-bottom-color: var(--orange);
}

.legal {
  max-width: 760px;
  padding-top: calc(var(--header) + 32px);
}
.legal h1 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); margin-bottom: 8px; max-width: 720px; }
.legal h2 {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  margin: 36px 0 10px;
  color: var(--text);
  max-width: 720px;
}
.legal p { font-size: 1rem; color: #c4cad5; line-height: 1.65; }
.legal p + p { margin-top: 12px; }
.legal ul { margin: 10px 0 0; padding-left: 20px; color: var(--muted); }
.legal li { margin-bottom: 4px; line-height: 1.55; }
.legal a { color: var(--orange-2); text-decoration: underline; text-decoration-color: rgba(255,211,107,.4); }
.legal a:hover { text-decoration-color: var(--orange-2); }
.legal-meta { color: var(--muted-2); font-size: .82rem; letter-spacing: .04em; margin-bottom: 16px; }
.legal-back { margin-top: 48px; }
.legal-back a { font-weight: 700; }

.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  background: #06070a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { margin-bottom: 16px; }
.site-footer p { max-width: 360px; font-size: .9rem; }
.site-footer h3 {
  margin-bottom: 14px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.site-footer a, .site-footer span:not(.brand-mark) {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .9rem;
}
.site-footer a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-inner, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header) + 42px); }
  .hero-visual { min-height: 380px; }
  .flow-panel-main { left: 0; right: auto; width: min(100%, 620px); }
  .cards-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  :root { --header: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-nav {
    position: fixed;
    top: var(--header);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 10, 15, .94);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 12px 14px; }
  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: var(--text);
  }
  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }
  h1 { font-size: clamp(2.1rem, 9vw, 3.4rem); line-height: 1.05; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.6rem); line-height: 1.08; }
  .hero-orb { right: -22vw; top: 22%; width: 100vw; height: 100vw; opacity: .42; }
  .hero-visual { min-height: 330px; }
  .flow-diagram { grid-template-columns: 1fr; gap: 8px; }
  .flow-line { width: 1px; height: 20px; margin-inline: auto; background: linear-gradient(180deg, rgba(255,255,255,.15), var(--orange)); }
  .metric-row, .trust-strip, .offer-grid, .project-card.large, .cards-grid.four, .cards-grid.three, .footer-grid { grid-template-columns: 1fr; }
  .tech-row { grid-template-columns: 1fr; gap: 12px; padding: 18px 4px; }
  .trust-strip li { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip li:last-child { border-bottom: 0; }
  .offer-card { min-height: auto; }
  .offer-index { margin-bottom: 32px; }
  .project-visual { min-height: 260px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { min-height: auto; }
  .timeline-item span { margin-bottom: 34px; }
  .footer-bottom { flex-direction: column; }
  .float-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
