:root {
  --bg-main: #f5f5f7;       /* czyste tło pro */
  --bg-window: #ffffff;
  --bg-dark: #050505;

  --text-main: #111111;
  --text-soft: #6b7280;

  --accent-neon: #00ff41;
  --accent-cyan: #00e0ff;
  --accent-magenta: #ff2fa8;
  --accent-blue: #111827;

  --border-soft: #e5e7eb;
  --error: #f43f5e;

  /* kolory terminala do formularza */
  --terminal-bg: #020502;
  --terminal-bg-soft: #050b05;
  --terminal-green: #7bff3b;
  --terminal-green-soft: #b6ff7a;
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9fafb 0, #f5f5f7 40%, #e5e7eb 100%);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  max-width: 65ch;
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.8rem 1.4rem 3.5rem;
}

.section {
  margin: 3rem 0;
}

/* --- NAV MINI --- */

header.site-header {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.4rem 1.4rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.5);
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

/* --- MAC WINDOW – HERO --- */

#hero {
  margin-top: 1.2rem;
}

.win-box {
  background: var(--bg-window);
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.win-box:hover {
  transform: translate(-4px, -4px);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(148, 163, 184, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.win-header {
  background: linear-gradient(90deg, #111827, #020617);
  color: #f9fafb;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.win-header-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.win-header-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-neon);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.win-header-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mac-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.4),
              0 0 0 3px rgba(15, 23, 42, 0.45);
}

.mac-dot.red { background: #ff5f57; }
.mac-dot.yellow { background: #ffbd2e; }
.mac-dot.green { background: #28c840; }

.win-content {
  padding: 1.9rem 1.7rem 2.1rem;
}

/* HERO grid */

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-left {
  flex: 3;
}

.hero-right {
  flex: 2;
  max-width: 360px;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-tag {
  background: #0f172a;
  color: #e5e7eb;
  padding: 0.18rem 0.6rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-neon);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding-left: 0.55rem;
  border-left: 2px solid rgba(148, 163, 184, 0.9);
  color: var(--text-soft);
}

.hero-title span.highlight {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.hero-title span.highlight::after {
  content: "";
  position: absolute;
  inset: 72% 0 -0.1rem;
  background: rgba(56, 189, 248, 0.14);
  z-index: -1;
  border-radius: 999px;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  margin-top: 0.7rem;
  margin-bottom: 1.1rem;
}

.hero-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
  color: #4b5563;
}

.hero-meta strong {
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.86rem;
  border: 1px solid rgba(15, 23, 42, 0.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.btn span.icon {
  font-size: 0.9rem;
}

.btn-primary {
  background: #111827;
  color: #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.45);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.6);
}

.btn-ghost {
  background: #f9fafb;
  color: #111827;
  border-style: dashed;
  border-color: #cbd5f5;
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4);
}

.hero-loading {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.hero-loading-bar {
  position: relative;
  width: 150px;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.hero-loading-fill {
  position: absolute;
  inset: 0;
  width: 82%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

/* HERO FOTO */

.hero-photo-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #000;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.hero-photo-frame:hover {
  transform: translate(-4px, -4px);
  box-shadow:
    0 24px 52px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(56, 189, 248, 0.6);
  border-color: rgba(59, 130, 246, 0.55);
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.96;
}

/* --- MODULE CARDS – MINIMAL PRO --- */

#system {
  scroll-margin-top: 80px;
}

.system-heading {
  text-align: center;
  margin-bottom: 2.1rem;
}

.system-eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.system-heading h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.system-heading p {
  margin: 0.3rem auto 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.module-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.module-card:hover {
  transform: translate(-3px, -3px);
  box-shadow:
    0 20px 34px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(59, 130, 246, 0.28);
  border-color: rgba(59, 130, 246, 0.6);
}

.module-header {
  background: #020617;
  color: #e5e7eb;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-header span.label {
  font-weight: 500;
}

.module-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-neon);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.module-body {
  padding: 1.4rem 1.5rem 1.5rem;
  font-size: 0.96rem;
  background: #ffffff;
}

.module-body p {
  max-width: none;
}

.module-card.dark .module-body {
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #020617 100%);
  color: #e5e7eb;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.module-card.dark .module-body hr {
  border: none;
  border-top: 1px dashed rgba(148, 163, 184, 0.9);
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.trust-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0.4rem;
}

.pill {
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px dashed rgba(75, 85, 99, 0.85);
  padding: 0.25rem 0.7rem;
  background: #f9fafb;
  color: #111827;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.78rem;
}

.trust-badge {
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.8);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.35);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.trust-list li {
  margin-bottom: 0.38rem;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.94rem;
}

.trust-list span.bullet {
  font-size: 0.8rem;
  margin-top: 0.12rem;
  font-family: "Space Grotesk", monospace;
  color: rgba(148, 163, 184, 0.9);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
  color: #111827;
}

.loading-bar {
  height: 8px;
  background: #eef2ff;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #22c55e);
  width: 87%;
}

/* --- KONTAKT – NEON TERMINAL --- */

#kontakt {
  scroll-margin-top: 80px;
}

.contact-section {
  background: radial-gradient(circle at top, #000000 0, var(--terminal-bg) 55%, #000000 100%);
  color: var(--terminal-green-soft);
  padding: 3.5rem 1.4rem 3.8rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow:
    0 -40px 120px rgba(0, 0, 0, 1) inset,
    0 0 40px rgba(0, 0, 0, 0.9) inset;
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 2.5rem 2rem 2.8rem;
  background: radial-gradient(circle at top left, var(--terminal-bg-soft) 0, #020202 65%);
  border: 1px solid rgba(123, 255, 59, 0.4);
  box-shadow:
    0 0 32px rgba(123, 255, 59, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.9);
}

.action-header {
  text-align: left;
  margin-bottom: 2rem;
}

.action-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terminal-green);
}

.action-sub {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 34rem;
  margin-top: 0.75rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
  max-width: 700px;
}

.field-inline-row {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.field-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
}

.field label {
  font-weight: 500;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--terminal-green-soft);
}

.field small {
  font-size: 0.75rem;
  color: #6b7280;
}

.input-retro,
.textarea-retro,
.select-retro {
  width: 100%;
  padding: 0.9rem 0.9rem;
  background: #020302;
  border-radius: 8px;
  border: 1px solid rgba(123, 255, 59, 0.5);
  color: var(--terminal-green-soft);
  font-family: "Space Grotesk", monospace;
  font-size: 0.96rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}

.input-retro::placeholder,
.textarea-retro::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.textarea-retro {
  min-height: 140px;
  resize: vertical;
}

.select-retro {
  appearance: none;
  background-image:
    linear-gradient(45deg, var(--terminal-green) 50%, transparent 50%),
    linear-gradient(135deg, var(--terminal-green) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.input-retro:focus,
.textarea-retro:focus,
.select-retro:focus {
  outline: none;
  border-color: var(--terminal-green);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 1),
    0 0 18px rgba(123, 255, 59, 0.7);
}

.slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(90deg, rgba(55, 65, 81, 1), var(--terminal-green));
  border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terminal-green);
  border: 2px solid #000;
  margin-top: -5px;
  box-shadow: 0 0 0 3px rgba(123, 255, 59, 0.4);
}

.form-footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

.consent-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--terminal-green-soft);
  border-radius: 999px;
  border: 1px solid rgba(123, 255, 59, 0.8);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 1),
    0 0 24px rgba(123, 255, 59, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary--full::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--terminal-green);
}

.btn-primary--full:hover {
  background: rgba(123, 255, 59, 0.08);
  color: var(--terminal-green);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 1),
    0 0 40px rgba(123, 255, 59, 0.8);
}

.form-status {
  font-size: 0.8rem;
  min-height: 1.1rem;
}

.form-status--ok { color: var(--terminal-green); }
.form-status--error { color: #f97373; }

/* FOOTER */

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.2rem 1.4rem 1.8rem;
  font-size: 0.78rem;
  color: #6b7280;
  background: rgba(15, 23, 42, 0.98);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.78rem;
}

.footer-link {
  text-decoration: none;
  opacity: 0.7;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: #6b7280;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-neon);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
}

/* ========================================
   BANER COOKIES / RODO - KOMPAKTOWY
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  max-width: 380px;
  width: calc(100% - 2rem);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.cookie-banner-content {
  background: radial-gradient(circle at top left, #020617 0, #000000 90%);
  border-radius: 12px;
  border: 1px solid rgba(123, 255, 59, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(123, 255, 59, 0.15);
  overflow: hidden;
}

.cookie-banner-header {
  background: linear-gradient(90deg, #0a0f1a, #020617);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(123, 255, 59, 0.15);
}

.cookie-banner-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terminal-green-soft);
}

.cookie-icon {
  font-size: 1rem;
  filter: drop-shadow(0 0 3px rgba(123, 255, 59, 0.3));
}

.cookie-banner-body {
  padding: 1rem 1.1rem 1rem;
}

.cookie-intro {
  font-size: 0.8rem;
  color: #d1d5db;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cookie-category {
  display: block;
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(123, 255, 59, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cookie-category:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(123, 255, 59, 0.3);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-category input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--terminal-green);
  border-radius: 3px;
  flex-shrink: 0;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terminal-green-soft);
  flex: 1;
}

.cookie-category-badge {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
  background: rgba(123, 255, 59, 0.12);
  border: 1px solid rgba(123, 255, 59, 0.3);
  border-radius: 999px;
  color: var(--terminal-green);
  flex-shrink: 0;
}

.cookie-category-desc {
  font-size: 0.7rem;
  color: #9ca3af;
  line-height: 1.3;
  margin-top: 0.25rem;
  display: none; /* Ukrywamy opisy dla kompaktowości */
}

