@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-serif-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f4f6fa;
  --ink: #0a0f1e;
  --muted: #525c6e;
  --line: rgba(10, 15, 30, 0.09);
  --accent: #0a5fff;
  --accent-dark: #0048c4;
  --accent-soft: rgba(10, 95, 255, 0.07);
  --dark: #0a0f1e;
  --dark-2: #0e1733;
  --dark-line: rgba(255, 255, 255, 0.1);
  --dark-muted: rgba(231, 236, 248, 0.66);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --shadow: 0 2px 6px rgba(10, 15, 30, 0.04), 0 22px 60px rgba(10, 15, 30, 0.08);
  --shadow-hover: 0 4px 10px rgba(10, 15, 30, 0.05), 0 32px 80px rgba(10, 31, 77, 0.14);
  --shadow-accent: 0 14px 40px rgba(10, 95, 255, 0.3);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 450;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: rgba(10, 95, 255, 0.16); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.mega-title { font-size: clamp(2.6rem, 8.4vw, 5.4rem); letter-spacing: -0.035em; }

h1 em, h2 em, .page-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.012em;
  color: var(--accent);
}
.band-dark h2 em, .final-cta h2 em, .glass-card.dark h3 em { color: #8db3ff; }
.page-title { max-width: 14ch; font-size: clamp(2.4rem, 7vw, 4.6rem); letter-spacing: -0.033em; }
h2 { font-size: clamp(1.85rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.18rem, 2.4vw, 1.42rem); line-height: 1.2; }
p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(10, 95, 255, 0.25));
  vertical-align: middle;
}
.hero-text, .page-lead { max-width: 640px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.section-head { max-width: 760px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-head p { max-width: 640px; }

.hero-inner, .section, .page-hero, .footer-inner {
  width: min(var(--max), 100% - 32px);
  margin: 0 auto;
}
.section { padding: clamp(60px, 9vw, 110px) 0; }
.page { padding-top: 86px; }
.page-hero { padding: clamp(96px, 13vw, 140px) 0 clamp(28px, 5vw, 60px); }

.band-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60rem 32rem at 85% -10%, rgba(10, 95, 255, 0.16), transparent),
    radial-gradient(46rem 26rem at 0% 110%, rgba(10, 95, 255, 0.1), transparent),
    var(--dark);
  color: #fff;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 36px 36px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent);
}
.band-dark::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -240px;
  right: -180px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 95, 255, 0.28), transparent 62%);
  filter: blur(60px);
  animation: blobDrift 24s ease-in-out infinite alternate;
}
.band-dark > .section { position: relative; z-index: 1; }
.band-dark .eyebrow { color: #6ea0ff; }
.band-dark p { color: var(--dark-muted); }
.band-soft {
  background:
    radial-gradient(circle, rgba(10, 15, 30, 0.045) 1px, transparent 1.5px) 0 0 / 30px 30px,
    var(--bg-soft);
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-90px, 60px) scale(1.18); }
}

.site-header {
  position: fixed;
  inset: 14px 16px auto;
  z-index: 50;
  max-width: var(--max);
  height: 62px;
  margin: 0 auto;
  padding: 0 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.site-header.is-scrolled, .site-header.nav-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 14px 44px rgba(10, 15, 30, 0.1);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(140deg, #2f7bff, var(--accent) 55%, #0640b4);
  box-shadow: 0 10px 24px rgba(10, 95, 255, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
}
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.9rem;
  transition: color 160ms ease, background 160ms ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); background: var(--bg-soft); }
