/* ===================================================
   NOVIS MARKETING — minimalist
   Black + White + #027BFF accent
   =================================================== */

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

:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1a1a1a;

  --text: #ffffff;
  --text-soft: #a8a8a8;
  --text-mute: #6e6e6e;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);

  --accent: #027BFF;
  --accent-hover: #1a8bff;
  --accent-soft: rgba(2, 123, 255, 0.12);

  --radius: 999px;
  --radius-card: 20px;

  --container: 1320px;

  /* Smooth theme transitions */
  --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ================= LIGHT MODE THEME ================= */
[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-elev: #f2f3f5;
  --bg-card: #ebecef;

  --text: #0a0a0a;
  --text-soft: #525866;
  --text-mute: #8a8f99;

  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);

  --accent: #027BFF;
  --accent-hover: #0066d6;
  --accent-soft: rgba(2, 123, 255, 0.08);
}

/* Płynne przejścia między motywami - applied to all themed elements */
body,
.site-header,
.bento-card,
.case-card,
.competency-card,
.testimonial-card,
.faq-item,
.faq-icon,
.contact-portrait,
.site-footer,
.btn,
.float-btn,
.testimonials-arrow,
.bento-toggle {
  transition: var(--theme-transition);
}

/* Cursor in light mode - bez mix-blend-mode (bo nie zadziała na białym tle) */
[data-theme="light"] .cursor-dot {
  mix-blend-mode: normal;
  background: var(--accent);
}

/* Hero bg w light mode - desaturujemy i przyciemniamy efekt */
[data-theme="light"] .hero-bg {
  filter: invert(1) brightness(0.95) hue-rotate(180deg);
  opacity: 0.15;
}
[data-theme="light"] .hero-bg::after {
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(2, 123, 255, 0.08), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
}

/* Featured "Nowość" badge w light mode */
[data-theme="light"] .bento-badge-new {
  background: var(--accent);
  color: #ffffff;
}

/* Statystyki nawigacyjne w light mode */
[data-theme="light"] .stat-value {
  color: var(--accent);
}

/* Trust marquee - lekka korekta dla light mode */
[data-theme="light"] .trust-item {
  color: var(--text-soft);
}
[data-theme="light"] .trust-item:hover {
  color: var(--accent);
}

/* Bento accent card - w light mode niebieskie tło zostaje, biały tekst */
[data-theme="light"] .bento-card-accent {
  background: var(--accent);
}
[data-theme="light"] .bento-card-accent h3,
[data-theme="light"] .bento-card-accent .bento-desc {
  color: #ffffff;
}

/* Bento hidden cards toggle - light mode */
[data-theme="light"] .bento-toggle {
  border-color: var(--line-strong);
  color: var(--text);
}
[data-theme="light"] .bento-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* CTA "Skontaktuj się" block in light mode */
[data-theme="light"] .services-cta {
  background: var(--accent);
}

/* Floating contact buttons - w light mode mocniejszy cień */
[data-theme="light"] .float-btn {
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.18);
}

/* Header w light mode - delikatny shadow zamiast borderu */
[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.1);
}

/* Selection color */
::selection {
  background: var(--accent);
  color: #ffffff;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ================= CUSTOM CURSOR ================= */
/* Ukrywamy domyślny kursor na desktop (pointer fine) */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, label, summary,
  [role="button"], [tabindex]:not([tabindex="-1"]) { cursor: none; }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
  mix-blend-mode: difference;
}

.cursor-dot.is-visible {
  opacity: 1;
}

/* Stan: hover nad linkiem/przyciskiem — kropka się powiększa */
.cursor-dot.is-hover {
  width: 28px;
  height: 28px;
  background: var(--accent);
}

/* Stan: kliknięcie */
.cursor-dot.is-click {
  width: 6px;
  height: 6px;
}

/* Ukryj na mobile / dotyk */
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
}



body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  flex-shrink: 0;
}

/* Logo PNG - tylko jedna wersja widoczna jednocześnie */
.logo-img {
  height: 38px;
  width: auto;
  display: none;
}
/* Default state (no theme attribute OR dark theme) - pokazuje białe logo */
html:not([data-theme="light"]) .logo-img-dark {
  display: block;
}
/* Light mode - pokazuje czarne logo */
html[data-theme="light"] .logo-img-light {
  display: block;
}

