:root {
  color-scheme: dark;
  --black: #070707;
  --black-soft: #0b0b0b;
  --surface: #111111;
  --surface-2: #171717;
  --surface-3: #202020;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --text: #f7f7f7;
  --muted: #a7a7a7;
  --muted-strong: #d4d4d4;
  --ink: #101010;
  --ink-muted: #606060;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --dark-border: rgba(0, 0, 0, 0.10);
  --blue: #0998f5;
  --blue-light: #42adff;
  --blue-dark: #0877c2;
  --blue-soft: rgba(9, 152, 245, 0.12);
  --container: 1240px;
  --header-height: 84px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.modal-open { overflow: hidden; }
button, input, select, textarea, a { font: inherit; }
button { border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.section--surface { background: var(--surface); }
.section--light { background: var(--off-white); color: var(--ink); }

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(9, 152, 245, 0.08), transparent 27%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}
.background__grid {
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, black 4%, transparent 88%);
}
.background__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .11;
  background: var(--blue);
  animation: float 10s ease-in-out infinite alternate;
}
.background__glow--one { top: -240px; right: -180px; }
.background__glow--two { bottom: -280px; left: -220px; animation-delay: -4s; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 7, .84);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; width: 145px; transition: opacity .18s ease, transform .18s ease; }
.brand:hover { opacity: .82; transform: translateY(-1px); }
.brand img { display: block; width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: 30px; }
.desktop-nav a, .header-link {
  position: relative;
  color: #c7c7c7;
  font-size: .88rem;
  font-weight: 650;
  transition: color .18s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue);
  transition: transform .18s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active, .header-link:hover { color: var(--white); }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 28px 20px 40px;
  background: rgba(7,7,7,.98);
  backdrop-filter: blur(20px);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: grid; margin-bottom: 28px; }