.site-nav a.nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--ink);
}
.site-nav a.nav-cta:hover { background: var(--accent); color: #fff; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 999px; background: var(--bg-soft); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 999px; transition: transform 200ms var(--ease); }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcff 0%, #fff 80%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.8; }
.hero-glow {
  position: absolute;
  inset: 8% -10% auto;
  height: 40rem;
  background:
    radial-gradient(circle at 72% 30%, rgba(10, 95, 255, 0.13), transparent 55%),
    radial-gradient(circle at 20% 10%, rgba(10, 95, 255, 0.07), transparent 45%);
  filter: blur(36px);
  pointer-events: none;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(64px);
}
.hero::before {
  width: 580px;
  height: 580px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(10, 95, 255, 0.12), transparent 64%);
  animation: blobDrift 22s ease-in-out infinite alternate;
}
.hero::after {
  width: 470px;
  height: 470px;
  bottom: -200px;
  left: -160px;
  background: radial-gradient(circle, rgba(77, 140, 255, 0.09), transparent 64%);
  animation: blobDrift 28s ease-in-out -9s infinite alternate-reverse;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 128px 0 56px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 7vw, 72px);
  width: min(var(--max), 100% - 32px);
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(115deg, var(--ink) 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat strong span { background: inherit; -webkit-background-clip: text; background-clip: text; }
.stat strong span { display: inline; }
.stat > span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.86rem; font-weight: 550; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms ease, border-color 200ms ease;
}
.button.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.32) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
  pointer-events: none;
}
.button.primary:hover::before { transform: translateX(130%); }
.button.primary { color: #fff; background: var(--accent); box-shadow: var(--shadow-accent); }
.button.primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 20px 52px rgba(10, 95, 255, 0.4); }
.button.secondary { color: var(--ink); background: rgba(255, 255, 255, 0.85); border-color: rgba(10, 15, 30, 0.16); }
.button.secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.button.ghost-dark { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); }
.button.ghost-dark:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
  transition: gap 180ms var(--ease);
}
.text-link::after { content: "→"; transition: transform 180ms var(--ease); }
.text-link:hover::after { transform: translateX(4px); }
.text-link.light { color: #9dbdff; }

.site-preview {
  position: relative;
  display: grid;
  gap: 14px;
}
.preview-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-hover);
  animation: previewLift 7s ease-in-out infinite;
}
.preview-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.preview-top span { width: 10px; height: 10px; border-radius: 50%; background: #d6dbe6; }
.preview-top span:nth-child(1) { background: #ff5f57; }
.preview-top span:nth-child(2) { background: #ffbd2e; }
.preview-top span:nth-child(3) { background: #28c840; }
.preview-top small { margin-left: 8px; color: var(--muted); font-weight: 650; font-size: 0.78rem; }
.preview-hero {
  min-height: 230px;
  padding: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(10, 95, 255, 0.35), transparent 16rem),
    linear-gradient(135deg, var(--dark) 0%, #122254 100%);
  color: #fff;
}
.preview-hero p { margin: 0 0 12px; color: rgba(255, 255, 255, 0.65); font-weight: 650; font-size: 0.86rem; }
.preview-hero strong {
  display: block;
  max-width: 380px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 770;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.preview-actions { display: flex; gap: 10px; margin-top: 24px; }
.preview-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.7rem;
  font-weight: 750;
  color: #fff;
}
.preview-actions span + span { background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.9); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; }
.preview-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.preview-grid span { display: block; color: var(--accent); font-weight: 750; font-size: 0.74rem; margin-bottom: 14px; }
.preview-grid strong { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: -0.01em; }
.preview-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.preview-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: previewFloat 6s ease-in-out infinite;
}
.preview-card span { color: var(--accent); font-weight: 750; font-size: 0.78rem; }
.preview-card strong { display: block; margin: 12px 0 6px; font-size: 1.06rem; font-weight: 750; letter-spacing: -0.02em; }
.preview-card p { margin: 0; font-size: 0.85rem; line-height: 1.5; }
.preview-card-b { animation-delay: -2.2s; }
@keyframes previewLift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes previewFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.glass-card, .price-card, .scope-card, .founder-card, .contact-form, .faq-panel, .meta-panel, .final-cta, .service-card, .problem-card, .why-item, .testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.glass-card:hover, .price-card:hover, .scope-card:hover, .founder-card:hover, .service-card:hover, .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 95, 255, 0.28);
  box-shadow: var(--shadow-hover);
}
.glass-card { padding: clamp(24px, 4vw, 34px); }
.glass-card.dark, .meta-panel {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(30rem 18rem at 100% 0%, rgba(10, 95, 255, 0.35), transparent),
    var(--dark);
}
.glass-card.dark p, .meta-panel p { color: var(--dark-muted); }
.card-kicker { display: inline-block; margin-bottom: 48px; color: var(--accent); font-weight: 750; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.glass-card.dark .card-kicker { color: #6ea0ff; }

.intro-grid { display: grid; gap: 16px; }

.problem-grid { display: grid; gap: 14px; }
.problem-card {
  padding: clamp(22px, 3.4vw, 30px);
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
.problem-card strong { display: block; font-size: 1.1rem; font-weight: 750; letter-spacing: -0.015em; }
.problem-card em { display: block; margin-bottom: 14px; font-style: normal; font-size: 1.5rem; }
.problem-card .emoji { display: block; width: 36px; height: 36px; margin-bottom: 14px; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)); }
.problem-card p { margin-top: 10px; font-size: 0.94rem; }

.services-grid { display: grid; gap: 14px; }
.service-card { position: relative; display: flex; flex-direction: column; padding: clamp(22px, 3.4vw, 30px); }
.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  transition: transform 300ms var(--ease), background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10, 95, 255, 0.35);
}
.service-card p { font-size: 0.94rem; }
.service-card ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--muted); font-size: 0.9rem; }
.service-card li { display: flex; gap: 9px; align-items: baseline; }
.service-card li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transform: translateY(-2px); }
.service-card .text-link { margin-top: auto; padding-top: 20px; }

