/* ============================================================
   AKRYS - style.css
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Montserrat/Montserrat-Variable-LatinExt.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: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Montserrat/Montserrat-Variable-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: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Montserrat/Montserrat-Italic-LatinExt.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: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Montserrat/Montserrat-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;
}

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --ink:    #0F0E0C;
  --paper:  #F7F3EC;
  --lime:   #C8F135;
  --orange: #FF5C2B;
  --sky:    #4AC9E3;
  --mid:    #2A2825;

  --font: 'Montserrat', sans-serif;

  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 70px;
  --section-pad: clamp(80px, 10vw, 130px);
  --container:   1140px;
  --container-pad: clamp(20px, 5vw, 48px);
}

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

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

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Typography scale ───────────────────────────────────────── */
.t-display {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.t-h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.t-h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.t-body {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
}

.t-small {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.t-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: #d8ff3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 241, 53, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(247, 243, 236, 0.3);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(247, 243, 236, 0.05);
}

/* ── Eyebrow label ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.65;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Section base ───────────────────────────────────────────── */
.section {
  padding-block: var(--section-pad);
}

.section--dark  { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--mid   { background: var(--mid); color: var(--paper); }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumb { margin: 0; padding-top: calc(var(--nav-h) + 28px); }
.breadcrumb + .subhero { padding-top: clamp(40px, 5vw, 72px); }
.breadcrumb__list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-size: 13.5px; font-weight: 500;
}
.breadcrumb__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list li::after { content: "›"; color: rgba(247, 243, 236, 0.32); }
.breadcrumb__list li:last-child::after { content: none; }
.breadcrumb a { color: rgba(247, 243, 236, 0.55); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb [aria-current="page"] { color: rgba(247, 243, 236, 0.78); }

/* ── Scroll-reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition),
              box-shadow var(--transition);
}

.nav.scrolled,
.nav--static {
  background: rgba(42, 40, 37, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(247, 243, 236, 0.06);
}

.nav .container {
  height: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 110px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 110px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.72);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover { color: var(--paper); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 15px;
  padding: 9px 20px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: rgba(247, 243, 236, 0.8);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger span:nth-child(3) { width: 70%; }

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(15, 14, 12, 0.97);
  backdrop-filter: blur(20px);
  padding: 32px var(--container-pad) 40px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(247, 243, 236, 0.07);
  z-index: 99;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-size: 22px;
  font-weight: 600;
  color: rgba(247, 243, 236, 0.72);
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.06);
  transition: color var(--transition);
}

.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--lime); }

.nav__mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Background glows - layer system */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__glow-lime {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.11) 0%, transparent 65%);
  border-radius: 50%;
}

.hero__glow-sky {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(74, 201, 227, 0.08) 0%, transparent 65%);
  border-radius: 50%;
}

.hero__glow-orange {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 43, 0.04) 0%, transparent 65%);
  border-radius: 50%;
}

/* Subtle noise grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-inline: var(--container-pad);
  padding-block: clamp(48px, 8vh, 96px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 241, 53, 0.85);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero__eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.6;
}

.hero__headline {
  font-size: clamp(46px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero__headline em {
  font-style: italic;
  color: var(--lime);
  font-weight: 900;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: rgba(247, 243, 236, 0.52);
  line-height: 1.6;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 44px;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero__cta-main {
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  letter-spacing: 0.03em;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.1s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(247, 243, 236, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.3); opacity: 0.8; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--ink);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services__eyebrow {
  font-size: 14px;
}

.services__title {
  margin-top: 18px;
  color: var(--paper);
  max-width: 720px;
  margin-inline: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--mid);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(247, 243, 236, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: opacity var(--transition);
  opacity: 0;
}

.service-card--web::before   { background: radial-gradient(circle, rgba(200,241,53,0.12), transparent 70%); }
.service-card--auto::before  { background: radial-gradient(circle, rgba(74,201,227,0.12), transparent 70%); }
.service-card--agent::before { background: radial-gradient(circle, rgba(255,92,43,0.10), transparent 70%); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 243, 236, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-card--web   .service-card__icon { background: rgba(200,241,53,0.12); color: var(--lime); }
.service-card--auto  .service-card__icon { background: rgba(74,201,227,0.12); color: var(--sky); }
.service-card--agent .service-card__icon { background: rgba(255,92,43,0.12); color: var(--orange); }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--paper);
  color: var(--ink);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius-xl);
  display: block;
}

/* Placeholder when no photo */
.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(247, 243, 236, 0.3);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about__photo-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 220px;
  background: var(--lime);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__photo-accent--tl {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 220px;
  height: 220px;
  background: var(--lime);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__eyebrow { color: var(--orange); margin-bottom: 16px; }
.about__eyebrow::before { background: var(--orange); }

.about__name {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.about__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
}

.about__lead strong {
  font-weight: 700;
}

.about__bio {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  color: rgba(15, 14, 12, 0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__bio strong {
  color: var(--ink);
  font-weight: 600;
}

.about__bio--closing {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 14, 12, 0.12);
  color: rgba(15, 14, 12, 0.75);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 14, 12, 0.75);
}

.about__highlight-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(200,241,53,0.07), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
  z-index: 1;
}