.mobile-menu nav a { padding: 17px 0; border-bottom: 1px solid var(--border); font-size: 1.25rem; font-weight: 700; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 13px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 760;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(66,173,255,.62);
  outline-offset: 4px;
}
.button--small { min-height: 44px; padding-inline: 17px; font-size: .82rem; }
.button--primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 34px rgba(9,152,245,.2); }
.button--primary:hover { background: var(--blue-light); box-shadow: 0 18px 42px rgba(9,152,245,.28); }
.button--secondary { border: 1px solid var(--border-strong); background: rgba(255,255,255,.045); color: #ececec; }
.button--secondary:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.button--light { background: var(--white); color: var(--ink); }
.button--light:hover { background: #e9e9e9; }
.button--full { width: 100%; }
.button svg { width: 18px; height: 18px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--blue-light);
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--blue-dark); }
.hero { min-height: 100svh; padding-top: calc(var(--header-height) + 54px); display: flex; align-items: center; }
.hero__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr); gap: clamp(52px, 8vw, 110px); align-items: center; }
.hero__content { max-width: 680px; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; max-width: 760px; font-size: clamp(3.25rem, 6vw, 6.15rem); line-height: .96; letter-spacing: -.068em; font-weight: 720; }
h1 span { color: var(--blue-light); }
.hero__description { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.microcopy { display: flex; align-items: center; gap: 9px; margin: 25px 0 0; color: #909090; font-size: .82rem; }
.microcopy span { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-light); }

.hero__visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background: rgba(18,18,18,.92);
  box-shadow: 0 42px 100px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.025) inset;
  backdrop-filter: blur(12px);
}
.product-window--main { width: min(100%, 620px); transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.window-bar { min-height: 45px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.025); color: #8d8d8d; font-size: .7rem; }
.window-controls { display: flex; gap: 6px; }
.window-controls span { width: 8px; height: 8px; border-radius: 50%; background: #3c3c3c; }
.status-dot { justify-self: end; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(9,152,245,.13); }
.workspace-preview { min-height: 420px; display: grid; grid-template-columns: 82px 1fr; }
.workspace-sidebar { padding: 20px 15px; border-right: 1px solid var(--border); background: #0d0d0d; }
.workspace-sidebar img { width: 31px; display: block; margin-bottom: 27px; }
.sidebar-line { display: block; height: 9px; margin: 15px 0; border-radius: 999px; background: #242424; }
.sidebar-line.is-active { background: rgba(9,152,245,.72); }
.workspace-content { padding: 27px; }
.workspace-heading { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.workspace-heading small, .mini-card small { display: block; color: #777; font-size: .68rem; margin-bottom: 5px; }
.workspace-heading strong { font-size: 1rem; }
.workspace-heading > span { padding: 7px 10px; border-radius: 999px; background: rgba(9,152,245,.12); color: var(--blue-light); font-size: .65rem; font-weight: 750; }
.progress-card { margin-top: 23px; padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: #151515; }
.progress-card__top { display: flex; justify-content: space-between; margin-bottom: 12px; color: #999; font-size: .72rem; }
.progress-card__top strong { color: var(--white); }
.progress-track { height: 7px; border-radius: 999px; overflow: hidden; background: #292929; }
.progress-track span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.workspace-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 12px; }
.mini-card { min-height: 112px; padding: 17px; border: 1px solid var(--border); border-radius: 15px; background: #151515; }
.mini-card strong { display: block; font-size: .82rem; line-height: 1.35; }
.mini-badge { display: inline-flex; margin-top: 13px; padding: 5px 8px; border-radius: 7px; background: rgba(255,255,255,.05); color: #bdbdbd; font-size: .62rem; }
.chart-bars { height: 66px; display: flex; align-items: end; gap: 6px; }
.chart-bars span { flex: 1; border-radius: 4px 4px 1px 1px; background: rgba(9,152,245,.75); }
.chart-bars span:nth-child(1) { height: 28%; } .chart-bars span:nth-child(2) { height: 46%; } .chart-bars span:nth-child(3) { height: 58%; } .chart-bars span:nth-child(4) { height: 80%; } .chart-bars span:nth-child(5) { height: 95%; }
.task-list { display: grid; gap: 9px; margin-top: 14px; color: #9d9d9d; font-size: .7rem; }
.task-list span { display: flex; align-items: center; gap: 8px; }
.task-list i { width: 13px; height: 13px; border: 1px solid #383838; border-radius: 4px; }
.task-list i.done { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 3px #151515; }
.floating-card { position: absolute; z-index: 3; padding: 15px; border: 1px solid var(--border-strong); border-radius: 15px; background: rgba(17,17,17,.94); box-shadow: 0 24px 60px rgba(0,0,0,.36); backdrop-filter: blur(12px); animation: drift 5s ease-in-out infinite alternate; }
.floating-card--wireframe { left: -25px; top: 92px; width: 176px; }
.floating-card--code { right: -26px; bottom: 74px; width: 215px; animation-delay: -2.5s; }
.floating-card__label { display: block; margin-bottom: 12px; color: #8d8d8d; font-size: .65rem; font-weight: 760; text-transform: uppercase; letter-spacing: .11em; }
.wireframe-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6px; }
.wireframe-box i { display: block; min-height: 36px; border: 1px solid #353535; border-radius: 6px; }
.wireframe-box i:first-child { grid-row: span 2; }
.floating-card code { color: #a8d9ff; font-family: "SFMono-Regular", Consolas, monospace; font-size: .68rem; line-height: 1.6; }

.positioning-strip { border-block: 1px solid var(--border); background: rgba(255,255,255,.018); }
.positioning-strip__grid { min-height: 85px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.positioning-strip span { position: relative; padding: 0 28px; color: #c9c9c9; font-size: .78rem; font-weight: 650; text-align: center; }
.positioning-strip span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: 0; width: 1px; height: 24px; transform: translateY(-50%); background: var(--border); }

.section-heading { max-width: 780px; margin-bottom: 62px; }
.section-heading h2 { margin: 0; font-size: clamp(2.35rem, 4.6vw, 4.8rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 710; }
.section-heading > p:not(.eyebrow) { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 1.03rem; line-height: 1.75; }
.section-heading--dark > p:not(.eyebrow) { color: var(--ink-muted); }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-card { position: relative; min-height: 405px; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); overflow: hidden; }
.comparison-card--problem { border: 1px solid rgba(0,0,0,.1); background: #e9e9e9; }
.comparison-card--solution { background: var(--ink); color: var(--white); }
.comparison-card__number { position: absolute; right: 28px; top: 22px; color: rgba(0,0,0,.18); font-size: 4.3rem; font-weight: 800; letter-spacing: -.06em; }
.comparison-card--solution .comparison-card__number { color: rgba(255,255,255,.13); }
.comparison-card h3 { max-width: 350px; margin: 88px 0 28px; font-size: clamp(1.7rem, 3vw, 2.65rem); line-height: 1.03; letter-spacing: -.045em; }
.comparison-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.comparison-card li { display: flex; gap: 11px; align-items: start; color: #585858; line-height: 1.5; }
.comparison-card--solution li { color: #c5c5c5; }
.comparison-card li::before { content: "×"; color: #7a7a7a; font-weight: 800; }
.comparison-card--solution li::before { content: "✓"; color: var(--blue-light); }

.services-list { border-top: 1px solid var(--border); }
.service-block { display: grid; grid-template-columns: 70px minmax(250px, 1fr) minmax(230px, .8fr) auto; align-items: center; gap: 34px; padding: 38px 0; border-bottom: 1px solid var(--border); }
.service-block__index { color: #5f5f5f; font-size: .72rem; font-weight: 800; }
.service-block__content { display: grid; grid-template-columns: 48px 1fr; gap: 10px 16px; align-items: center; }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.03); color: var(--blue-light); font-family: ui-monospace, monospace; font-weight: 750; }
.service-block__content h3 { margin: 0; font-size: 1.5rem; letter-spacing: -.03em; }
.service-block__content p { grid-column: 2; margin: 0; color: var(--muted); line-height: 1.55; font-size: .9rem; }
.service-block__items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; margin: 0; padding: 0; list-style: none; color: #a6a6a6; font-size: .78rem; }
.service-block__items li::before { content: "·"; margin-right: 6px; color: var(--blue); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: .8rem; font-weight: 740; cursor: pointer; background: none; padding: 0; }
.text-link span { color: var(--blue-light); transition: transform .18s ease; }
.text-link:hover span { transform: translate(2px,-2px); }
.section--light .text-link { color: var(--ink); }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card { position: relative; min-height: 380px; overflow: hidden; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(66,173,255,.35); background: linear-gradient(180deg, rgba(9,152,245,.07), rgba(255,255,255,.015)); }
.solution-card > span { color: #666; font-size: .68rem; font-weight: 800; }
.solution-card h3 { margin: 30px 0 13px; font-size: 1.5rem; letter-spacing: -.035em; }
.solution-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .88rem; }
.solution-preview { position: absolute; left: 28px; right: 28px; bottom: 26px; height: 125px; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: #0b0b0b; }
.solution-preview i { position: absolute; display: block; border-radius: 5px; background: #202020; }
.solution-preview--site i:nth-child(1) { left: 14px; right: 14px; top: 13px; height: 10px; }
.solution-preview--site i:nth-child(2) { left: 14px; top: 40px; width: 46%; height: 48px; background: rgba(9,152,245,.35); }
.solution-preview--site i:nth-child(3) { right: 14px; top: 40px; width: 40%; height: 62px; }
.solution-preview--system i:nth-child(1) { inset: 12px auto 12px 12px; width: 24%; }
.solution-preview--system i:nth-child(2) { left: 31%; right: 12px; top: 12px; height: 20px; }
.solution-preview--system i:nth-child(3) { left: 31%; width: 27%; top: 42px; bottom: 12px; background: rgba(9,152,245,.35); }
.solution-preview--system i:nth-child(4) { right: 12px; width: 33%; top: 42px; bottom: 12px; }
.solution-preview--dashboard i { bottom: 14px; width: 12%; background: rgba(9,152,245,.4); }
.solution-preview--dashboard i:nth-child(1) { left: 16px; height: 24%; } .solution-preview--dashboard i:nth-child(2) { left: 34%; height: 47%; } .solution-preview--dashboard i:nth-child(3) { left: 51%; height: 64%; } .solution-preview--dashboard i:nth-child(4) { left: 68%; height: 78%; } .solution-preview--dashboard i:nth-child(5) { right: 16px; height: 92%; }
.solution-preview--portal i:nth-child(1) { left: 12px; top: 12px; bottom: 12px; width: 24%; }
.solution-preview--portal i:nth-child(2) { left: 31%; right: 12px; top: 12px; height: 36px; background: rgba(9,152,245,.35); }
.solution-preview--portal i:nth-child(3) { left: 31%; right: 12px; bottom: 12px; height: 50px; }
.solution-preview--landing i:nth-child(1) { left: 14px; top: 17px; width: 52%; height: 13px; }
.solution-preview--landing i:nth-child(2) { left: 14px; top: 42px; width: 38%; height: 9px; }
.solution-preview--landing i:nth-child(3) { left: 14px; top: 69px; width: 32%; height: 32px; background: var(--blue); }
.solution-preview--automation i { width: 25px; height: 25px; border-radius: 50%; background: rgba(9,152,245,.48); }
.solution-preview--automation i:nth-child(1) { left: 16px; top: 50px; } .solution-preview--automation i:nth-child(2) { left: 38%; top: 25px; } .solution-preview--automation i:nth-child(3) { right: 36%; bottom: 22px; } .solution-preview--automation i:nth-child(4) { right: 16px; top: 50px; }
.solution-preview--automation::before { content: ""; position: absolute; left: 31px; right: 31px; top: 61px; height: 1px; background: rgba(66,173,255,.45); transform: rotate(-5deg); }

.process-timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; padding-top: 24px; }
.process-timeline::before { content: ""; position: absolute; left: 4%; right: 4%; top: 43px; height: 1px; background: var(--border-strong); }
.process-step { position: relative; padding: 0 20px; }
.process-step > span { position: relative; z-index: 2; width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 38px; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--black); color: var(--blue-light); font-size: .67rem; font-weight: 820; }
.process-step small { color: var(--blue-light); font-size: .63rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.process-step h3 { margin: 10px 0 12px; font-size: 1.13rem; line-height: 1.2; letter-spacing: -.025em; }
.process-step p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }

.projects-list { display: grid; gap: 22px; }
.project-card { position: relative; min-height: 490px; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; padding: clamp(30px, 5vw, 62px); border-radius: var(--radius-xl); }
.project-card:nth-child(even) { grid-template-columns: 1.2fr .8fr; }
.project-card:nth-child(even) .project-card__content { order: 2; }
.project-card__content { position: relative; z-index: 2; max-width: 430px; }
.project-card__category { display: inline-flex; margin-bottom: 25px; color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 760; letter-spacing: .05em; text-transform: uppercase; }
.project-card h3 { margin: 0; font-size: clamp(2.25rem, 4vw, 4.1rem); line-height: 1; letter-spacing: -.055em; }
.project-card p { margin: 22px 0 27px; color: rgba(255,255,255,.7); line-height: 1.7; }
.project-card--workspace { background: #111111; color: var(--white); }
.project-card--estag { background: #dfefff; color: #10253a; }
.project-card--estag .project-card__category, .project-card--estag p { color: #47657d; }
.project-card--estag .text-link { color: #10253a; }
.project-card--danytec { background: #3e2b22; color: #fff5ed; }
.project-card--grshirts { background: #0c2441; color: #fff; }
.project-mockup { position: relative; min-height: 330px; border-radius: 19px; box-shadow: 0 30px 80px rgba(0,0,0,.2); transform: rotate(-2deg); }
.project-card:nth-child(even) .project-mockup { transform: rotate(2deg); }
.project-mockup--workspace { overflow: hidden; display: grid; grid-template-columns: 22% 1fr; border: 1px solid rgba(255,255,255,.1); background: #0b0b0b; }
.mock-sidebar { padding: 22px 15px; background: #0f0f0f; border-right: 1px solid rgba(255,255,255,.08); }
.mock-sidebar i { display: block; height: 10px; margin: 17px 0; border-radius: 999px; background: #292929; }
.mock-sidebar i:first-child { background: var(--blue); }
.mock-content { padding: 28px; }
.mock-title { width: 43%; height: 16px; border-radius: 999px; background: #2d2d2d; }
.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; }
.mock-stats i { height: 72px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: #151515; }
.mock-chart { height: 145px; margin-top: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: linear-gradient(180deg, rgba(9,152,245,.15), transparent 70%), #151515; }
.project-mockup--calendar { padding: 24px; background: #f8fbff; border: 1px solid rgba(16,37,58,.12); }
.calendar-head { display: flex; justify-content: space-between; margin-bottom: 22px; }
.calendar-head i:first-child { width: 32%; height: 14px; border-radius: 999px; background: #b6cce1; }
.calendar-head i:last-child { width: 80px; height: 29px; border-radius: 8px; background: #3387d8; }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 7px; }
.calendar-grid i { aspect-ratio: 1; border: 1px solid #dbe7f1; border-radius: 6px; background: white; }
.calendar-grid i:nth-child(10), .calendar-grid i:nth-child(18), .calendar-grid i:nth-child(26) { background: #d7ebff; border-color: #9fcaff; }
.project-mockup--website { overflow: hidden; padding: 20px; background: #fff8f1; border: 1px solid rgba(255,255,255,.15); }
.website-nav { height: 15px; width: 100%; border-radius: 999px; background: #d7c3b3; }
.website-hero { position: relative; height: 170px; margin-top: 18px; padding: 30px; border-radius: 13px; background: #53372b; }
.website-hero i { display: block; height: 12px; margin-bottom: 12px; border-radius: 999px; background: rgba(255,255,255,.75); }
.website-hero i:first-child { width: 55%; } .website-hero i:nth-child(2) { width: 35%; opacity: .55; }
.website-hero b { display: block; width: 110px; height: 36px; margin-top: 25px; border-radius: 9px; background: #d7a66d; }
.website-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.website-cards i { height: 80px; border-radius: 10px; background: #eadfd6; }
.project-mockup--catalog { overflow: hidden; padding: 20px; background: #f5f8fc; }
.catalog-nav { height: 16px; border-radius: 999px; background: #c5d3e3; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.catalog-grid i { height: 245px; border-radius: 13px; background: linear-gradient(180deg, #d6e3f1 0 70%, #fff 70%); box-shadow: 0 7px 24px rgba(12,36,65,.08); }

.workspace-section { overflow: hidden; }
.workspace-showcase { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; padding: 65px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(145deg, #111 0%, #0a0a0a 100%); }
.workspace-showcase__content h2 { margin: 0; font-size: clamp(2.5rem, 4.8vw, 4.8rem); line-height: .99; letter-spacing: -.055em; }
.workspace-showcase__content > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.check-list { display: grid; gap: 13px; margin: 30px 0 34px; padding: 0; list-style: none; color: #c9c9c9; font-size: .88rem; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--blue-light); }
.workspace-showcase__visual { min-width: 0; }
.dashboard-frame { overflow: hidden; border: 1px solid var(--border-strong); border-radius: 18px; background: #090909; box-shadow: 0 34px 90px rgba(0,0,0,.4); transform: rotate(2deg); }
.dashboard-top { height: 45px; display: flex; align-items: center; gap: 9px; padding: 0 14px; border-bottom: 1px solid var(--border); }
.dashboard-top img { width: 26px; margin-right: auto; }
.dashboard-top span { width: 8px; height: 8px; border-radius: 50%; background: #303030; }
.dashboard-body { min-height: 390px; display: grid; grid-template-columns: 72px 1fr; }
.dashboard-body aside { padding: 20px 14px; border-right: 1px solid var(--border); }
.dashboard-body aside i { display: block; height: 9px; margin: 17px 0; border-radius: 999px; background: #282828; }
.dashboard-body aside i:first-child { background: var(--blue); }
.dashboard-main { padding: 25px; }
.dashboard-welcome { width: 37%; height: 17px; border-radius: 999px; background: #2b2b2b; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; }
.dashboard-metrics i { height: 74px; border: 1px solid var(--border); border-radius: 12px; background: #131313; }
.dashboard-columns { display: grid; grid-template-columns: 1.3fr .7fr; gap: 10px; margin-top: 10px; }
.dashboard-panel { min-height: 200px; border: 1px solid var(--border); border-radius: 12px; background: #131313; }
.dashboard-panel--wide { background: linear-gradient(180deg, rgba(9,152,245,.12), transparent 80%), #131313; }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.principle-card { min-height: 260px; padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.principle-card > span { color: var(--blue-light); font-size: .67rem; font-weight: 800; }
.principle-card h3 { margin: 44px 0 14px; font-size: 1.35rem; letter-spacing: -.03em; }
.principle-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .86rem; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 130px; margin-bottom: 0; }
.faq-grid .section-heading h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); }
.faq-grid .text-link { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 680; }
summary::-webkit-details-marker { display: none; }
summary span { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; }
summary span::before, summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; transform: translate(-50%,-50%); background: #bdbdbd; }
summary span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
details p { margin: -8px 60px 28px 0; color: var(--muted); line-height: 1.7; }

.contact-section { padding-top: 70px; }
.contact-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: clamp(34px, 6vw, 72px); border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.contact-card__content h2 { margin: 0; font-size: clamp(2.5rem, 4.7vw, 4.7rem); line-height: 1; letter-spacing: -.055em; }
.contact-card__content > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.contact-benefits { display: grid; gap: 12px; margin-top: 31px; color: #c8c8c8; font-size: .85rem; }
.contact-benefits span { display: flex; align-items: center; gap: 10px; }
.contact-benefits i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue-light); font-style: normal; font-size: .68rem; }
.contact-direct { margin-top: 42px; padding-top: 27px; border-top: 1px solid var(--border); }
.contact-direct small { display: block; margin-bottom: 8px; color: #7f7f7f; }
.contact-direct button { display: flex; align-items: center; gap: 10px; padding: 0; background: none; color: var(--white); cursor: pointer; font-size: 1.05rem; font-weight: 680; }
.contact-direct button span { color: var(--blue-light); font-size: .7rem; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { position: relative; display: grid; gap: 8px; color: #c7c7c7; font-size: .75rem; font-weight: 700; }
.contact-form label > span { color: var(--blue-light); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0c0c0c;
  color: var(--white);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-form input, .contact-form select { height: 52px; padding: 0 15px; }
.contact-form textarea { resize: vertical; min-height: 150px; padding: 15px; line-height: 1.55; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #606060; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(66,173,255,.65); box-shadow: 0 0 0 4px rgba(9,152,245,.08); }
.contact-form .is-invalid { border-color: #e56363; }
.character-count { position: absolute; right: 12px; bottom: 10px; color: #646464; font-size: .65rem; font-weight: 500; }
.consent { grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: #8f8f8f !important; font-weight: 500 !important; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.consent span { color: inherit !important; }
.form-note { margin: -6px 0 0; color: #6f6f6f; font-size: .68rem; line-height: 1.5; text-align: center; }

.final-cta { padding: 0 0 120px; }
.final-cta__inner { position: relative; overflow: hidden; display: grid; grid-template-columns: 80px 1fr auto; gap: 34px; align-items: center; padding: 54px; border-radius: var(--radius-xl); background: linear-gradient(135deg, #087fd0, #0ba2fa); }
.final-cta__inner::after { content: ""; position: absolute; right: 13%; top: -110px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.1); filter: blur(2px); }
.final-cta img { position: relative; z-index: 2; width: 70px; }
.final-cta div, .final-cta a { position: relative; z-index: 2; }
.final-cta p { margin: 0 0 8px; color: rgba(255,255,255,.76); font-size: .76rem; font-weight: 760; text-transform: uppercase; letter-spacing: .09em; }
.final-cta h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; letter-spacing: -.05em; }

.site-footer { border-top: 1px solid var(--border); background: #050505; }
.site-footer__top { display: grid; grid-template-columns: 1.5fr .55fr .8fr; gap: 80px; padding: 70px 0 55px; }
.footer-brand img { width: 170px; }
.footer-brand p { max-width: 380px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; }
.footer-links { display: grid; align-content: start; gap: 13px; }
.footer-links strong { margin-bottom: 6px; color: var(--white); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; background: none; color: #8e8e8e; font-size: .82rem; cursor: pointer; transition: color .18s ease; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.site-footer__bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--border); color: #6e6e6e; font-size: .72rem; }

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px 11px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(17,17,17,.94);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
  transform: translateY(130%);
  transition: transform .25s ease;
}
.mobile-contact-bar.is-visible { transform: translateY(0); }
.mobile-contact-bar span { color: #c8c8c8; font-size: .74rem; }
.mobile-contact-bar a { padding: 9px 12px; border-radius: 9px; background: var(--blue); color: white; font-size: .72rem; font-weight: 750; }

.modal { position: fixed; inset: 0; z-index: 1300; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.modal__panel { position: relative; z-index: 1; width: min(100%, 760px); max-height: min(860px, calc(100svh - 40px)); overflow-y: auto; padding: 46px; border: 1px solid var(--border-strong); border-radius: 24px; background: #111; box-shadow: 0 40px 120px rgba(0,0,0,.6); transform: translateY(18px) scale(.985); transition: transform .22s ease; }
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: sticky; float: right; top: 0; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 11px; background: #181818; cursor: pointer; font-size: 1.5rem; }
.modal__eyebrow { display: block; margin: 12px 0 18px; color: var(--blue-light); font-size: .68rem; font-weight: 760; text-transform: uppercase; letter-spacing: .1em; }
.modal__panel h2 { margin: 0; padding-right: 55px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.modal__panel > p { margin: 22px 0 0; color: var(--muted); line-height: 1.7; }
.modal__details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.modal__details > div, .modal__features { padding: 20px; border: 1px solid var(--border); border-radius: 14px; background: #151515; }
.modal__details small, .modal__features small { color: var(--blue-light); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.modal__details p { margin: 11px 0 0; color: #bcbcbc; line-height: 1.6; font-size: .85rem; }
.modal__features { margin: 14px 0 28px; }
.modal__features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 16px 0 0; padding: 0; list-style: none; color: #bcbcbc; font-size: .82rem; }
.modal__features li::before { content: "✓"; margin-right: 8px; color: var(--blue-light); }
.modal__panel--legal { width: min(100%, 690px); }
.modal__panel--legal h2 { margin-bottom: 24px; }
.modal__panel--legal p { color: var(--muted); line-height: 1.7; }

.toast { position: fixed; left: 50%; bottom: 26px; z-index: 2000; transform: translate(-50%, 130%); padding: 13px 18px; border: 1px solid var(--border-strong); border-radius: 12px; background: #171717; color: #efefef; box-shadow: 0 15px 45px rgba(0,0,0,.4); font-size: .8rem; opacity: 0; transition: transform .22s ease, opacity .22s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

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

@keyframes float { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,32px,0) scale(1.1); } }
@keyframes drift { from { transform: translateY(-7px); } to { transform: translateY(8px); } }

@media (max-width: 1160px) {
  .site-header__inner { grid-template-columns: 145px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .header-link { display: none; }
  .hero__grid { grid-template-columns: .92fr 1.08fr; gap: 44px; }
  .hero__visual { min-height: 520px; }
  .floating-card--wireframe { left: -10px; }
  .floating-card--code { right: -8px; }
  .service-block { grid-template-columns: 50px 1fr .8fr; }
  .service-block .text-link { grid-column: 2 / -1; }
  .process-timeline { grid-template-columns: repeat(3,1fr); gap: 44px 0; }
  .process-timeline::before { display: none; }
  .process-step > span { margin-bottom: 24px; }
  .workspace-showcase { gap: 42px; padding: 48px; }
  .contact-card { gap: 45px; }
}

@media (max-width: 920px) {
  :root { --header-height: 74px; }
  .desktop-nav, .site-header__actions { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .brand { width: 126px; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 790px; }
  .hero__visual { min-height: 560px; margin-top: 10px; }
  .positioning-strip__grid { grid-template-columns: 1fr 1fr; }
  .positioning-strip span { min-height: 64px; display: grid; place-items: center; }
  .positioning-strip span:nth-child(2)::after { display: none; }
  .positioning-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-card { min-height: 360px; }
  .service-block { grid-template-columns: 45px 1fr; gap: 20px; }
  .service-block__items { grid-column: 2; }
  .service-block .text-link { grid-column: 2; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .project-card:nth-child(even) .project-card__content { order: initial; }
  .project-card__content { max-width: 630px; }
  .project-mockup, .project-card:nth-child(even) .project-mockup { transform: none; }
  .workspace-showcase { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-grid .section-heading { position: static; }
  .contact-card { grid-template-columns: 1fr; }
  .final-cta__inner { grid-template-columns: 64px 1fr; }
  .final-cta__inner .button { grid-column: 2; justify-self: start; }
  .site-footer__top { grid-template-columns: 1.3fr .7fr; }
  .site-footer__top > :last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 88px 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero { padding-top: 126px; padding-bottom: 90px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__visual { min-height: 430px; }
  .product-window--main { transform: none; }
  .workspace-preview { min-height: 330px; grid-template-columns: 58px 1fr; }
  .workspace-sidebar { padding: 15px 10px; }
  .workspace-sidebar img { width: 25px; }
  .workspace-content { padding: 18px; }
  .workspace-grid { grid-template-columns: 1fr; }
  .mini-card--chart { display: none; }
  .floating-card { display: none; }
  .positioning-strip__grid { grid-template-columns: 1fr; }
  .positioning-strip span { min-height: 58px; border-bottom: 1px solid var(--border); }
  .positioning-strip span::after { display: none; }
  .positioning-strip span:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .comparison-card { padding: 28px; min-height: 345px; }
  .comparison-card h3 { margin-top: 70px; }
  .comparison-card__number { font-size: 3.3rem; }
  .service-block { grid-template-columns: 32px 1fr; padding: 30px 0; }
  .service-block__content { grid-template-columns: 42px 1fr; }
  .service-block__content p { grid-column: 1 / -1; }
  .service-block__items { grid-column: 1 / -1; padding-left: 48px; grid-template-columns: 1fr; }
  .service-block .text-link { grid-column: 1 / -1; padding-left: 48px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 350px; }
  .process-timeline { grid-template-columns: 1fr; gap: 0; border-left: 1px solid var(--border); margin-left: 19px; }
  .process-step { display: grid; grid-template-columns: 39px 1fr; gap: 18px; padding: 0 0 38px; transform: translateX(-20px); }
  .process-step > span { margin: 0; }
  .process-step > div { padding-top: 4px; }
  .project-card { padding: 30px 24px; border-radius: 22px; }
  .project-card h3 { font-size: 2.6rem; }
  .project-mockup { min-height: 250px; }
  .catalog-grid i { height: 180px; }
  .workspace-showcase { padding: 30px 24px; border-radius: 22px; }
  .dashboard-body { grid-template-columns: 50px 1fr; min-height: 300px; }
  .dashboard-main { padding: 16px; }
  .dashboard-metrics { grid-template-columns: 1fr 1fr; }
  .dashboard-metrics i:last-child { display: none; }
  .dashboard-columns { grid-template-columns: 1fr; }
  .dashboard-panel:not(.dashboard-panel--wide) { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 220px; }
  summary { min-height: 78px; font-size: .95rem; }
  details p { margin-right: 0; }
  .contact-section { padding-top: 35px; }
  .contact-card { padding: 30px 22px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-direct button { font-size: .92rem; }
  .final-cta { padding-bottom: 90px; }
  .final-cta__inner { grid-template-columns: 1fr; padding: 35px 25px; border-radius: 22px; }
  .final-cta__inner img { width: 52px; }
  .final-cta__inner .button { grid-column: 1; }
  .site-footer__top { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__top > :last-child { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0 92px; }
  .mobile-contact-bar { display: flex; }
  .modal { padding: 10px; }
  .modal__panel { padding: 26px 20px; border-radius: 18px; }
  .modal__details, .modal__features ul { grid-template-columns: 1fr; }
}

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