/* Footer logo - trochę większe */
.footer-logo .logo-img {
  height: 44px;
}

/* Legacy text styles (nieużywane już) */
.logo-main, .logo-sub { display: none; }

/* Nav rozpycha się - Sprawdź wizytówkę z równym odstępem po obu stronach */
.primary-nav { flex: 1; margin-left: 24px; }
.primary-nav > ul {
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  align-items: center;
}
.primary-nav li { position: relative; }
/* Ostatni element (Sprawdź wizytówkę) - duży odstęp przed (auto), wypchnięty w prawo */
.primary-nav > ul > li:last-child {
  margin-left: auto;
}

.primary-nav a,
.primary-nav .nav-trigger {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  cursor: pointer;
}
.primary-nav a:hover,
.primary-nav .nav-trigger:hover {
  color: var(--accent);
}

.nav-trigger svg { transition: transform 0.25s; }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-trigger[aria-expanded="true"] { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1.5px solid transparent;
  font-family: inherit;
  cursor: pointer;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 32px -8px rgba(2, 123, 255, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-elev);
  border-color: var(--text);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.25s;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* ================= MEGA MENU ================= */
.has-mega { position: static; }

.mega {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100vw - 64px));
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.25s;
  z-index: 200;
}
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.mega-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 30px;
  bottom: 10px;
  width: 1px;
  background: var(--line);
}

.mega-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  margin: 0 -12px;
  border-radius: 12px;
  transition: background 0.15s;
}
.mega-item:hover { background: var(--bg-card); }

.mega-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-item span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.mega-item .seo-tags {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.mini-tag {
  font-size: 9px;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image: url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(2, 123, 255, 0.18), transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(0, 0, 0, 0.7), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(2, 123, 255, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(2, 123, 255, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(2, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 123, 255, 0); }
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 1000px;
}

.hero-title-row1 { display: block; }
.hero-title-row2 {
  display: block;
  height: 1.1em;
  position: relative;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.typewriter-line {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: baseline;
  color: var(--accent);
  white-space: nowrap;
  line-height: 1.1;
}

.typewriter {
  display: inline;
  color: var(--accent);
}

.cursor {
  display: inline-block;
  width: 4px;
  background: var(--accent);
  margin-left: 8px;
  height: 0.85em;
  align-self: center;
  vertical-align: middle;
  animation: blink 1s steps(2, start) infinite;
  border-radius: 1px;
}
@keyframes blink { to { opacity: 0; } }

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= STATS BAR ================= */
.stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.stat {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--line);
}
.stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.3;
}

/* ================= TRUST MARQUEE ================= */
.trust {
  position: relative;
  z-index: 2;
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  /* fade na bokach */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trust-track {
  display: flex;
  gap: 80px;
  align-items: center;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-mute);
  white-space: nowrap;
  padding: 8px 4px;
  transition: color 0.2s ease;
  cursor: pointer;
}
.trust-item:hover {
  color: var(--accent);
}

/* ================= FLOATING BUTTONS ================= */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}
.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(2, 123, 255, 0.5);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.08);
  background: var(--accent-hover);
}
.float-btn svg {
  width: 24px;
  height: 24px;
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ripple 2s infinite;
  pointer-events: none;
}
.float-btn-chat::before { animation-delay: 1s; }
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ================= SERVICES SECTION ================= */
.services {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.services-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  align-items: start;
}

.services-head {
  position: sticky;
  top: 120px;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.services-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.services-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}

.services-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}