.why-grid { display: grid; gap: 14px; }
.why-item { padding: 24px; box-shadow: none; }
.why-item:hover { transform: none; box-shadow: var(--shadow); }
.why-item span { display: block; color: var(--accent); font-weight: 780; font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.why-item strong { display: block; margin-top: 14px; font-size: 1.04rem; font-weight: 750; letter-spacing: -0.015em; }
.why-item p { margin-top: 8px; font-size: 0.9rem; }

.timeline { display: grid; }
.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.timeline-item span { color: var(--accent); font-weight: 780; font-variant-numeric: tabular-nums; }
.timeline-item p { grid-column: 2; margin-top: 2px; font-size: 0.95rem; }

.pricing-grid { display: grid; gap: 16px; align-items: stretch; }
.price-card { position: relative; padding: clamp(24px, 3.6vw, 32px); display: flex; flex-direction: column; }
.price-card > span { color: var(--accent); font-weight: 750; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card strong.price { display: block; margin: 18px 0 4px; font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 780; letter-spacing: -0.025em; }
.price-card strong { display: block; margin: 18px 0 4px; font-size: 1.5rem; font-weight: 780; letter-spacing: -0.025em; }
.price-card .price-unit { color: var(--muted); font-size: 0.86rem; font-weight: 550; }
.price-card h3 { margin-top: 14px; }
.price-card ul { margin: 20px 0 26px; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); font-size: 0.92rem; }
.price-card li { display: flex; gap: 10px; align-items: baseline; }
.price-card li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transform: translateY(-2px); }
.price-card .button { margin-top: auto; align-self: stretch; }
.price-card.highlighted {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(160deg, rgba(10, 95, 255, 0.75), rgba(10, 95, 255, 0.1) 55%, rgba(10, 95, 255, 0.4)) border-box;
  box-shadow: 0 4px 10px rgba(10, 95, 255, 0.06), 0 32px 80px rgba(10, 47, 130, 0.16);
}
.price-card > .pkg-badge, .pkg-badge {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f7bff, var(--accent));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(10, 95, 255, 0.4);
}
.pkg-stats { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.pkg-stats span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-note { max-width: 720px; margin: 22px auto 0; text-align: center; font-size: 0.88rem; }
.section-more { display: flex; justify-content: center; margin-top: 34px; }
.section-more .button { width: auto; }
.price-note strong { color: var(--ink); font-weight: 700; }

.price-rows { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--line); }
.band-dark .price-rows { border-color: var(--dark-line); }
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.band-dark .price-row { border-color: var(--dark-line); }
.price-row strong { font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }
.price-row em { font-style: normal; font-weight: 780; font-size: 1.02rem; color: var(--accent); white-space: nowrap; }
.band-dark .price-row em { color: #7fabff; }

.split { display: grid; gap: 28px; align-items: start; }
.split .glass-card { height: 100%; }
.checklist { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; color: var(--muted); font-size: 0.94rem; }
.band-dark .checklist { color: var(--dark-muted); }
.checklist li { display: flex; gap: 11px; align-items: baseline; }
.checklist li::before {
  content: "✓";
  flex: none;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  transform: translateY(2px);
}
.band-dark .checklist li::before { background: rgba(10, 95, 255, 0.28); color: #8db3ff; }
.care-quote {
  margin: 26px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.55;
}
.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(40, 200, 64, 0.12);
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 750;
}

.scope-grid { display: grid; gap: 14px; }
.scope-card { padding: clamp(22px, 3.4vw, 28px); box-shadow: none; }
.scope-card p { font-size: 0.93rem; }
.feature-strip { display: grid; gap: 12px; }
.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.feature span { display: block; font-size: 1.7rem; font-weight: 780; color: var(--accent); font-variant-numeric: tabular-nums; }
.feature p { font-size: 0.92rem; }

.realizacje-grid { display: grid; gap: 16px; }
.realizacje-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.realizacje-tile:hover { transform: translateY(-4px); border-color: rgba(10, 95, 255, 0.25); box-shadow: var(--shadow-hover); }
.case-browser { display: flex; flex-direction: column; overflow: hidden; border-bottom: 1px solid var(--line); background: #fff; }
.case-browser picture { display: flex; flex: 1; min-height: 0; }
.case-browser img {
  display: block;
  width: 100%;
  min-height: 150px;
  max-height: 190px;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms var(--ease);
}
.realizacje-tile:hover .case-browser img { transform: scale(1.025); }
.realizacje-tile-copy { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.realizacje-tile-copy .eyebrow { margin-bottom: 6px; font-size: 0.68rem; }
.realizacje-tile-copy h3 { font-size: 1.12rem; }
.realizacje-tile-copy > p { margin-top: 8px; font-size: 0.89rem; line-height: 1.55; }
.case-result { margin-top: 10px; font-size: 0.85rem; color: var(--ink); font-weight: 650; }
.case-result::before { content: "↳ "; color: var(--accent); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}
.case-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: auto; padding-top: 16px; }
.case-actions .button { min-height: 42px; padding: 0 18px; font-size: 0.85rem; }
.case-actions .text-link { margin-top: 0; }

.testimonials-grid { display: grid; gap: 16px; }
.testimonial-card { padding: clamp(22px, 3.4vw, 30px); display: flex; flex-direction: column; }
.testimonial-card blockquote { margin: 0; flex: 1; }
.testimonial-card blockquote p { margin: 0; font-size: 0.94rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial-author strong { font-size: 0.98rem; font-weight: 750; }
.testimonial-author span { color: var(--accent); font-size: 0.82rem; font-weight: 700; }

.google-reviews-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.google-reviews-banner:hover { transform: translateY(-3px); border-color: rgba(66, 133, 244, 0.4); box-shadow: var(--shadow-hover); }
.google-reviews-left { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.google-reviews-info { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.google-reviews-info strong { font-size: 1.06rem; font-weight: 750; }
.google-reviews-stars { display: flex; align-items: center; gap: 6px; justify-content: center; }
.google-stars { color: #fbbc05; font-size: 1.05rem; letter-spacing: 1px; }
.google-rating { font-weight: 780; font-size: 0.94rem; }
.google-reviews-count { color: var(--muted); font-size: 0.8rem; }
.google-reviews-cta { color: #1a73e8; font-weight: 750; font-size: 0.9rem; white-space: nowrap; }

.faq-list { max-width: 820px; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 1px 3px rgba(10, 15, 30, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] { border-color: rgba(10, 95, 255, 0.3); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 240ms var(--ease), background 240ms ease, color 240ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item p { margin: 0; padding: 0 20px 20px; font-size: 0.93rem; }

.contact-layout { display: grid; gap: 24px; align-items: start; }
.contact-hero { display: grid; gap: 30px; align-items: end; }
.contact-box {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    radial-gradient(24rem 14rem at 100% 0%, rgba(10, 95, 255, 0.35), transparent),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow-hover);
}
.contact-box a, .contact-box span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 180ms ease, border-color 180ms ease;
}
.contact-box a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); }
.contact-form { display: grid; gap: 16px; padding: clamp(22px, 3.6vw, 32px); }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 650; font-size: 0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 95, 255, 0.13);
}
.faq-panel { padding: clamp(22px, 3.6vw, 32px); }
.faq-panel ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: var(--muted); font-size: 0.93rem; }
.faq-panel li { display: flex; gap: 10px; align-items: baseline; }
.faq-panel li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transform: translateY(-2px); }
.form-error { display: none; color: #e53e3e; font-size: 0.8rem; font-weight: 600; }
.form-error.is-visible { display: block; }
.contact-form input.has-error, .contact-form textarea.has-error {
  border-color: #e53e3e;
  background: rgba(229, 62, 62, 0.04);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.contact-form input.is-valid, .contact-form textarea.is-valid {
  border-color: #28c840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.1);
}

.final-cta {
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  border: 0;
  color: #fff;
  background:
    radial-gradient(40rem 22rem at 80% -20%, rgba(10, 95, 255, 0.5), transparent),
    radial-gradient(30rem 18rem at 0% 120%, rgba(10, 95, 255, 0.3), transparent),
    var(--dark);
}
.final-cta h2 { max-width: 860px; margin: 0 auto; }
.final-cta p { color: var(--dark-muted); max-width: 620px; margin: 16px auto 0; }
.final-cta .eyebrow { color: #6ea0ff; }
.final-cta .button { margin-top: 30px; }

.founders { display: grid; gap: 16px; }
.founder-card { padding: clamp(24px, 3.6vw, 32px); }
.founder-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 780;
}
.founder-card h2 { font-size: 1.5rem; }
.meta-panel { display: grid; gap: 24px; padding: clamp(26px, 4.4vw, 44px); }
.trust-band {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 3.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.trust-band p { margin: 0; color: var(--ink); font-size: 1.14rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; }
.trust-band div { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-band span { padding: 8px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--muted); font-size: 0.82rem; font-weight: 700; }

.legal { max-width: 860px; }
.legal article { display: grid; gap: 16px; }
.legal h2 { margin-top: 30px; font-size: 1.7rem; }
.legal ul { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.7; }

.footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-inner {
  display: grid;
  gap: 28px;
  padding: clamp(36px, 6vw, 56px) 0 28px;
}
.footer-brand p { margin-top: 10px; max-width: 320px; font-size: 0.92rem; }
.footer nav { display: grid; gap: 10px; align-content: start; }
.footer nav strong { font-size: 0.8rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.footer nav a { color: var(--muted); font-weight: 600; font-size: 0.92rem; transition: color 160ms ease; }
.footer nav a:hover { color: var(--accent); }
.footer-social { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  padding: 18px 0 30px;
  border-top: 1px solid var(--line);
  width: min(var(--max), 100% - 32px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-bottom a { font-weight: 650; }
.footer-bottom a:hover { color: var(--accent); }

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(20px);
  animation: cookieIn 320ms var(--ease) both;
}
.cookie-banner.is-hidden { opacity: 0; transform: translateY(14px); transition: opacity 240ms ease, transform 240ms ease; }
.cookie-banner strong { display: block; margin-bottom: 4px; font-weight: 750; }
.cookie-banner p { margin: 0; font-size: 0.88rem; }
.cookie-banner a { color: var(--accent); font-weight: 700; }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; }
.cookie-actions .button { min-height: 46px; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.6vw, 24px) 0;
  border-block: 1px solid var(--line);
  background: #fff;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  padding-right: clamp(22px, 4vw, 44px);
  white-space: nowrap;
}
.marquee-group span {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 790;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.marquee-group span.outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(10, 15, 30, 0.34);
}
.marquee-group i {
  font-style: normal;
  color: var(--accent);
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

.page-hero.with-art { display: grid; gap: 40px; align-items: center; }
.hero-art { position: relative; }

.orbit-art {
  position: relative;
  width: clamp(250px, 72vw, 340px);
  aspect-ratio: 1;
  margin: 14px auto;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(10, 95, 255, 0.28);
  border-radius: 50%;
}
.orbit-ring.inner { inset: 19%; border-color: rgba(10, 15, 30, 0.13); }
.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(140deg, #2f7bff, var(--accent) 55%, #0640b4);
  box-shadow: 0 18px 44px rgba(10, 95, 255, 0.42);
}
.orbit-core::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1.5px solid rgba(10, 95, 255, 0.4);
  border-radius: 30px;
  animation: corePulse 2.6s ease-out infinite;
}
@keyframes corePulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.45); }
}
.orbit-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  animation: orbitSpin var(--t, 26s) linear infinite;
}
.orbit-chip.alt {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
  animation-direction: reverse;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(var(--a, 0deg)) translateX(var(--r, 150px)) rotate(calc(var(--a, 0deg) * -1)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--a, 0deg) + 360deg)) translateX(var(--r, 150px)) rotate(calc((var(--a, 0deg) + 360deg) * -1)); }
}