.cookie-banner-footer {
  border-top: 1px dashed rgba(123, 255, 59, 0.15);
  padding-top: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.cookie-btn {
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
}

.cookie-btn-primary {
  background: rgba(123, 255, 59, 0.1);
  color: var(--terminal-green-soft);
  border: 1px solid rgba(123, 255, 59, 0.6);
  box-shadow: 0 0 12px rgba(123, 255, 59, 0.2);
}

.cookie-btn-primary:hover {
  background: rgba(123, 255, 59, 0.15);
  color: var(--terminal-green);
  box-shadow: 0 0 18px rgba(123, 255, 59, 0.35);
}

.cookie-btn-secondary {
  background: rgba(123, 255, 59, 0.05);
  color: var(--terminal-green-soft);
  border: 1px solid rgba(123, 255, 59, 0.3);
}

.cookie-btn-secondary:hover {
  background: rgba(123, 255, 59, 0.12);
  border-color: rgba(123, 255, 59, 0.5);
}

.cookie-btn-ghost {
  background: transparent;
  color: #9ca3af;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

.cookie-btn-ghost:hover {
  color: #d1d5db;
  border-color: rgba(148, 163, 184, 0.6);
}

.cookie-policy-link {
  font-size: 0.68rem;
  color: #6b7280;
  text-align: center;
}

.cookie-policy-link a {
  color: var(--terminal-green-soft);
  text-decoration: underline;
  text-decoration-style: dashed;
}

.cookie-policy-link a:hover {
  color: var(--terminal-green);
}

/* Responsywność */

@media (min-width: 720px) {
  .hero-grid {
    flex-direction: row;
    align-items: flex-start;
  }

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

  .bento-large {
    grid-column: span 2;
  }

  .bento-tall {
    grid-row: span 2;
  }

  .field-inline-row {
    flex-direction: row;
  }

  .field-inline-row .field {
    flex: 1;
  }

  .contact-inner {
    padding: 3rem 3rem 3.2rem;
  }

  .form-grid {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  header.site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
  }

  .cookie-banner-content {
    border-radius: 12px 12px 0 0;
  }
}