.contact__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--paper);
  margin-bottom: 32px;
}

.contact__heading em {
  display: block;
  font-style: italic;
  color: var(--lime);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  background: var(--mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime);
}

.contact__info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.35);
  margin-bottom: 2px;
}

.contact__info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
}

/* Contact form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Honeypot anty-spam - niewidoczne dla użytkownika (wzorzec visually-hidden),
   bez ryzyka poziomego scrolla; boty i tak je widzą w DOM i wypełniają */
.form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.4);
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--mid);
  border: 1.5px solid rgba(247, 243, 236, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--paper);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(247, 243, 236, 0.25);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--lime);
  background: rgba(42, 40, 37, 0.9);
}

.form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form__submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  letter-spacing: 0.03em;
}

.form__note {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.3);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--mid);
  padding-block: 8px;
  border-top: 1px solid rgba(247, 243, 236, 0.06);
}

.footer__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.footer__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: auto;
}

.footer__copy {
  font-size: 12px;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.35);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  /* Mniejszy, wyśrodkowany portret na mobile - odsunięty, ~połowa
     wysokości, ten sam kadr co na desktopie */
  .about__photo-wrap {
    max-width: 200px;
    margin-inline: auto;
  }

  /* Skaluj akcenty proporcjonalnie do węższego zdjęcia, żeby zachować
     ten sam efekt narożników co na desktopie (zamiast grubej otoczki) */
  .about__photo-accent {
    width: 90px;
    height: 90px;
    bottom: -14px;
    right: -14px;
  }
  .about__photo-accent--tl {
    top: -14px;
    left: -14px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }

  .hero__scroll { display: none; }

}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero__cta-group,
  .hero__scroll { animation: none; opacity: 1; }

  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__header {
  margin-bottom: 48px;
}

.reviews__title {
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(38px, 5vw, 60px);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Karta opinii ─────────────────────────────────────────── */
.review-card {
  background: rgba(15, 14, 12, 0.5);
  border: 1px solid rgba(247, 243, 236, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--lime);
}

.review-card__quote {
  font-size: 48px;
  line-height: 1;
  color: var(--lime);
  font-weight: 900;
  opacity: 0.8;
  margin-bottom: -8px;
}

.review-card__stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.8);
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 243, 236, 0.08);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
}

.review-card__time {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.4);
}

/* Google badge */
.review-card__google {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.35);
  flex-shrink: 0;
}

.review-card__google svg {
  width: 14px;
  height: 14px;
}

/* ── Skeleton loading ─────────────────────────────────────── */
.review-skeleton {
  background: rgba(247, 243, 236, 0.04);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-lg);
  height: 240px;
  position: relative;
  overflow: hidden;
}