.casefilm {
  width: min(440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-hover);
}
.casefilm-viewport { position: relative; height: clamp(250px, 52vw, 330px); overflow: hidden; }
.casefilm-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.9));
}
.casefilm-track { animation: filmScroll 30s linear infinite; }
.casefilm:hover .casefilm-track { animation-play-state: paused; }
.casefilm-set { display: grid; gap: 10px; padding: 10px 10px 0; }
.casefilm-set img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}
@keyframes filmScroll { to { transform: translateY(-50%); } }

.chat-art { width: min(400px, 100%); margin: 0 auto; display: grid; gap: 12px; }
.chat-bubble, .chat-typing {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: chatIn 15s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}
.chat-bubble.from-client {
  justify-self: start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  background: #fff;
  color: var(--ink);
}
.chat-bubble.from-team {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 36px rgba(10, 95, 255, 0.3);
}
.chat-name {
  display: block;
  margin-bottom: 4px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.62;
}
.chat-typing {
  justify-self: end;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  border-bottom-right-radius: 5px;
  background: var(--accent);
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: typingDot 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 160ms);
}
@keyframes chatIn {
  0% { opacity: 0; transform: translateY(10px) scale(0.97); }
  3.5% { opacity: 1; transform: none; }
  88% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: none; }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-links a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}
