/* ============================================================
   WEBNIK — studio stron internetowych
   Ciemna, grafitowa baza + miodowy akcent. Nagłówki: Bricolage
   Grotesque, tekst: Manrope.
   ============================================================ */

:root {
  --bg:        #0C0F14;
  --bg-2:      #12161D;
  --bg-3:      #1A1F28;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);
  --text:      #EEEDE8;
  --muted:     #9AA1AD;
  --muted-2:   #6B7280;
  --accent:    #F2B84B;
  --accent-2:  #FFCB6B;
  --accent-ink:#1A1204;
  --accent-dim:rgba(242, 184, 75, 0.14);
  --radius:    16px;
  --radius-sm: 10px;
  --wrap:      1140px;
  --ease:      cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 760px; }

/* ---------- typografia ---------- */

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

p { color: var(--muted); }
p strong { color: var(--text); font-weight: 600; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 34em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { margin-top: 16px; }

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

/* ---------- przyciski ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 28px -10px rgba(242, 184, 75, 0.55);
}
.btn-primary:hover { background: var(--accent-2); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.03); }

.btn svg { width: 18px; height: 18px; }

/* ---------- nagłówek ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 15, 20, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(12, 15, 20, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
}
.brand .cursor {
  display: inline-block;
  width: 0.42em;
  height: 0.78em;
  margin-left: 0.12em;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(0.02em);
  animation: blink 1.15s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.site-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto 0;
  background: var(--accent);
  border-radius: 2px;
}
.site-nav .nav-cta {
  margin-left: 10px;
  padding: 11px 20px;
  background: var(--accent);
  color: var(--accent-ink);
}
.site-nav .nav-cta:hover { background: var(--accent-2); color: var(--accent-ink); }
.site-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(242,184,75,0.10), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(255,255,255,0.03), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; max-width: 12em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { margin-bottom: 34px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-phone a {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid var(--line-2);
  transition: border-color .2s;
}
.hero-phone a:hover { border-color: var(--accent); }
.hero-phone svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- makieta przeglądarki (element charakterystyczny) ---------- */

.mock {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: left center;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.mock-bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
}
.mock-url {
  margin-left: 10px;
  flex: 1;
  max-width: 220px;
  height: 22px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  padding: 0 10px;
  letter-spacing: 0.02em;
}
.mock-body {
  position: relative;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 22px;
  gap: 12px;
  min-height: 330px;
}
.m {
  border-radius: 6px;
  border: 1.5px dashed transparent;
  background: transparent;
  opacity: 0;
  --fill: var(--bg-3);
  animation:
    sketch .5s var(--ease) forwards calc(var(--i) * 110ms + 300ms),
    fill   .7s var(--ease) forwards calc(var(--i) * 110ms + 1250ms);
}
@keyframes sketch {
  from { opacity: 0; transform: translateY(6px); border-color: transparent; }
  to   { opacity: 1; transform: none; border-color: rgba(242,184,75,0.75); }
}
@keyframes fill {
  to { border-color: transparent; border-style: solid; background: var(--fill); }
}

.m-nav   { grid-column: 1 / -1; grid-row: 1; --fill: var(--bg-3); }
.m-logo  { grid-column: 1 / 2; grid-row: 1; --fill: var(--accent); border-radius: 6px; }
.m-h1    { grid-column: 1 / 5; grid-row: 2 / 4; --fill: #E9E7E1; }
.m-h1b   { grid-column: 1 / 4; grid-row: 4; --fill: #E9E7E1; }
.m-p     { grid-column: 1 / 5; grid-row: 5; --fill: #303744; height: 12px; align-self: center; }
.m-p2    { grid-column: 1 / 4; grid-row: 6; --fill: #303744; height: 12px; align-self: center; }
.m-btn   { grid-column: 1 / 3; grid-row: 7; --fill: var(--accent); border-radius: 999px; }
.m-img   {
  grid-column: 5 / -1; grid-row: 2 / 8;
  --fill: #262D3B;
  border-radius: 12px;
}
.m-card  { grid-row: 9 / 12; --fill: var(--bg-3); border-radius: 10px; }
.m-c1 { grid-column: 1 / 3; }
.m-c2 { grid-column: 3 / 5; }
.m-c3 { grid-column: 5 / 7; }

.mock-caption {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-caption b { color: var(--muted); font-weight: 600; }
.mock-caption .arrow { color: var(--accent); }

/* ---------- pas faktów ---------- */

.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.facts ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.facts li {
  padding: 26px 24px;
  border-left: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.facts li:first-child { border-left: 0; padding-left: 0; }
.facts svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.facts strong { display: block; font-weight: 700; color: var(--text); }
.facts span { font-size: 0.92rem; color: var(--muted); }

/* ---------- sekcje ---------- */

.section { padding: 104px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

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

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color .3s, transform .3s var(--ease);
}
.section-alt .card { background: var(--bg); }
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ---------- proces (kolejność ma znaczenie) ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--line-2) 70%, transparent);
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 28px 0 0;
}
.steps li + li { padding-left: 28px; }
.step-no {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--accent);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.section-alt .step-no { background: var(--bg-2); }
.step-no::before { content: counter(step, decimal-leading-zero); }
.steps li:first-child .step-no { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.steps h3 { font-size: 1.15rem; margin-bottom: 8px; }
.steps p { font-size: 0.95rem; }
.steps .step-time { display: inline-block; margin-top: 12px; font-size: 0.8rem; color: var(--muted-2); letter-spacing: 0.04em; }

/* ---------- realizacja / portfolio ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.feature-text .tags { margin: 22px 0 28px; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.tags li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--muted);
}

.shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}
.shot img { width: 100%; height: auto; }
.shot-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); }
.shot-bar span { margin-left: 8px; font-size: 0.7rem; color: var(--muted-2); }

.shot-pair { position: relative; }
.shot-pair .shot-mobile {
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 26%;
  border-radius: 22px;
  border: 5px solid #1C222B;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9);
}
.shot-pair .shot-mobile img { width: 100%; }
.project .shot-pair .shot-mobile { right: 12px; }

.project {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
}
.project + .project { border-top: 1px solid var(--line); }
.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 26px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-meta dt { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.project-meta dd { color: var(--text); font-weight: 600; font-size: 0.98rem; }
.project h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.project .lead { font-size: 1.05rem; margin-top: 12px; }
.project ul.checks { margin-top: 6px; }

.checks {
  list-style: none;
  display: grid;
  gap: 12px;
}
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.98rem;
}
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23F2B84B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3L15 6.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checks strong { color: var(--text); font-weight: 600; }

/* pusty slot w portfolio */
.slot {
  margin-top: 40px;
  border: 1.5px dashed var(--line-2);
  border-radius: var(--radius);
  padding: 44px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: transparent;
}
.slot h3 { font-size: 1.4rem; margin-bottom: 8px; }
.slot p { max-width: 42em; }

/* ---------- cennik ---------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s var(--ease);
}
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); }
.plan.is-featured { border-color: rgba(242,184,75,0.45); background: linear-gradient(180deg, rgba(242,184,75,0.06), transparent 40%), var(--bg-2); }
.plan-tag { display: inline-block; align-self: flex-start; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--accent); background: var(--accent-dim); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px; }
.plan h3 { font-size: 1.5rem; margin-bottom: 6px; }
.plan .plan-for { font-size: 0.95rem; min-height: 3.2em; }
.plan .plan-price {
  margin: 22px 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan .plan-price strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.plan .plan-price span { font-size: 0.88rem; color: var(--muted-2); }
.plan .checks { flex: 1; margin-bottom: 28px; }
.plan .btn { width: 100%; }

.included { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.included li { display: flex; gap: 12px; color: var(--muted); }
.included li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--accent);
}
.included strong { color: var(--text); font-weight: 600; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 22px;
  transition: border-color .3s;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; font-size: 0.98rem; max-width: 60em; }

/* ---------- o nas ---------- */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p + p { margin-top: 18px; }
.about-mark {
  position: sticky;
  top: 110px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background:
    radial-gradient(70% 70% at 30% 20%, rgba(242,184,75,0.16), transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-mark .big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.about-mark .big .cursor { display: inline-block; width: 0.42em; height: 0.78em; margin-left: 0.1em; background: var(--accent); border-radius: 4px; animation: blink 1.15s steps(1) infinite; }
.about-mark .sub {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2);
}
.values { list-style: none; display: grid; gap: 14px; margin-top: 34px; }
.values li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.values li:last-child { border-bottom: 1px solid var(--line); }
.values svg { width: 24px; height: 24px; color: var(--accent); margin-top: 3px; }
.values strong { display: block; color: var(--text); margin-bottom: 4px; }
.values p { font-size: 0.95rem; }

/* ---------- kontakt ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }

.phone-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 30px;
}
.phone-card .label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.phone-card a.big-phone {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color .2s;
}
.phone-card a.big-phone:hover { color: var(--accent); }
.phone-card a.big-phone svg { width: 28px; height: 28px; color: var(--accent); }
.phone-card .note { margin-top: 12px; font-size: 0.92rem; }
.contact-list { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.98rem; }
.contact-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.95rem; margin-bottom: 26px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.field label small { color: var(--muted-2); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.form-foot small { color: var(--muted-2); font-size: 0.85rem; }
.form-status { margin-top: 16px; font-size: 0.95rem; padding: 12px 14px; border-radius: var(--radius-sm); display: none; }
.form-status.is-ok { display: block; background: rgba(120, 200, 120, 0.12); color: #B8E5B8; }
.form-status.is-err { display: block; background: rgba(255, 110, 110, 0.12); color: #F3B0B0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- CTA końcowe ---------- */

.cta {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 100%, rgba(242,184,75,0.14), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }
.cta p { margin-bottom: 30px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- podstrony: nagłówek strony ---------- */

.page-head { padding: 72px 0 40px; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; max-width: 14em; }
.page-head .lead { max-width: 40em; }

/* ---------- stopka ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 44px 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer p { font-size: 0.92rem; }
.site-footer .brand { font-size: 1.35rem; margin-bottom: 10px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* ---------- animacja pojawiania ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- responsywność ---------- */

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mock { transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps-3 { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .steps::before { display: none; }
  .steps li { padding: 0 24px 0 0 !important; }
  .feature, .project, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-mark { position: static; max-width: 420px; }
  .plans { grid-template-columns: 1fr; }
  .plan .plan-for { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .section { padding: 72px 0; }
  .hero { padding: 48px 0 72px; }
  .header-inner { height: 68px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { display: block; padding: 12px 10px; font-size: 1.05rem; border-radius: 10px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .site-nav a[aria-current="page"] { color: var(--accent); }
  .site-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .facts ul { grid-template-columns: 1fr; }
  .facts li { border-left: 0; padding: 18px 0; border-top: 1px solid var(--line); }
  .facts li:first-child { border-top: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps, .steps-3 { grid-template-columns: 1fr; }
  .slot { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .shot-pair .shot-mobile { right: -6px; bottom: -18px; width: 30%; }
  .project-meta { grid-template-columns: 1fr 1fr; }
  .mock-body { min-height: 260px; grid-auto-rows: 18px; gap: 10px; padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .m { opacity: 1; border-style: solid; border-color: transparent; background: var(--fill); }
  .reveal { opacity: 1; transform: none; }
}