.review-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(247, 243, 236, 0.06) 50%,
    transparent 100%
  );
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.faq__head {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.faq__eyebrow            { color: var(--orange); }
.faq__eyebrow::before    { background: var(--orange); }

.faq__title {
  margin-top: 8px;
  color: var(--ink);
}

.faq__list {
  border-top: 1px solid rgba(15, 14, 12, 0.12);
}

.faq__item {
  border-bottom: 1px solid rgba(15, 14, 12, 0.12);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding-block: clamp(20px, 2.6vw, 26px);
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.faq__q:hover { color: var(--orange); }

.faq__q-text { flex: 1; }

/* Plus → minus icon (tints orange when active) */
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq__icon::before {           /* horizontal bar */
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {            /* vertical bar */
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__q { color: var(--orange); }

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__a-inner {
  padding-right: clamp(0px, 5vw, 56px);
  padding-bottom: clamp(20px, 2.6vw, 26px);
}

.faq__a-inner p {
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.72;
  color: rgba(15, 14, 12, 0.72);
}

@media (max-width: 768px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq__head { position: static; }
}

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(42, 40, 37, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(247, 243, 236, 0.07);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible  { transform: translateY(0); }
.cookie-banner.hidden   { transform: translateY(110%); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: rgba(247, 243, 236, 0.65);
  line-height: 1.55;
}

.cookie-banner__link {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.cookie-banner__link:hover { opacity: 1; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-size: 13px;
  padding: 10px 20px;
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ── Form checkbox (RODO) ───────────────────────────────────── */
.form__field--checkbox { margin-top: 4px; }

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form__checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(247, 243, 236, 0.22);
  border-radius: 4px;
  background: rgba(247, 243, 236, 0.04);
  margin-top: 1px;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid var(--ink);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  margin-top: -2px;
}

.form__checkbox-input:checked + .form__checkbox-custom {
  background: var(--lime);
  border-color: var(--lime);
}

.form__checkbox-input:checked + .form__checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.form__checkbox-input:focus-visible + .form__checkbox-custom {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.form__checkbox-text {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.55;
}

.form__required {
  color: var(--orange);
  font-weight: 700;
  margin-left: 1px;
}

.form__checkbox-link {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.form__checkbox-link:hover { opacity: 1; }

/* ── Privacy policy page ────────────────────────────────────── */
.policy {
  background: var(--paper);
  color: var(--ink);
  padding: var(--section-pad) 0;
  min-height: 70vh;
}

.policy__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 48px;
  transition: opacity var(--transition);
}

.policy__back:hover { opacity: 0.9; }

.policy__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--ink);
}

.policy__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.4;
  margin-bottom: 56px;
}

.policy__body { max-width: 680px; }

.policy__body h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 12px;
}

.policy__body h2:first-of-type { margin-top: 0; }

.policy__body p,
.policy__body li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(15, 14, 12, 0.72);
  margin-bottom: 8px;
}

.policy__body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 8px;
}

.policy__body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy__body strong {
  font-weight: 600;
  color: var(--ink);
}

.policy__body h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 8px;
}

.policy__lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(15, 14, 12, 0.72);
  margin-bottom: 40px;
}

.policy__table-wrap {
  overflow-x: auto;
  margin: 12px 0 8px;
}

.policy__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.policy__body th,
.policy__body td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  line-height: 1.6;
  color: rgba(15, 14, 12, 0.72);
  border-bottom: 1px solid rgba(15, 14, 12, 0.12);
}

.policy__body th {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid rgba(15, 14, 12, 0.2);
}

.policy__body td code {
  font-size: 13px;
  background: rgba(15, 14, 12, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
}

.policy__updated {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 14, 12, 0.12);
  font-size: 13px;
  opacity: 0.6;
}


/* ════════════════════════════════════════════════════════════
   CHATBOT - Recepcja AKRYS
   ════════════════════════════════════════════════════════════ */

.chat {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 1200;
  font-family: var(--font);
}

/* ── Launcher ──────────────────────────────────────────────── */
.chat__launcher {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(200, 241, 53, 0.32), 0 4px 12px rgba(15, 14, 12, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-left: auto;
}

.chat__launcher:hover { transform: translateY(-2px) scale(1.04); }
.chat__launcher:active { transform: scale(0.97); }
.chat__launcher:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }

/* Attention ring - jednorazowy puls po wczytaniu */
.chat__launcher::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--lime);
  animation: chatPulse 2.4s ease-out 3;
  pointer-events: none;
}

@keyframes chatPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.6); }
  100% { opacity: 0;   transform: scale(1.6); }
}

.chat__launcher-ic {
  position: absolute;
  transition: opacity var(--transition), transform var(--transition);
}
.chat__launcher-ic--close { opacity: 0; transform: rotate(-45deg) scale(0.6); }

.chat.is-open .chat__launcher::after { display: none; }
.chat.is-open .chat__launcher-ic--chat  { opacity: 0; transform: rotate(45deg) scale(0.6); }
.chat.is-open .chat__launcher-ic--close { opacity: 1; transform: rotate(0) scale(1); }

