:root {
  --color-bg: #f7faff;
  --color-surface: #ffffff;
  --color-surface-soft: #edf4ff;
  --color-text: #101827;
  --color-muted: #5b6575;
  --color-accent: #155eef;
  --color-accent-dark: #0b43b8;
  --color-accent-light: #e8f0ff;
  --color-border: #d9e3f1;
  --color-success: #0f8f72;
  --color-dark: #0b1220;
  --color-mint: #14b8a6;
  --color-amber: #f59e0b;
  --color-sky: #38bdf8;
  --shadow-sm: 0 10px 28px rgba(16, 24, 39, 0.07);
  --shadow-md: 0 22px 55px rgba(16, 24, 39, 0.11);
  --shadow-lg: 0 34px 80px rgba(11, 18, 32, 0.17);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --section-space: clamp(4.5rem, 9vw, 7.5rem);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.section {
  padding-block: var(--section-space);
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid #f5b82e;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 231, 240, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand strong {
  color: var(--color-accent);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
}

.site-nav > a:not(.button) {
  color: #415168;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 1.25rem;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle-lines {
  position: relative;
  margin: auto;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.3rem;
  border: 1px solid var(--color-accent);
  border-radius: 11px;
  background: var(--color-accent);
  box-shadow: 0 8px 18px rgba(11, 107, 203, 0.2);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 12px 24px rgba(11, 107, 203, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.86rem;
}

.button-secondary {
  border-color: #cbd7e4;
  background: #fff;
  box-shadow: none;
  color: var(--color-text);
}

.button-secondary:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-soft);
  box-shadow: none;
  color: var(--color-accent-dark);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.55rem;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7.6rem);
  background:
    radial-gradient(circle at 80% 25%, rgba(177, 219, 255, 0.42), transparent 29rem),
    linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(#b6cde2 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent 5%, #000 75%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 4rem;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.45rem, 7.2vw, 4.85rem);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 1.8rem;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-note {
  max-width: 650px;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.35rem;
  color: #536378;
  font-size: 0.88rem;
}

.check-dot {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: #dff5ec;
  color: var(--color-success);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  max-width: 580px;
  margin: 1rem auto 0;
  padding: 1.4rem 0.5rem 2.5rem;
}

.browser {
  overflow: hidden;
  border: 1px solid #cfdbe8;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  height: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-inline: 0.85rem;
  border-bottom: 1px solid #e6ebf1;
  background: #f7f9fb;
}

.browser-dots {
  display: flex;
  gap: 0.28rem;
}

.browser-dots i,
.preview-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b7c2ce;
}

.browser-address {
  width: 46%;
  margin-inline: auto;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  background: #e9eef3;
  color: #83909e;
  font-size: 0.46rem;
  text-align: center;
}

.browser-page {
  min-height: 310px;
  padding: 1.6rem;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.mock-nav > span:not(.mock-logo) {
  width: 2rem;
  height: 4px;
  border-radius: 4px;
  background: #d9e1e9;
}

.mock-nav .mock-logo {
  width: 2.4rem;
  height: 0.72rem;
  margin-right: auto;
  border-radius: 3px;
  background: #1d3854;
}

.mock-nav b {
  width: 2.8rem;
  height: 1rem;
  border-radius: 4px;
  background: var(--color-accent);
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1.3rem;
}

.mock-hero span {
  display: block;
}

.mock-kicker {
  width: 3.2rem;
  height: 5px;
  margin-bottom: 0.7rem;
  border-radius: 4px;
  background: #7db7ed;
}

.mock-title {
  width: 100%;
  height: 13px;
  margin-bottom: 0.45rem;
  border-radius: 3px;
  background: #18334f;
}

.mock-title.short { width: 72%; margin-bottom: 0.85rem; }

.mock-copy {
  width: 90%;
  height: 4px;
  margin-bottom: 0.35rem;
  border-radius: 3px;
  background: #bbc8d4;
}

.mock-copy.short { width: 70%; }

.mock-button {
  width: 4.8rem;
  height: 1.35rem;
  margin-top: 0.8rem;
  border-radius: 5px;
  background: var(--color-accent);
}

.mock-illustration {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8f4ff, #c6e1f8);
}

.mock-illustration::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 58%;
  right: -5%;
  bottom: -7%;
  border-radius: 50% 0 0;
  background: #72b1e8;
  transform: rotate(-8deg);
}