.services-meta {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.services-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.services-meta-value {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.services-meta-sub {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 6px;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s,
              background 0.3s;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--bg-card);
}
.bento-card:hover .bento-arrow {
  transform: translate(4px, -4px);
  color: var(--accent);
}

/* Card sizes */
.bento-card-lg {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 380px;
}
.bento-card-md {
  grid-column: span 2;
  grid-row: span 1;
}
.bento-card-sm {
  grid-column: span 2;
  grid-row: span 1;
}
.bento-card-wide {
  grid-column: span 3;
}

/* Featured (accent) card */
.bento-card-accent {
  background: var(--accent);
  border-color: var(--accent);
}
.bento-card-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-4px);
}
.bento-card-accent .bento-num,
.bento-card-accent .bento-cat {
  color: rgba(255, 255, 255, 0.7);
}
.bento-card-accent h3,
.bento-card-accent .bento-desc,
.bento-card-accent .bento-arrow {
  color: #fff;
}
.bento-card-accent .bento-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.bento-card-accent .bento-price {
  color: rgba(255, 255, 255, 0.9);
}
.bento-card-accent .bento-price strong {
  color: #fff;
}
.bento-card-accent .bento-footer {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.bento-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bento-num-cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bento-num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}
.bento-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}

.bento-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  transition: transform 0.25s ease, color 0.25s, background 0.25s;
  flex-shrink: 0;
}
.bento-arrow svg { width: 16px; height: 16px; }

.bento-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}
.bento-card-lg h3 {
  font-size: 36px;
  line-height: 1.05;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}
.bento-card-lg .bento-desc {
  font-size: 16px;
  max-width: 480px;
}

/* Lista cech wewnątrz dużego kafelka Google Ads */
.bento-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
}
.bento-feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bento-feature-icon svg {
  width: 12px;
  height: 12px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.bento-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.bento-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  gap: 8px;
}
.bento-price {
  color: var(--text-soft);
  font-size: 13px;
}
.bento-price strong {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.bento-price-from {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 2px;
}

.bento-badge-new {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

/* CTA Block na końcu sekcji - jak twoja obecna niebieska sekcja */
.services-cta {
  margin-top: 24px;
  grid-column: 1 / -1;
  background: var(--accent);
  border-radius: var(--radius-card);
  padding: 56px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.services-cta-text {
  flex: 1;
  min-width: 280px;
}
.services-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.services-cta h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.services-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover {
  background: #f5f5f5;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}


/* ================= BENTO HIDDEN CARDS + TOGGLE ================= */
.bento-hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.bento.is-expanded .bento-hidden {
  display: flex;
  animation: bento-card-in 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

/* Stagger - kafelki pojawiają się jeden po drugim */
.bento.is-expanded .bento-hidden:nth-of-type(1) { animation-delay: 0s; }
.bento.is-expanded .bento-hidden:nth-of-type(2) { animation-delay: 0.08s; }
.bento.is-expanded .bento-hidden:nth-of-type(3) { animation-delay: 0.16s; }
.bento.is-expanded .bento-hidden:nth-of-type(4) { animation-delay: 0.24s; }
.bento.is-expanded .bento-hidden:nth-of-type(5) { animation-delay: 0.32s; }

@keyframes bento-card-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bento-toggle-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.bento-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-toggle:hover {
  border-color: var(--accent);
  border-style: solid;
  color: var(--accent);
  transform: translateY(-1px);
}
.bento-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Manrope', monospace;
  letter-spacing: -0.02em;
  transition: transform 0.3s;
}
.bento.is-expanded .bento-toggle .bento-toggle-icon {
  transform: rotate(45deg);
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
}

.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 32px;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.testimonials-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.testimonials-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
a.testimonials-rating:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--accent-soft);
}
a.testimonials-rating:hover .stars {
  filter: drop-shadow(0 0 8px rgba(2, 123, 255, 0.4));
}
.testimonials-rating .stars {
  color: var(--accent);
  letter-spacing: 2px;
  transition: filter 0.25s;
}

.testimonials-stage {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  overflow: hidden;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px 56px 40px;
  text-align: center;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 32px;
}

.testimonial-quote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.testimonial-quote::before {
  content: '"';
}
.testimonial-quote::after {
  content: '"';
}

.testimonial-author {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.testimonial-meta {
  font-size: 14px;
  color: var(--text-mute);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.testimonials-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(2, 123, 255, 0.05);
}
.testimonials-arrow svg { width: 16px; height: 16px; }

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.testimonials-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
}

/* ================= JAK DZIALAMY — Journey ================= */
.journey {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
}

.journey-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%, transparent);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

.journey-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 80px;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.journey-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.journey-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.journey-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 20px;
}