/* ── Zaczepka (wyskakujący dymek) ──────────────────────────── */
.chat__nudge {
  position: absolute;
  right: 4px;
  bottom: 80px;
  width: max-content;
  max-width: min(248px, calc(100vw - 48px));
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.chat__nudge[hidden] { display: none; }
.chat__nudge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: chatNudgeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes chatNudgeIn {
  0%   { transform: translateY(10px) scale(0.92); }
  60%  { transform: translateY(-2px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

.chat__nudge-bubble {
  position: relative;
  display: block;
  text-align: left;
  background: var(--mid);
  color: var(--paper);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  padding: 12px 15px;
  border: 1.5px solid var(--lime);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 5px rgba(200, 241, 53, 0.08);
  transition: filter var(--transition);
}
.chat__nudge-bubble:hover { filter: brightness(1.08); }
.chat__nudge-bubble:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* Ogon dymka - skierowany w stronę robocika (prawy dół) */
.chat__nudge-bubble::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--mid);
  border-right: 1.5px solid var(--lime);
  border-bottom: 1.5px solid var(--lime);
  transform: rotate(45deg);
}

.chat__nudge-x {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mid);
  color: rgba(247, 243, 236, 0.8);
  border: 1.5px solid rgba(247, 243, 236, 0.22);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: background var(--transition), color var(--transition);
}
.chat__nudge-x:hover { background: var(--ink); color: var(--paper); }
.chat__nudge-x:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

.chat.is-open .chat__nudge { display: none; }

/* ── Panel ─────────────────────────────────────────────────── */
.chat__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(376px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: var(--mid);
  color: var(--paper);
  border: 1px solid rgba(247, 243, 236, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.chat__panel[hidden] { display: none; }

.chat.is-open .chat__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ── Header ────────────────────────────────────────────────── */
.chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.06), rgba(200, 241, 53, 0));
  border-bottom: 1px solid rgba(247, 243, 236, 0.08);
}

.chat__avatar {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.chat__ident { flex: 1; min-width: 0; }

.chat__title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--paper);
}

.chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.6);
  margin-top: 2px;
}

.chat__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.5);
  animation: chatDot 2s ease-out infinite;
}

@keyframes chatDot {
  0%   { box-shadow: 0 0 0 0 rgba(200, 241, 53, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(200, 241, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 241, 53, 0); }
}

.chat__close {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(247, 243, 236, 0.65);
  transition: background var(--transition), color var(--transition);
}
.chat__close:hover { background: rgba(247, 243, 236, 0.08); color: var(--paper); }
.chat__close:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* ── Log / wiadomości ──────────────────────────────────────── */
.chat__log {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 243, 236, 0.2) transparent;
}
.chat__log::-webkit-scrollbar { width: 7px; }
.chat__log::-webkit-scrollbar-thumb { background: rgba(247, 243, 236, 0.16); border-radius: 4px; }

.chat__msg {
  max-width: 82%;
  padding: 10px 13px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: var(--radius-lg);
  white-space: pre-wrap;
  word-wrap: break-word;
  animation: chatRise 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes chatRise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat__msg--bot {
  align-self: flex-start;
  background: rgba(247, 243, 236, 0.07);
  color: var(--paper);
  border-bottom-left-radius: var(--radius-sm);
}

.chat__msg--user {
  align-self: flex-end;
  background: var(--lime);
  color: var(--ink);
  font-weight: 500;
  border-bottom-right-radius: var(--radius-sm);
}

/* Wskaźnik pisania */
.chat__typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 13px 14px;
  background: rgba(247, 243, 236, 0.07);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-sm);
}
.chat__typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.55);
  animation: chatTyping 1.2s infinite ease-in-out;
}
.chat__typing span:nth-child(2) { animation-delay: 0.18s; }
.chat__typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* ── Mini-formularz leada (wtopiony w rozmowę) ─────────────── */
.chat__lead {
  align-self: stretch;
  background: rgba(247, 243, 236, 0.05);
  border: 1px solid rgba(247, 243, 236, 0.1);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: chatRise 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.chat__lead-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
}
.chat__lead-input {
  width: 100%;
  background: rgba(15, 14, 12, 0.5);
  border: 1px solid rgba(247, 243, 236, 0.12);
  border-radius: var(--radius-md);
  padding: 9px 11px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--paper);
  transition: border-color var(--transition);
}
.chat__lead-input::placeholder { color: rgba(247, 243, 236, 0.4); }
.chat__lead-input:focus-visible { outline: none; border-color: var(--lime); }

.chat__lead-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(247, 243, 236, 0.6);
  cursor: pointer;
}
.chat__lead-consent input { margin-top: 2px; accent-color: var(--lime); flex: none; }
.chat__lead-consent a { color: var(--sky); text-decoration: underline; text-underline-offset: 2px; }