.mock-illustration span {
  position: absolute;
  z-index: 1;
  width: 32%;
  height: 42%;
  bottom: 15%;
  border: 3px solid #fff;
  border-radius: 6px 6px 2px 2px;
  background: rgba(255,255,255,0.6);
}

.mock-illustration span:nth-child(1) { left: 10%; height: 28%; }
.mock-illustration span:nth-child(2) { left: 36%; height: 49%; }
.mock-illustration span:nth-child(3) { left: 63%; height: 67%; }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.mock-stats span {
  height: 2.8rem;
  border: 1px solid #e4eaf0;
  border-radius: 7px;
  background: #fafbfd;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #dce5ee;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
  font-size: 0.68rem;
  line-height: 1.3;
}

.floating-card span:last-child {
  display: grid;
}

.floating-card strong {
  color: var(--color-text);
  font-size: 0.72rem;
}

.floating-card small {
  color: var(--color-muted);
}

.floating-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #ddf5eb;
  color: var(--color-success);
  font-weight: 900;
}

.code-icon {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.floating-card-top {
  top: 0;
  right: -0.2rem;
}

.floating-card-bottom {
  bottom: 0;
  left: -0.4rem;
}

.trust-section {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  color: #fff;
}

.trust-grid {
  display: grid;
}

.trust-item {
  display: flex;
  gap: 1rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child {
  border-bottom: 0;
}

.number-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 190, 255, 0.32);
  border-radius: 8px;
  background: rgba(74, 159, 234, 0.12);
  color: #75bdfd;
  font-size: 0.65rem;
  font-weight: 800;
}

.trust-item h3 {
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
}