.journey-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
}

.journey-track {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Vertical line — wyśrodkowana na kołach (padding 32 + połowa koła 40 = 72, minus połowa szerokości linii 2 = 70) */
.journey-line {
  position: absolute;
  left: 70px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: var(--line-strong);
  border-radius: 4px;
  overflow: visible;
}
/* Wypełniona część (niebieska) - kontroluje JS przez --fill */
.journey-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--fill, 0%);
  background: linear-gradient(180deg,
    var(--accent) 0%,
    var(--accent-hover) 50%,
    var(--accent) 100%);
  background-size: 100% 200%;
  border-radius: 4px;
  transition: height 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 16px rgba(2, 123, 255, 0.6),
    0 0 32px rgba(2, 123, 255, 0.3);
  animation: journey-shine 3s ease-in-out infinite;
}

/* Świetlna kropka która "leci" po krawędzi wypełnienia */
.journey-line::before {
  content: '';
  position: absolute;
  top: calc(var(--fill, 0%) - 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, var(--accent) 40%, transparent 70%);
  opacity: var(--fill-active, 0);
  transition: top 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  z-index: 2;
  pointer-events: none;
  filter: blur(0.5px);
  animation: journey-pulse 2s ease-in-out infinite;
}

@keyframes journey-shine {
  0%, 100% { background-position: 0 0%; }
  50% { background-position: 0 100%; }
}

@keyframes journey-pulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(2, 123, 255, 0.8), 0 0 32px rgba(2, 123, 255, 0.4);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(2, 123, 255, 1), 0 0 48px rgba(2, 123, 255, 0.6);
    transform: translateX(-50%) scale(1.15);
  }
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  padding: 32px 0;
  z-index: 2;
}

.journey-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 2px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-mute);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

.journey-step.is-active .journey-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 32px rgba(2, 123, 255, 0.5);
  transform: scale(1.05);
}

.journey-content {
  padding-top: 14px;
}

.journey-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.journey-step.is-active h3 {
  color: var(--accent);
}

.journey-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.journey-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s;
}
.journey-step.is-active .journey-tag {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* ================= FAQ ================= */
.faq {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 32px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.faq-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.faq-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.3s ease;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item.is-open {
  background: rgba(2, 123, 255, 0.02);
}
.faq-item.is-open .faq-summary {
  color: var(--accent);
}
.faq-item.is-open .faq-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(135deg);
}

.faq-summary {
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.25s ease, padding 0.3s ease;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-summary:hover { color: var(--accent); }
.faq-summary:hover .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

/* Animowane rozwijanie */
.faq-body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body {
  padding: 0 0 32px;
  max-width: 720px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              opacity 0.35s ease 0.1s;
}

.faq-item.is-open .faq-body {
  transform: translateY(0);
  opacity: 1;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}
.faq-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  /* Animacja stagger - każdy item wjeżdża z lekkim opóźnieniem */
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-item.is-open .faq-body ul li {
  opacity: 1;
  transform: translateX(0);
}
.faq-item.is-open .faq-body ul li:nth-child(1) { transition-delay: 0.15s; }
.faq-item.is-open .faq-body ul li:nth-child(2) { transition-delay: 0.20s; }
.faq-item.is-open .faq-body ul li:nth-child(3) { transition-delay: 0.25s; }
.faq-item.is-open .faq-body ul li:nth-child(4) { transition-delay: 0.30s; }
.faq-item.is-open .faq-body ul li:nth-child(5) { transition-delay: 0.35s; }
.faq-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ================= CONTACT ================= */
.contact {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* ===== PODSTRONA KONTAKT ===== */
.contact-page {
  padding: 140px 0 120px;
  max-width: var(--container);
  margin: 0 auto;
}
.contact-page-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.contact-page-header h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 16px 0;
}
.contact-page-header h1 em {
  font-style: normal;
  color: var(--accent);
}
.contact-page-header p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding: 0 32px;
  align-items: start;
}

/* ===== NOWA SEKCJA KONTAKT: formularz + mapa ===== */
.contact-header {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 32px;
  text-align: center;
}
.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-header h2 em {
  font-style: normal;
  color: var(--accent);
}
.contact-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  align-items: start;
}