.chat__lead-submit {
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  transition: filter var(--transition), opacity var(--transition);
}
.chat__lead-submit:hover { filter: brightness(1.05); }
.chat__lead-submit:disabled { opacity: 0.55; cursor: default; }
.chat__lead-note { font-size: 12px; color: rgba(247, 243, 236, 0.6); }

/* ── Compose / input ───────────────────────────────────────── */
.chat__compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(247, 243, 236, 0.08);
}

.chat__field {
  flex: 1;
  min-width: 0;
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(247, 243, 236, 0.1);
  border-radius: 999px;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--paper);
  transition: border-color var(--transition), background var(--transition);
}
.chat__field::placeholder { color: rgba(247, 243, 236, 0.42); }
.chat__field:focus-visible { outline: none; border-color: var(--lime); background: rgba(247, 243, 236, 0.09); }

.chat__send {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform var(--transition), filter var(--transition), opacity var(--transition);
}
.chat__send:hover { filter: brightness(1.05); transform: translateY(-1px); }
.chat__send:active { transform: scale(0.94); }
.chat__send:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.chat__send:disabled { opacity: 0.5; cursor: default; transform: none; }

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .chat { right: 14px; bottom: 14px; }
  .chat__panel {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 84px;
    width: auto;
    height: min(72vh, calc(100vh - 110px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat__launcher::after,
  .chat__status-dot,
  .chat__typing span { animation: none; }
  .chat__msg, .chat__lead { animation: none; }
  .chat__panel { transition: opacity var(--transition); }
}


/* ════════════════════════════════════════════════════════════
   PODSTRONY USŁUG  (/uslugi/*)  - re-skin makiety na system AKRYS
   ════════════════════════════════════════════════════════════ */

/* — Arrow w przyciskach (przesuw na hover) — */
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow,
.service-card__more:hover .arrow,
.service-card__more:focus-visible .arrow { transform: translateX(4px); }

/* — Sekcja podstrony — */
.u-section { padding-block: clamp(54px, 7vw, 92px); }
.u-section--tight { padding-top: 0; }
.u-eyebrow { margin-bottom: 18px; }
.u-h2 { color: var(--paper); }
.u-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.65;
  max-width: 62ch;
}
.u-lead--center { margin-inline: auto; text-align: center; }

/* — Hero podstrony — */
.subhero {
  position: relative;
  text-align: center;
  padding-top: calc(var(--nav-h) + clamp(92px, 13vh, 168px));
  padding-bottom: clamp(72px, 9vw, 116px);
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 8%;
  width: 62vw;
  height: 62vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.08) 0%, transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}
.subhero .container { position: relative; z-index: 1; }
.subhero__title {
  font-size: clamp(38px, 7.4vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 34px;
}
.subhero .u-eyebrow { margin-bottom: 28px; }
.subhero__title em { font-style: italic; color: var(--lime); }
.subhero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(247, 243, 236, 0.56);
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
}
.subhero__cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.subhero__cta .btn-primary { padding: 15px 32px; font-weight: 700; }

/* — Grid helpers — */
.u-grid { display: grid; gap: 20px; margin-top: 32px; }
.u-grid--4 { grid-template-columns: repeat(4, 1fr); }
.u-grid--3 { grid-template-columns: repeat(3, 1fr); }
.u-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* — Warianty kolorów ikon karty (reużycie .service-card) — */
.service-card--lime::before   { background: radial-gradient(circle, rgba(200,241,53,0.12), transparent 70%); }
.service-card--sky::before    { background: radial-gradient(circle, rgba(74,201,227,0.12), transparent 70%); }
.service-card--orange::before { background: radial-gradient(circle, rgba(255,92,43,0.10), transparent 70%); }
.service-card--lime   .service-card__icon { background: rgba(200,241,53,0.12); color: var(--lime); }
.service-card--sky    .service-card__icon { background: rgba(74,201,227,0.12); color: var(--sky); }
.service-card--orange .service-card__icon { background: rgba(255,92,43,0.12); color: var(--orange); }