.city-links a:hover {
  color: var(--accent);
  border-color: rgba(10, 95, 255, 0.4);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #4d8cff);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .problem-grid, .why-grid, .scope-grid, .testimonials-grid, .founders { grid-template-columns: repeat(2, 1fr); }
  .realizacje-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { gap: 12px; }
  .cookie-actions { flex-direction: row; justify-content: flex-end; }
  .cookie-banner { grid-template-columns: 1fr auto; align-items: center; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .google-reviews-banner { flex-direction: row; justify-content: space-between; text-align: left; padding: 24px 30px; }
  .google-reviews-left { flex-direction: row; }
  .google-reviews-info { align-items: flex-start; }
  .timeline-item { grid-template-columns: 70px 220px 1fr; }
  .timeline-item p { grid-column: 3; margin-top: 0; }
}

@media (min-width: 1020px) {
  .hero-inner { grid-template-columns: 1.04fr 0.96fr; gap: 56px; padding: 150px 0 64px; }
  .page-hero.with-art { grid-template-columns: 1.12fr 0.88fr; gap: 56px; }
  .intro-grid, .split, .contact-layout { grid-template-columns: repeat(2, 1fr); }
  .contact-hero { grid-template-columns: 1fr 0.55fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-grid, .scope-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .realizacje-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-strip { grid-template-columns: repeat(4, 1fr); }
  .split-wide { grid-template-columns: 0.9fr 1.1fr; }
  .meta-panel { grid-template-columns: 0.9fr 1.1fr; }
  .trust-band { grid-template-columns: 1.1fr auto; }
  .trust-band div { justify-content: flex-end; }
}

@media (max-width: 1019px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 15px 16px; font-size: 1rem; }
  .site-nav a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
}

@media (max-width: 639px) {
  .button { width: 100%; }
  .site-header .button, .cookie-actions .button, .case-actions .button { width: auto; }
  .case-actions .button { flex: 1; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-grid span { margin-bottom: 8px; }
  .hero::before { opacity: 0.55; }
  .hero::after { display: none; }
  .orbit-art { transform: scale(0.78); margin: -16px auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .chat-bubble, .chat-typing { opacity: 1; animation: none; }
  .orbit-chip {
    animation: none;
    transform: translate(-50%, -50%) rotate(var(--a, 0deg)) translateX(var(--r, 150px)) rotate(calc(var(--a, 0deg) * -1));
  }
  .casefilm-track { animation: none; }
  .orbit-core::after { animation: none; opacity: 0; }
}