/* Karta z formularzem */
.contact-form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), transparent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}
.form-field label span {
  color: var(--accent);
}
.form-field label .form-optional {
  color: var(--text-mute);
  font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-mute);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236e6e6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #34c759;
  margin-top: 4px;
}
.form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Prawa kolumna - dane + mapa */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-line {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
a.contact-info-line:hover { color: var(--accent); }
a.contact-info-line:hover .contact-info-icon {
  background: var(--accent);
  color: #fff;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contact-info-divider {
  height: 1px;
  background: var(--line);
}
.contact-company-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-company-detail {
  font-size: 13px;
  color: var(--text-mute);
}

.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
  background: var(--bg-elev);
}
.contact-map iframe {
  display: block;
  filter: grayscale(0.3) invert(0.9) hue-rotate(180deg);
}
[data-theme="light"] .contact-map iframe {
  filter: none;
}



.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
}

/* Prawa karta na homepage - adres + mapa + firma */
.contact-side-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-side-card .contact-map {
  height: 220px;
  margin: 0;
}

.contact-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(2, 123, 255, 0.15), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.contact-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(0, 0, 0, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.contact-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  text-align: center;
  padding: 32px;
}
.contact-portrait img,
.contact-portrait picture {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 105%;
  width: auto;
  height: 105%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.contact-portrait picture img {
  width: auto;
  height: 100%;
}
.contact-portrait-accent {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
}
.contact-content h2 em {
  color: var(--accent);
  font-style: normal;
}

.contact-person {
  margin-bottom: 32px;
}
.contact-name {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.contact-role {
  font-size: 14px;
  color: var(--text-soft);
}

/* CTA box z mailem (jak na wzorze) */
.contact-cta-box {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 28px;
}
.contact-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-cta-sub {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.contact-cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-cta-form input {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-cta-form input::placeholder { color: var(--text-mute); }
.contact-cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-cta-form .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail:hover { color: var(--accent); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
}
.contact-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -8px rgba(2, 123, 255, 0.5);
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 64px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo .logo-main { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.footer-logo .logo-sub { font-size: 9px; font-weight: 500; letter-spacing: 0.4em; margin-top: 3px; color: var(--text-soft); }

.footer-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.footer-contact-block a { color: var(--text); }
.footer-contact-block a:hover { color: var(--accent); }
.footer-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--text-mute);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-bottom-claim {
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

/* ================= RESULTS / CASE STUDIES ================= */
.results {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.results-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.results-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.results-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.results-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 20px;
}

.results-lead {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s,
              background 0.3s;
  text-decoration: none;
  color: inherit;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--bg-card);
}
.case-card:hover .case-link {
  color: var(--accent);
}
.case-card:hover .case-link::after {
  transform: translateX(4px);
}

.case-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
  align-self: flex-start;
}

.case-metric {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.case-metric-label {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.case-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.case-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 32px;
  flex-grow: 1;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  transition: color 0.2s;
}
.case-link::after {
  content: '→';
  transition: transform 0.25s;
}

/* COMPETENCY ROW — 3 areas without case studies */
.competency-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 0 32px;
}

.competency-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: transparent;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-card);
  transition: border-color 0.3s, background 0.3s;
}
.competency-card:hover {
  border-color: var(--accent);
  border-style: solid;
  background: var(--bg-elev);
}

.competency-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.competency-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.competency-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

.competency-meta {
  font-size: 12px;
  color: var(--text-mute);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.results-cta {
  text-align: center;
  margin-top: 60px;
}

/* ================= HEADER UTILITY GROUP (Theme + Lang + CTA) ================= */
.header-utils {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 56px;
}

/* ================= LANGUAGE SWITCHER ================= */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
}

.lang-switcher button,
.lang-switcher a {
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
}

.lang-switcher button:hover,
.lang-switcher a:hover {
  color: var(--text);
}

.lang-switcher .is-active {
  background: var(--accent);
  color: #ffffff;
}
.lang-switcher .is-active:hover {
  color: #ffffff;
}

/* ================= THEME TOGGLE ================= */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.03);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  position: absolute;
}