/* — Band (tekst + visual) — */
.band {
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.band__title { color: var(--paper); margin: 12px 0 14px; }
.band__text { color: rgba(247, 243, 236, 0.6); line-height: 1.7; font-size: 15px; }
.band__visual {
  background: rgba(15, 14, 12, 0.45);
  border: 1px solid rgba(247, 243, 236, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.band__pin {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.78);
}
.band__pin svg { flex: none; color: var(--lime); }
.band__pin .band__stars { color: var(--lime); letter-spacing: 2px; font-size: 14px; }
.band__pin .band__muted { color: rgba(247, 243, 236, 0.45); }
.band__pin--check svg { color: var(--lime); }

/* — Demo przeglądarki — */
.demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.demo {
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.demo:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 243, 236, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.demo__browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: rgba(15, 14, 12, 0.55);
  border-bottom: 1px solid rgba(247, 243, 236, 0.06);
}
.demo__browser i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.18);
  display: block;
}
.demo__url {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(247, 243, 236, 0.4);
  letter-spacing: 0.02em;
}
.demo__screen {
  height: 128px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
}
/* Placeholdery: gradienty z kolorów brand (do podmiany na <img>) */
.demo__screen--beauty { background: linear-gradient(140deg, rgba(255,92,43,0.42), rgba(255,92,43,0.06)); }
.demo__screen--detail { background: linear-gradient(140deg, rgba(74,201,227,0.40), rgba(74,201,227,0.05)); }
.demo__screen--travel { background: linear-gradient(140deg, rgba(200,241,53,0.36), rgba(200,241,53,0.05)); color: var(--paper); }
.demo__body { padding: 24px; }
.demo__body h3 { color: var(--paper); margin-bottom: 9px; }
.demo__body p {
  font-size: 14px;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.demo__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
  background: rgba(200, 241, 53, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
}

/* — Grupy automatyzacji — */
.autogroup { margin-top: 34px; }
.autogroup:first-of-type { margin-top: 0; }
.autogroup__label { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.autogroup__num { font-weight: 800; color: var(--lime); font-size: 15px; letter-spacing: 0.02em; }
.autogroup__title { color: var(--paper); }
.autorow {
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 11px;
  transition: border-color var(--transition);
}
.autorow:hover { border-color: rgba(247, 243, 236, 0.14); }
.autorow__dot {
  margin-top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}
.autorow b { font-weight: 600; font-size: 15px; color: var(--paper); display: block; margin-bottom: 4px; }
.autorow span { font-size: 14px; color: rgba(247, 243, 236, 0.55); line-height: 1.6; }
.autorow .autorow__opt { color: rgba(247, 243, 236, 0.4); font-weight: 500; }

/* — Flow (trigger -> akcja) — */
.flowbox {
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 36px);
  margin-top: 24px;
}
.flow {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.flow:last-child { margin-bottom: 0; }
.node {
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.1);
  background: rgba(247, 243, 236, 0.04);
  color: var(--paper);
  white-space: nowrap;
}
.node--trigger { border-color: rgba(200, 241, 53, 0.4); color: var(--lime); }
.flow__arrow { color: rgba(247, 243, 236, 0.4); font-weight: 700; }

/* — Okno czatu (podstrona chatboty) — */
.chatwin {
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.bubble {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.5;
}
.bubble--in {
  align-self: flex-start;
  background: rgba(247, 243, 236, 0.07);
  color: var(--paper);
  border-bottom-left-radius: var(--radius-sm);
}
.bubble--out {
  align-self: flex-end;
  background: var(--lime);
  color: var(--ink);
  font-weight: 500;
  border-bottom-right-radius: var(--radius-sm);
}

/* — Kanały — */
.channels { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.channel {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  border: 1px solid rgba(247, 243, 236, 0.1);
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--mid);
}
.channel__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

/* — Split (tekst + visual w jednym rzędzie) — */
.u-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: start;
  margin-top: 8px;
}
.u-split__title { color: var(--paper); margin-bottom: 22px; }

/* — CTA band zamykający — */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--mid);
  border: 1px solid rgba(247, 243, 236, 0.06);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 6vw, 64px) 28px;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 220px at 50% 0, rgba(200, 241, 53, 0.1), transparent 68%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band__title { color: var(--paper); margin-bottom: 26px; max-width: 18ch; margin-inline: auto; }

/* — Kafelek usługi jako link (home) — */
.service-card { display: flex; flex-direction: column; }
.service-card__desc { flex: 1; }
.service-card__more {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: opacity var(--transition);
}
.service-card__more:hover { opacity: 0.78; }
.service-card__more:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}
.service-card--auto  .service-card__more { color: var(--sky); }
.service-card--agent .service-card__more { color: var(--orange); }

/* — Responsive podstron — */
@media (max-width: 900px) {
  .u-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .demos { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .u-split { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .u-grid--3, .u-grid--2, .u-grid--4 { grid-template-columns: 1fr; }
}