.trust-item p {
  color: #b5c2d0;
  font-size: 0.83rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.service-copy h2,
.delivery-copy h2,
.scope-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading > p:not(.eyebrow),
.section-lead {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.compact {
  margin-bottom: 0;
}

.portfolio-section {
  background: var(--color-bg);
}

.portfolio-note {
  max-width: 900px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: -0.6rem 0 2.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid #cfe1f2;
  border-radius: var(--radius-sm);
  background: #eef7ff;
  color: #3f5770;
  font-size: 0.86rem;
}

.portfolio-note > span {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

.portfolio-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-card:hover {
  border-color: #c4d5e5;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.portfolio-preview {
  --theme: #176fc1;
  --theme-soft: #e5f2ff;
  padding: 1rem 1rem 0;
  background: var(--theme-soft);
}

.theme-orange { --theme: #c7661d; --theme-soft: #fff0e5; }
.theme-emerald { --theme: #16836a; --theme-soft: #e5f7f1; }
.theme-rose { --theme: #b45b75; --theme-soft: #fbeaf0; }
.theme-sky { --theme: #1f7da8; --theme-soft: #e5f5fb; }
.theme-violet { --theme: #7254b9; --theme-soft: #eee9fb; }

.preview-browser-bar {
  height: 1.55rem;
  display: flex;
  align-items: center;
  gap: 0.22rem;
  padding-inline: 0.65rem;
  border-radius: 8px 8px 0 0;
  background: #f3f5f7;
}

.preview-browser-bar i {
  width: 5px;
  height: 5px;
}

.preview-browser-bar span {
  width: 35%;
  height: 5px;
  margin-left: 0.5rem;
  border-radius: 4px;
  background: #dce2e7;
}

.preview-page {
  height: 215px;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(41, 60, 78, 0.08);
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-bottom: 1.45rem;
}

.preview-nav b {
  width: 2.35rem;
  height: 0.52rem;
  margin-right: auto;
  border-radius: 2px;
  background: var(--theme);
}

.preview-nav span {
  width: 1.6rem;
  height: 3px;
  border-radius: 2px;
  background: #d7dee5;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1rem;
}

.preview-text > * {
  display: block;
}

.preview-text i {
  width: 2.6rem;
  height: 4px;
  margin-bottom: 0.55rem;
  border-radius: 2px;
  background: var(--theme);
  opacity: 0.55;
}

.preview-text strong {
  width: 100%;
  height: 9px;
  margin-bottom: 0.32rem;
  border-radius: 2px;
  background: #273b50;
}

.preview-text strong:nth-of-type(2) {
  width: 74%;
  margin-bottom: 0.65rem;
}

.preview-text span {
  width: 92%;
  height: 3px;
  margin-bottom: 0.27rem;
  border-radius: 2px;
  background: #c9d1da;
}

.preview-text span:nth-of-type(2) { width: 67%; }

.preview-text em {
  width: 3.7rem;
  height: 1rem;
  display: block;
  margin-top: 0.65rem;
  border-radius: 4px;
  background: var(--theme);
}

.preview-graphic {
  position: relative;
  aspect-ratio: 1.1;
  overflow: hidden;
  border-radius: 9px;
  background: var(--theme-soft);
}

.preview-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7%;
  padding: 20%;
}

.preview-chart i {
  width: 14%;
  border-radius: 3px 3px 0 0;
  background: var(--theme);
  opacity: 0.7;
}

.preview-chart i:nth-child(1) { height: 30%; }
.preview-chart i:nth-child(2) { height: 50%; }
.preview-chart i:nth-child(3) { height: 72%; }
.preview-chart i:nth-child(4) { height: 90%; }

.preview-house::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 42%;
  left: 26%;
  bottom: 18%;
  background: var(--theme);
}

.preview-house::after {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  left: 29%;
  top: 20%;
  background: var(--theme);
  transform: rotate(45deg);
}

.preview-house i {
  position: absolute;
  z-index: 1;
  width: 12%;
  height: 25%;
  left: 44%;
  bottom: 18%;
  background: #fff;
}

.preview-paper i {
  position: absolute;
  width: 54%;
  height: 70%;
  left: 23%;
  top: 15%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(22,131,106,0.16);
}

.preview-paper i::before,
.preview-paper i::after {
  content: "";
  position: absolute;
  left: 18%;
  width: 64%;
  height: 4px;
  border-radius: 3px;
  background: var(--theme);
  opacity: 0.5;
}

.preview-paper i::before { top: 27%; }
.preview-paper i::after { top: 48%; }
.preview-paper i:nth-child(n+2) { display: none; }

.preview-flower i {
  position: absolute;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 70% 30% 70% 30%;
  background: var(--theme);
  opacity: 0.64;
}

.preview-flower i:nth-child(1) { top: 18%; left: 18%; }
.preview-flower i:nth-child(2) { top: 18%; right: 18%; transform: rotate(90deg); }
.preview-flower i:nth-child(3) { bottom: 18%; left: 18%; transform: rotate(270deg); }
.preview-flower i:nth-child(4) { right: 18%; bottom: 18%; transform: rotate(180deg); }

.preview-office {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8%;
  padding: 16%;
}

.preview-office i {
  border-radius: 4px;
  background: var(--theme);
  opacity: 0.65;
}

.preview-office i:nth-child(2),
.preview-office i:nth-child(3) { opacity: 0.35; }

.preview-rocket::before {
  content: "";
  position: absolute;
  width: 34%;
  height: 58%;
  left: 33%;
  top: 13%;
  border-radius: 60% 60% 35% 35%;
  background: var(--theme);
  transform: rotate(35deg);
}

.preview-rocket::after {
  content: "";
  position: absolute;
  width: 16%;
  height: 30%;
  left: 27%;
  bottom: 14%;
  border-radius: 50%;
  background: #e6a33d;
  transform: rotate(35deg);
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.preview-row span {
  height: 2.3rem;
  border: 1px solid #e6ebef;
  border-radius: 5px;
  background: #fbfcfd;
}

.portfolio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #718095;
  font-size: 0.72rem;
  font-weight: 650;
}

.badge {
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #e9eef4;
  color: #526274;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-pilot {
  background: #daf3e9;
  color: #107052;
}

.portfolio-content h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.portfolio-content p {
  margin-bottom: 1.2rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--color-accent-dark);
}

.service-section {
  background: #fff;
}

.service-grid {
  display: grid;
  gap: 2.5rem;
}

.service-copy > p:not(.eyebrow) {
  color: var(--color-muted);
}

.service-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.service-label > span {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-label div {
  display: grid;
}

.service-label strong {
  font-size: 0.92rem;
}

.service-label small {
  color: var(--color-muted);
}

.checklist-card {
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  min-height: 1.55rem;
  padding-left: 2rem;
  color: #33465b;
  font-size: 0.92rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  top: 0.05rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcf4ea;
  color: #087355;
  font-size: 0.72rem;
  font-weight: 900;
}

.micro-note {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.78rem;
}

.audience-section {
  background: var(--color-dark);
  color: #fff;
}

.audience-section .section-heading > p:not(.eyebrow) {
  color: #afbdcb;
}

.audience-grid {
  display: grid;
  gap: 2.5rem;
}

.audience-pills {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.audience-pills li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.055);
  color: #e5edf5;
  font-size: 0.88rem;
  font-weight: 650;
}

.audience-pills span {
  color: #75bdfd;
  font-size: 0.66rem;
  font-weight: 800;
}

.process-section {
  overflow: hidden;
  background: #fff;
}

.process-grid {
  position: relative;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #dbe5ef;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.step-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
  line-height: 1.35;
}

.process-card p {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.delivery-section {
  background: #eef4fa;
}

.delivery-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.delivery-visual {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9e5f0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 28% 20%, rgba(80, 165, 240, 0.22), transparent 35%),
    #e4eef8;
}

.delivery-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(35, 113, 181, 0.13);
  border-radius: 50%;
}

.file-stack {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 180px;
}

.file-card {
  position: absolute;
  width: 115px;
  height: 150px;
  padding: 1.1rem;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(36, 72, 108, 0.16);
}

.file-card span {
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 900;
}

.file-back {
  left: 49px;
  top: 0;
  transform: rotate(12deg);
}

.file-middle {
  left: 20px;
  top: 8px;
  transform: rotate(-9deg);
}

.file-front {
  left: 28px;
  top: 25px;
}

.file-front i {
  width: 75%;
  height: 4px;
  display: block;
  margin-top: 0.7rem;
  border-radius: 4px;
  background: #dce4ec;
}

.file-front i:nth-of-type(2) { width: 90%; }
.file-front i:nth-of-type(3) { width: 62%; }

.zip-label {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d2e0ec;
  border-radius: 9px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-sm);
  line-height: 1.35;
}

.zip-label strong { font-size: 0.75rem; }
.zip-label small { color: var(--color-muted); font-size: 0.62rem; }

.delivery-copy .checklist {
  margin-top: 1.7rem;
}

.scope-section {
  padding-top: 0;
  background: #eef4fa;
}

.scope-card {
  padding: clamp(1.5rem, 5vw, 2.7rem);
  border: 1px solid #d2e0eb;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
}

.scope-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.scope-heading h2 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.scope-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: #dceaf7;
  color: var(--color-accent);
  font-weight: 850;
}

.scope-content {
  color: #536477;
}

.scope-content p {
  margin-bottom: 0.85rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-intro .text-link {
  margin-top: 1.25rem;
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-list details {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--color-text);
  font-weight: 750;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.35rem;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transition: transform 150ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details div {
  padding: 0 2.5rem 1.3rem 0;
}

.faq-list details p {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.cta-section {
  padding-top: 1rem;
  background: #fff;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 7vw, 5rem) clamp(1.4rem, 7vw, 5.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(44, 144, 232, 0.32), transparent 30%),
    linear-gradient(135deg, #102a45 0%, #0c5da9 100%);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.cta-card h2 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 5vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.cta-card > p:not(.eyebrow) {
  max-width: 760px;
  color: #cfdeec;
  font-size: 1rem;
}

.eyebrow-light {
  color: #8cc9ff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button-light {
  border-color: #fff;
  background: #fff;
  box-shadow: none;
  color: #0d579c;
}

.button-light:hover {
  border-color: #eaf5ff;
  background: #eaf5ff;
  box-shadow: none;
  color: #0a4a88;
}

.button-ghost {
  border-color: rgba(255,255,255,0.48);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

.cta-card > small {
  display: block;
  margin-top: 1rem;
  color: #a9c7e0;
}

.cta-decoration {
  position: absolute;
  top: -20%;
  right: 2%;
  width: 220px;
  height: 220px;
  opacity: 0.2;
}

.cta-decoration i {
  position: absolute;
  inset: 0;
  border: 1px solid #fff;
  border-radius: 50%;
}

.cta-decoration i:nth-child(2) { inset: 28px; }
.cta-decoration i:nth-child(3) { inset: 56px; }

.site-footer {
  padding-top: 4rem;
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p,
.footer-note p {
  max-width: 360px;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-nav strong,
.footer-note strong {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.footer-nav a {
  width: fit-content;
  color: var(--color-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--color-border);
  color: #7b8898;
  font-size: 0.75rem;
}

@media (min-width: 620px) {
  .portfolio-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checklist.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 1fr;
  }
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    padding: 1.8rem 1.6rem;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 0;
  }

  .trust-item:first-child { padding-left: 0; }
  .trust-item:last-child { padding-right: 0; border-right: 0; }

  .service-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .audience-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .delivery-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .faq-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(3rem, 8vw, 7rem);
  }

  .scope-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-left: 3.5rem;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.35vw, 4.65rem);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 2.95rem;
    left: 7%;
    right: 7%;
    height: 1px;
    background: #d7e3ed;
  }

  .process-card {
    background: #fff;
  }
}

@media (max-width: 859px) {
  .js .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-bottom: 1rem;
  }

  .js .header-inner {
    flex-wrap: wrap;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 0.75rem 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .js .site-nav > a {
    width: 100%;
    padding: 0.65rem;
  }

  .js .site-nav .button {
    margin-top: 0.35rem;
  }
}

@media (max-width: 619px) {
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 95%;
  }

  .browser-page {
    min-height: 250px;
    padding: 1.1rem;
  }

  .floating-card-top {
    right: -0.4rem;
  }

  .portfolio-content {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Brand upgrade layer: Ja Spravím web */
body {
  background:
    radial-gradient(circle at 7% 0%, rgba(21, 94, 239, 0.07), transparent 28rem),
    radial-gradient(circle at 100% 16%, rgba(20, 184, 166, 0.08), transparent 27rem),
    var(--color-bg);
}

.site-header {
  border-bottom-color: rgba(217, 227, 241, 0.82);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  gap: 0.72rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 13px;
  background: transparent;
  box-shadow: 0 12px 24px rgba(21, 94, 239, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
}

.brand-name strong {
  color: var(--color-accent);
}

.button {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, #155eef 0%, #0b43b8 100%);
  box-shadow: 0 13px 28px rgba(21, 94, 239, 0.24);
}

.button:hover {
  background: linear-gradient(135deg, #0f4dd5 0%, #08348f 100%);
  box-shadow: 0 16px 34px rgba(21, 94, 239, 0.3);
}

.button-secondary {
  background: rgba(255,255,255,0.78);
  color: var(--color-text);
}

.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 189, 248, 0.12), transparent 22rem),
    radial-gradient(circle at 84% 22%, rgba(21, 94, 239, 0.16), transparent 32rem),
    radial-gradient(circle at 70% 100%, rgba(20, 184, 166, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.hero::before {
  opacity: 0.22;
  background-image: radial-gradient(#99b6d8 0.8px, transparent 0.8px);
}

.hero h1 {
  max-width: 800px;
}

.hero-lead {
  max-width: 720px;
}

.hero-proof {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 1.35rem 0 0;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(217, 227, 241, 0.9);
  border-radius: 15px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 12px 30px rgba(16, 24, 39, 0.06);
}

.hero-proof li::before {
  content: "";
  position: absolute;
  inset: auto 0.95rem 0.75rem 0.95rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-mint));
  opacity: 0.42;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 0.16rem;
  color: var(--color-text);
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-proof span {
  color: var(--color-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.browser {
  border-color: rgba(155, 178, 210, 0.78);
  box-shadow: 0 28px 80px rgba(16, 24, 39, 0.18);
}

.browser-address {
  color: #667085;
  letter-spacing: 0.04em;
}

.mock-nav .mock-logo {
  background: linear-gradient(90deg, #155eef, #14b8a6);
}

.mock-nav b,
.mock-button {
  background: linear-gradient(135deg, #155eef, #0b43b8);
}

.mock-kicker {
  background: var(--color-mint);
}

.mock-illustration {
  background: linear-gradient(145deg, #eef6ff, #d7e7ff 58%, #d7fff5);
}

.mock-illustration::before {
  background: linear-gradient(135deg, #155eef, #14b8a6);
}

.floating-card {
  border-color: rgba(217, 227, 241, 0.9);
}

.floating-icon {
  background: #dcfce7;
  color: #08795f;
}

.code-icon {
  background: #e8f0ff;
  color: var(--color-accent);
}

.trust-section {
  background: #0b1220;
}

.number-icon {
  color: #72d6c8;
}

.portfolio-section {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 44%, #f7faff 100%);
}

.brand-system-card {
  display: grid;
  gap: 1.5rem;
  margin: 1.35rem 0 2.2rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border: 1px solid rgba(217, 227, 241, 0.95);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 96% 10%, rgba(20, 184, 166, 0.12), transparent 13rem),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: var(--shadow-sm);
}

.brand-system-card h3 {
  max-width: 780px;
  margin-bottom: 0.55rem;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.brand-system-card p:not(.eyebrow) {
  max-width: 800px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.color-swatches {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.color-swatches li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(217, 227, 241, 0.9);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
}

.color-swatches strong,
.color-swatches small {
  display: block;
}

.color-swatches strong {
  font-size: 0.78rem;
  line-height: 1.25;
}

.color-swatches small {
  grid-column: 2;
  color: var(--color-muted);
  font-size: 0.68rem;
}

.swatch {
  grid-row: span 2;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.swatch-blue { background: #155eef; }
.swatch-navy { background: #101827; }
.swatch-mint { background: #14b8a6; }
.swatch-amber { background: #f59e0b; }

.portfolio-card,
.process-card,
.scope-card,
.faq-list,
.delivery-visual {
  border-color: rgba(217, 227, 241, 0.95);
}

.portfolio-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-card:hover {
  border-color: rgba(21, 94, 239, 0.28);
  box-shadow: 0 28px 70px rgba(16, 24, 39, 0.13);
  transform: translateY(-4px);
}

.badge {
  border: 1px solid rgba(21, 94, 239, 0.12);
  background: #e8f0ff;
  color: #0b43b8;
}

.badge-pilot {
  border-color: rgba(20, 184, 166, 0.18);
  background: #dcfbf4;
  color: #08795f;
}

.service-label,
.step-icon,
.scope-icon {
  background: #e8f0ff;
  color: var(--color-accent);
}

.delivery-section,
.scope-section {
  background: #f1f6ff;
}

.file-card span {
  color: var(--color-accent);
}

.zip-label {
  border-color: rgba(217, 227, 241, 0.96);
}

.cta-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.30), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(20, 184, 166, 0.22), transparent 24%),
    linear-gradient(135deg, #0b1220 0%, #0b43b8 100%);
}

.eyebrow-light {
  color: #9ae8dc;
}

.button-light {
  color: #0b43b8;
}

.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

@media (min-width: 760px) {
  .brand-system-card {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .hero-proof,
  .color-swatches {
    grid-template-columns: 1fr;
  }

  .brand-name {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* CTA button color fix: keep both buttons visually consistent on the dark contact card. */
.cta-card .button-light,
.cta-card .button-ghost {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, #155eef 0%, #0b43b8 100%);
  box-shadow: 0 13px 28px rgba(21, 94, 239, 0.24);
  color: #fff;
}

.cta-card .button-light:hover,
.cta-card .button-ghost:hover {
  border-color: var(--color-accent-dark);
  background: linear-gradient(135deg, #0f4dd5 0%, #08348f 100%);
  box-shadow: 0 16px 34px rgba(21, 94, 239, 0.30);
  color: #fff;
}