/* Słońce widoczne w dark mode (sugeruje "włącz light") */
.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Księżyc widoczny w light mode (sugeruje "włącz dark") */
[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Subtelna pulsacja po pierwszym ładowaniu (przyciągnięcie uwagi) */
@keyframes theme-toggle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(2, 123, 255, 0); }
  50% { box-shadow: 0 0 0 8px rgba(2, 123, 255, 0.15); }
}

.theme-toggle.is-fresh {
  animation: theme-toggle-pulse 2s ease-out 1.5s 2;
}

@media (max-width: 1100px) {
  .services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-head {
    position: static;
  }
  .results-grid,
  .competency-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .primary-nav > ul { gap: 20px; }
  .primary-nav a, .primary-nav .nav-trigger { font-size: 14px; }
  /* Mniejszy gap między elementami header-utils */
  .header-utils { gap: 8px; }
  /* Ukryj tekst "Darmowy audyt", zostaw przycisk z samym CTA */
  .header-cta .btn { padding: 10px 18px; font-size: 13px; }
  .header-cta .btn-arrow { display: none; }
}
/* ================= PROMO MODAL ================= */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.promo-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  padding: 48px;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.promo-overlay.is-open .promo-modal {
  transform: scale(1) translateY(0);
}
.promo-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
}

.promo-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
[data-theme="light"] .promo-close {
  background: rgba(0, 0, 0, 0.05);
}
.promo-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}
.promo-close svg { width: 18px; height: 18px; }

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(2, 123, 255, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.promo-badge svg { width: 14px; height: 14px; }

.promo-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.promo-price {
  color: var(--accent);
}

.promo-desc {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 28px;
}

.promo-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}
.promo-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.promo-check svg { width: 13px; height: 13px; }

.promo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-cta { flex: 1; justify-content: center; min-width: 180px; }
.promo-dismiss { flex-shrink: 0; }

.promo-footer {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 540px) {
  .promo-modal { padding: 32px 24px; }
  .promo-actions { flex-direction: column; }
  .promo-cta, .promo-dismiss { width: 100%; }
}

/* ================= PODSTRONY USŁUG ================= */
.srv-hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.srv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(2, 123, 255, 0.18), transparent 65%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  z-index: 0;
}
.srv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.srv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(2,123,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.srv-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 16ch;
}
.srv-hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
}

.srv-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.srv-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.srv-section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.srv-h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}

/* Problem */
.srv-problem { padding: 80px 0; }
.srv-problem-head { text-align: center; margin-bottom: 48px; }
.srv-problem-head .srv-section-eyebrow { justify-content: center; }
.srv-problem-sub { font-size: 17px; color: var(--text-soft); }
.srv-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.srv-problem-card {
  display: flex;
  gap: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
}
.srv-problem-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.srv-problem-card p { font-size: 15px; color: var(--text-soft); line-height: 1.55; }

/* Solution */
.srv-solution { padding: 80px 0; border-top: 1px solid var(--line); }
.srv-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.srv-solution-intro { font-size: 16px; color: var(--text-soft); line-height: 1.65; }
.srv-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.srv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.srv-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.srv-check svg { width: 13px; height: 13px; }

/* Process */
.srv-process { padding: 80px 0; border-top: 1px solid var(--line); }
.srv-process-head { margin-bottom: 48px; }
.srv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.srv-step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
}
.srv-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(2,123,255,0.35);
  line-height: 1;
  margin-bottom: 16px;
}
.srv-step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.srv-step p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }

/* Results */
.srv-results { padding: 80px 0; border-top: 1px solid var(--line); }
.srv-results-head { margin-bottom: 40px; }
.srv-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-result {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
}
.srv-result-value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 4px;
}
.srv-result-label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.srv-result p { font-size: 13px; color: var(--text-mute); line-height: 1.5; }

/* SEO local coverage */
.srv-local { padding: 80px 0; border-top: 1px solid var(--line); }
.srv-local-head { margin-bottom: 40px; }
.srv-local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.srv-local-region h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.srv-local-region ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.srv-local-region li { font-size: 14px; color: var(--text-soft); }
.srv-local-region li.is-primary { color: var(--text); font-weight: 600; }
.srv-local-note { font-size: 13px; color: var(--text-mute); margin-top: 32px; text-align: center; }

@media (max-width: 980px) {
  .srv-problem-grid, .srv-solution-grid { grid-template-columns: 1fr; gap: 32px; }
  .srv-process-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-results-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .srv-local-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-hero { padding: 120px 0 60px; }
}
@media (max-width: 768px) {
  .srv-process-grid { grid-template-columns: 1fr; }
  .srv-local-grid { grid-template-columns: 1fr; }
}

/* ================= PODSTRONA O NAS ================= */
.about-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(2, 123, 255, 0.15), transparent 70%);
  z-index: 0;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-eyebrow,
.about-section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.about-hero h1 em { font-style: normal; color: var(--accent); }
.about-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Founder */
.about-founder {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 32px 100px;
}
.about-founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-founder-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: radial-gradient(ellipse 70% 50% at 50% 20%, rgba(2, 123, 255, 0.15), transparent 70%), var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-founder-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(0,0,0,0.4), transparent 70%);
  z-index: 1;
}
.about-founder-photo img {
  position: relative;
  z-index: 2;
  height: 102%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.about-founder-accent {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  z-index: 3;
}
.about-founder-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}
.about-founder-role {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.about-founder-content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-founder-content p strong { color: var(--text); font-weight: 700; }
.about-founder-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Values */
.about-values {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 100px;
}
.about-values-head {
  text-align: center;
  margin-bottom: 56px;
}
.about-values-head h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-value {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px;
  transition: border-color 0.25s, transform 0.25s;
}
.about-value:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.about-value-num {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.about-value h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.about-value p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Markets */
.about-markets {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 40px;
}
.about-markets-inner {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-markets-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.about-markets-text p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.6;
}
.about-markets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-market {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 980px) {
  .about-founder-grid { grid-template-columns: 1fr; gap: 40px; max-width: 520px; margin: 0 auto; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-markets-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .about-hero { padding: 120px 0 60px; }
}
@media (max-width: 768px) {
  .about-hero { padding: 100px 0 48px; }
}

/* ================= PODSTRONA REALIZACJE ================= */
.realizacje-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}
.realizacje-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(2, 123, 255, 0.15), transparent 70%);
  z-index: 0;
}
.realizacje-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.realizacje-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.realizacje-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.realizacje-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.realizacje-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Stats bar */
.realizacje-stats {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 32px;
}
.realizacje-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.rstat {
  padding: 40px 24px;
  text-align: center;
  position: relative;
}
.rstat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background: var(--line);
}
.rstat-value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}
.rstat-label {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Case studies grid */
.realizacje-cases {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.realizacje-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rcase {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.rcase:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.rcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}
.rcase-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.rcase-time {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 500;
}
.rcase-name {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.rcase-loc {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.rcase-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}
.rcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.rcase-metric {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
}
.rcase-metric-value {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 4px;
}
.rcase-metric-label {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.3;
}
.rcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rcase-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
}
[data-theme="light"] .rcase-tag {
  background: rgba(0, 0, 0, 0.03);
}

.realizacje-note {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
  padding: 0 32px;
}

/* Bottom CTA */
.realizacje-cta-section {
  max-width: var(--container);
  margin: 100px auto 0;
  padding: 0 32px 120px;
}
.realizacje-cta-box {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(2, 123, 255, 0.18), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  padding: 72px 32px;
  text-align: center;
}
.realizacje-cta-box h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.realizacje-cta-box p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .realizacje-cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .realizacje-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .rstat:nth-child(2)::after { display: none; }
  .rstat:nth-child(1), .rstat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .realizacje-hero { padding: 120px 0 60px; }
}
@media (max-width: 768px) {
  .realizacje-hero { padding: 100px 0 48px; }
  .realizacje-cta-box { padding: 48px 24px; }
}


/* Klasy stosowane przez JS IntersectionObserver */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Wariant: fade-in z lewej */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Wariant: fade-in z prawej */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Wariant: scale-up (delikatny zoom) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays - kafelki/case'y wjeżdżają z opóźnieniem jeden po drugim */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Wyłącz animacje gdy user wybrał "reduce motion" w systemie */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  /* Zmniejsz padding nawigacji żeby wszystko się mieściło */
  .header-inner { gap: 16px; }
  .logo-img { height: 36px; }
}
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  /* Na mobile chowamy lang switcher I theme toggle */
  .lang-switcher { display: none; }
  .theme-toggle { display: none; }
  .menu-toggle { display: flex; }
  /* Logo po lewej, hamburger po prawej */
  .header-inner { justify-content: space-between; }
  .header-utils { margin-left: auto; }
  .primary-nav.is-open {
    display: block;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .primary-nav.is-open > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 16px 0;
    grid-template-columns: 1fr;
    gap: 24px;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .mega.is-open { display: grid; transform: none; }
  .mega-col::after { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .stat { padding: 28px 16px; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1), .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .hero { padding: 60px 0 0; min-height: auto; }
  .hero-title-row2 {
    /* Stała wysokość = nic nie skacze gdy typewriter pisze */
    height: 1.15em;
    min-height: 1.15em;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
    overflow: visible;
  }
  .typewriter-line {
    position: absolute;
    top: 0;
    left: 0;
    /* nowrap + mniejszy font żeby najdłuższe "Pozycjonowanie w AI" zmieściło się w 1 linii */
    white-space: nowrap;
    font-size: 0.78em;
    line-height: 1.15;
  }
  .trust { padding: 40px 0 48px; }
  .trust-label { font-size: 11px; margin-bottom: 24px; }
  .trust-item { font-size: 18px; }
  .trust-track { gap: 40px; }
  .floating-actions {
    bottom: 20px; right: 20px;
  }
  .float-btn { width: 50px; height: 50px; }

  /* Services section mobile */
  .services { padding: 80px 0; }
  .services-inner { padding: 0 20px; gap: 32px; }
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bento-card { min-height: 220px; padding: 24px; }
  .bento-card-lg,
  .bento-card-md,
  .bento-card-sm,
  .bento-card-wide {
    grid-column: span 1;
    grid-row: auto;
    min-height: 220px;
  }
  .bento-card-lg h3 { font-size: 28px; }
  .services-cta {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Results section mobile */
  .results { padding: 80px 0; }
  .results-head { margin-bottom: 48px; padding: 0 20px; }
  .results-grid,
  .competency-row { padding: 0 20px; gap: 16px; }
  .case-card { padding: 28px; }
  .case-metric { font-size: 2.8rem; }
  .competency-row { margin-top: 32px; }

  /* Testimonials mobile */
  .testimonials { padding: 80px 0; }
  .testimonials-head { margin-bottom: 40px; }
  .testimonial-card { padding: 32px 24px; }

  /* Journey mobile */
  .journey { padding: 80px 0; }
  .journey-head { margin-bottom: 56px; padding: 0 20px; }
  .journey-track { padding: 0 20px; }
  .journey-line { left: 48px; top: 30px; bottom: 30px; }
  .journey-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .journey-num {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
  .journey-step h3 { font-size: 20px; }

  /* FAQ mobile */
  .faq { padding: 80px 0; }
  .faq-head { margin-bottom: 40px; padding: 0 20px; }
  .faq-list { padding: 0 20px; }
  .faq-summary { font-size: 16px; padding: 22px 0; gap: 16px; }
  .faq-icon { width: 30px; height: 30px; font-size: 16px; }

  /* Contact mobile */
  .contact { padding: 80px 0; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .contact-portrait { max-width: 400px; margin: 0 auto; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .contact-header { margin-bottom: 40px; padding: 0 20px; }

  /* Footer mobile */
  .site-footer { padding: 56px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 0;
    text-align: left;
  }
}

::selection { background: var(--accent); color: #fff; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor { animation: none; }
  .trust-track { animation: none; }
}