/* ==========================================
   Redspekt — style.css
   Dark Premium Theme · 2026
   ========================================== */

:root {
  --bg: #121217; /* Główne tło strony (ciemny motyw). */
  --bg-2: #18161d; /* Drugorzędne tło sekcji i bloków. */
  --bg-3: #211b26; /* Trzecie tło do subtelnych przejść/kontrastów. */
  --surface: #1f1924; /* Podstawowa powierzchnia kart i paneli. */
  --surface-2: #2a2330; /* Alternatywna powierzchnia (nagłówki kart, wnętrza). */
  --border: rgba(255,255,255,0.08); /* Standardowy kolor obramowań. */
  --border-accent: rgba(255,0,0,0.3); /* Akcentowe czerwone obramowania. */
  --text: #e8ecf4; /* Podstawowy kolor tekstu. */
  --text-muted: #a196a8; /* Stonowany tekst pomocniczy. */
  --text-faint: #645667; /* Najsłabszy tekst/drobne podpisy. */
  --accent: #ff0000; /* Główny kolor marki (RED). */
  --accent-2: #ff2f43; /* Drugi odcień akcentu do gradientów. */
  --accent-deep: #c40000; /* Ciemniejszy wariant akcentu. */
  --accent-soft: #ff5b6a; /* Jaśniejszy, miękki akcent. */
  --accent-warm: #d32000; /* Ciepły odcień akcentu. */
  --accent-glow: rgba(255,0,0,0.2); /* Czerwony glow/tło półprzezroczyste. */
  --accent-glow-2: rgba(255,47,67,0.2); /* Drugi glow do efektów gradientowych. */
  --blob-1-color: #ae00ff; /* Kolor blobu tła nr 1. */
  --blob-2-color: #00ff73; /* Kolor blobu tła nr 2. */
  --blob-3-color: #da0000; /* Kolor blobu tła nr 3. */
  --danger: #ff4d6d; /* Kolor stanów ostrzegawczych/błędów. */
  --success: #22c55e; /* Kolor stanów pozytywnych/sukcesu. */
  --font-display: 'Montserrat', sans-serif; /* Font nagłówków i elementów display. */
  --font-body: 'Nunito', sans-serif; /* Font tekstu głównego i opisów. */
  --font-heading: 'Montserrat', sans-serif; /* Font nagłówków H1/H2 i większych wyróżnień. */
  --r-sm: 8px; /* Mały promień zaokrąglenia. */
  --r-md: 12px; /* Średni promień zaokrąglenia. */
  --r-lg: 20px; /* Duży promień zaokrąglenia. */
  --r-xl: 32px; /* Bardzo duży promień zaokrąglenia. */
  --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Domyślny timing przejść. */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 3px rgba(0,0,0,0.2); /* Cień kart/paneli. */
  --shadow-glow: 0 0 40px rgba(255,16,47,0.2); /* Świetlista poświata akcentu. */
  --step-fill-soft: rgb(255 248 248); /* Delikatne wypełnienie numerów kroków procesu. */
}

[data-theme="light"] {
  --bg: #f6f7fb; /* Główne tło strony (jasny motyw). */
  --bg-2: #ffffff; /* Drugorzędne tło sekcji i bloków. */
  --bg-3: #edf0f7; /* Trzecie tło do subtelnych przejść/kontrastów. */
  --surface: #ffffff; /* Podstawowa powierzchnia kart i paneli. */
  --surface-2: #f3f5fb; /* Alternatywna powierzchnia. */
  --border: rgba(24, 28, 40, 0.12); /* Standardowy kolor obramowań. */
  --border-accent: rgba(255,16,47,0.34); /* Akcentowe obramowania w jasnym motywie. */
  --text: #181725; /* Podstawowy kolor tekstu. */
  --text-muted: #4f5467; /* Stonowany tekst pomocniczy. */
  --text-faint: #6e7387; /* Najsłabszy tekst/drobne podpisy. */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: auto;
}
body.custom-cursor-enabled {
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CUSTOM CURSOR ───────────────────────── */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%,-50%);
  transition: transform 0.04s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 56px; height: 56px;
  background: var(--accent-glow);
  border-color: transparent;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.1vw, 4.35rem); font-weight: 800; letter-spacing: -0.012em; line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 3.7vw, 3rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.08; }
h3 { font-size: 1.3rem; font-weight: 700; }

.nunito-heading {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.01em !important;
}

.nunito-label {
  font-family: var(--font-heading) !important;
  letter-spacing: 0 !important;
}

em { font-style: normal; color: var(--accent); }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(255,16,47,0.32);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255,16,47,0.45);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,16,47,0.05);
}
.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── SECTION COMMON ─────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-desc {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── SCROLL REVEAL ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ── NAV ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
}
[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
}
.nav-logo {
  font-size: 3.4rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.03em;
}
.logo-red-outline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;

  letter-spacing: -0.02em;
  line-height: 1;
  color: #ff0000;
}
.logo-aspect {
  font-family: 'Nunito', sans-serif;
  color: #1f2937;
  font-weight: 400;
   font-size: 2.4rem;
}
[data-theme="dark"] .logo-aspect {
  color: #ffffff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 24px rgba(255,16,47,0.38);
  transform: translateY(-1px);
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}
[data-theme="dark"] .theme-toggle {
  background: #f5f7fb;
  color: #111827;
  border-color: rgba(255, 255, 255, 0.55);
}
[data-theme="light"] .theme-toggle {
  background: #ffffff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.2);
}

.mobile-theme-toggle {
  margin-top: 8px;
  font-size: 1rem;
  padding: 10px 20px;
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.open { transform: translateX(0); }
.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 16px;
  background: var(--accent);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 1.2rem !important;
}

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 140px 64px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.72;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--blob-1-color) 92%, #ffffff 8%) 0%, transparent 172%);
  top: -200px; right: -100px;
  animation-delay: 0s;
  opacity: 0.6;
}
.blob-2 {  
  width: 1000px; height: 1000px; /* Rozmiar plamy - im większy, tym bardziej wypełnia tło */

  /* Tworzy efekt miękkiego światła (gradient kołowy) */
  background: radial-gradient(
    circle, 
    /* color-mix miesza dwa kolory: główny kolor plamy (66%) z ciepłym akcentem (34%) */
    color-mix(in srgb, var(--blob-2-color) 66%, var(--accent-warm) 34%) 0%, 
    /* Tutaj plama staje się całkiem przezroczysta - im mniejszy %, tym ostrzejsza krawędź */
    transparent 72%
  );
  
  bottom: 100px; left: -200px; /* Pozycjonowanie: 100px od dołu i wystaje 100px za lewą krawędź ekranu */  
  animation-delay: 3s; /* Czeka 3 sekundy zanim zacznie się ruszać (jeśli ma przypisaną animację) */  
  opacity: 0.6; /* Przezroczystość całej plamy (0.3 to 30%) - zmniejsz do 0.1, jeśli za mocno "brudzi" wygląd */
}

.blob-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, color-mix(in srgb, var(--blob-3-color) 70%, var(--accent-warm) 30%) 0%, transparent 74%);
  top: 50%; left: 50%;
  animation-delay: 6s;
  opacity: 0.24;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* UWAGA: poniżej tylko delikatny fix pod ucinanie dolnych części liter w hero.
   Nie usuwam istniejącej struktury ani komentarzy, tylko zwiększam line-height
   i zdejmuję overflow:hidden z linii tytułu. */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-title .line {
  display: block;
  line-height: 0.9;   /* ściska */
  overflow: visible;  /* NIE ucina */
}


.accent-line {
  color: var(--accent);
  position: relative;
  text-shadow: 0 0 24px rgba(255,16,47,0.18);
}
.text-rotate {
  display: inline-block;
  animation: rotateWord 4s ease infinite;
}
@keyframes rotateWord {
  0%, 35% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0; transform: translateY(-20px); }
  55% { opacity: 0; transform: translateY(20px); }
  65%, 100% { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── HERO VISUAL ─────────────────────────── */
.hero-visual {
  position: relative;
}
.browser-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.b-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.b-dot.red { background: #ff5f57; }
.b-dot.yellow { background: #ffbd2e; }
.b-dot.green { background: #28ca41; }
.b-url {
  flex: 1;
  background: var(--surface);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 8px;
}
.browser-screen {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
}
.mock-hero-block { display: flex; flex-direction: column; gap: 10px; }
.mock-line {
  height: 12px;
  background: var(--surface-2);
  border-radius: 6px;
}
.mock-line.wide { width: 85%; height: 18px; }
.mock-line.medium { width: 60%; }
.mock-line.short { width: 40%; }
.mock-line.accent-bg { background: linear-gradient(90deg, var(--accent), var(--accent-2)); opacity: 0.6; }
.mock-btn-row { display: flex; gap: 8px; margin-top: 4px; }
.mock-btn {
  height: 32px;
  width: 100px;
  border-radius: 8px;
  background: var(--surface-2);
}
.mock-btn.primary-btn { background: var(--accent); opacity: 0.7; }
.mock-btn.outline-btn { border: 1px solid var(--border); background: transparent; }
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-card.highlight-card {
  border-color: rgba(255,16,47,0.32);
  background: rgba(255,16,47,0.08);
}
.mock-card-icon {
  width: 28px; height: 28px;
  background: var(--surface);
  border-radius: 6px;
}
.mock-card-icon.accent { background: rgba(255,16,47,0.22); }
.mock-card-lines { display: flex; flex-direction: column; gap: 5px; }
.mock-chart {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 12px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.chart-bar {
  flex: 1;
  background: var(--surface);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}
.chart-bar.accent-bar { background: linear-gradient(to top, var(--accent), var(--accent-2)); }

.floating-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  animation: floatTag 4s ease-in-out infinite;
}
.tag-icon { margin-right: 4px; }
.tag-1 { top: -16px; right: 24px; animation-delay: 0s; }
.tag-2 { bottom: 48px; left: -20px; animation-delay: 1.5s; }
.tag-3 { bottom: -12px; right: 40px; animation-delay: 0.8s; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollDrop 2s ease infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUSTED ─────────────────────────────── */
.trusted {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos-track { overflow: hidden; }
.logos-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.logo-sep { color: var(--text-faint); opacity: 0.5; }

/* ── SERVICES ────────────────────────────── */
.services { padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-muted);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent-glow); color: var(--accent); box-shadow: 0 0 20px rgba(255,16,47,0.12); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.service-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.service-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-link:hover { opacity: 0.8; }

.featured-card {
  background: linear-gradient(135deg, var(--surface), rgba(255,16,47,0.08));
  border-color: rgba(255,16,47,0.24);
}
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ── PORTFOLIO ───────────────────────────── */
.portfolio { padding: 120px 0; background: var(--bg-2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portfolio-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.portfolio-item.large { grid-column: span 2; display: grid; grid-template-columns: 1.4fr 1fr; }

.portfolio-screen {
  background: var(--bg);
  padding: 20px;
  min-height: 300px;
  border-bottom: 1px solid var(--border);
}
.portfolio-item.large .portfolio-screen {
  border-bottom: none;
  border-right: 1px solid var(--border);
}

/* Screen internals */
.ps-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 16px;
}
.ps-logo { width: 80px; height: 12px; background: var(--surface-2); border-radius: 4px; }
.ps-nav-links { display: flex; gap: 8px; align-items: center; }
.ps-link { width: 40px; height: 8px; background: var(--surface-2); border-radius: 4px; }
.cta-pill { width: 60px; height: 24px; background: var(--accent); opacity: 0.5; border-radius: 6px; }

.ps-hero { padding: 20px; border-radius: 10px; margin-bottom: 12px; display: flex; gap: 16px; }
.ps-hero-text { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ps-h1 { width: 90%; height: 16px; }
.ps-h2 { height: 10px; background: rgba(255,255,255,0.15); border-radius: 4px; }
.ps-h3 { height: 10px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.ps-cta-row { display: flex; gap: 8px; margin-top: 4px; }
.ps-btn { width: 80px; height: 26px; border-radius: 6px; }
.ps-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); }
.ps-hero-img { flex: 0.6; }

.ps-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ps-feat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 10px; display: flex; align-items: center; gap: 8px; }
.ps-feat-icon { width: 28px; height: 28px; background: var(--surface-2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.ps-feat-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ps-fline { height: 6px; background: var(--surface-2); border-radius: 3px; width: 100%; }
.ps-fline.short { width: 60%; }

.small-screen { min-height: 220px; }

/* Small screen elements */
.ps-navbar.mini { margin-bottom: 10px; }
.ps-logo.mini { width: 50px; height: 8px; }
.ps-link.mini { width: 24px; height: 6px; }
.ps-hero.mini { padding: 12px; flex-direction: column; min-height: 80px; gap: 6px; }
.ps-h1.mini { width: 80%; height: 12px; }
.ps-h2.mini { height: 8px; }
.ps-btn.mini { width: 60px; height: 22px; border-radius: 5px; }
.ps-data-row { display: flex; gap: 8px; }
.ps-data-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 10px; text-align: center; }
.ps-num { font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.ps-dlabel { font-size: 0.6rem; color: var(--text-faint); margin-top: 2px; background: var(--surface-2); border-radius: 3px; height: 8px; }

/* Product cards */
.ps-product-row { display: flex; gap: 8px; margin-top: 8px; }
.ps-product-card { flex: 1; }
.ps-product-img { width: 100%; height: 60px; border-radius: 8px; }
.ps-product-line { height: 8px; background: rgba(0,0,0,0.1); border-radius: 3px; margin-top: 5px; }

/* App screen */
.ps-app-screen { display: flex; gap: 8px; height: 170px; }
.ps-app-sidebar { width: 36px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 8px; }
.ps-sidebar-item { width: 100%; height: 20px; background: var(--surface-2); border-radius: 4px; }
.ps-sidebar-item.active { background: var(--accent); opacity: 0.5; }
.ps-app-main { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.ps-app-topbar { display: flex; justify-content: space-between; align-items: center; }
.ps-app-title { width: 80px; height: 8px; background: var(--surface-2); border-radius: 4px; }
.ps-app-btn { width: 40px; height: 20px; background: var(--accent); opacity: 0.4; border-radius: 4px; }
.ps-app-kpis { display: flex; gap: 6px; }
.ps-kpi { flex: 1; background: var(--bg); border-radius: 6px; padding: 6px 8px; }
.ps-kpi-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; }
.ps-kpi-label { width: 100%; height: 5px; background: var(--surface-2); border-radius: 3px; margin-top: 2px; }
.ps-app-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.mini-bar { flex: 1; background: var(--surface-2); border-radius: 3px 3px 0 0; }
.mini-bar.accent { background: linear-gradient(to top, var(--accent), var(--accent-2)); }

.portfolio-info { padding: 24px; }
.pf-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.portfolio-info h3 { margin: 10px 0 10px; }
.portfolio-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.pf-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pf-meta span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pf-results { display: flex; gap: 24px; }
.pf-result { display: flex; flex-direction: column; }
.pf-result strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); }
.pf-result span { font-size: 0.75rem; color: var(--text-muted); }

.portfolio-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.portfolio-note { font-size: 0.82rem; color: var(--text-faint); }

/* ── TECH ────────────────────────────────── */
.tech-section { padding: 80px 0; border-top: 1px solid var(--border); }
.tech-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.tech-item:hover { border-color: var(--border-accent); color: var(--text); }
.tech-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ── PROCESS ─────────────────────────────── */
.process { padding: 120px 0; }
.process-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--step-fill-soft);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
}
.step-content { padding-bottom: 8px; }
.step-content h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.step-time {
  display: inline-block;
  background: var(--surface-2);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.process-connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--border-accent), var(--border));
  margin-left: 25px;
  opacity: 0;
}
.process-connector.visible { opacity: 1; }

/* ── PRICING CONFIGURATOR ───────────────── */
.pricing-configurator {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(65% 80% at 10% 20%, rgba(255, 0, 0, 0.22), transparent 70%),
    radial-gradient(55% 70% at 90% 80%, rgba(255, 95, 0, 0.18), transparent 70%),
    var(--bg);
}
.configurator-grid {
  display: block;
}
.config-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.config-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 16px;
}
.range-value {
  margin-top: 8px;
  color: var(--text);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1;
}
.config-summary {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}
.summary-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.summary-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.summary-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}
.summary-net {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 500;
}
.summary-time {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}
.summary-note {
  margin-top: 24px;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.config-btn {
  margin-top: 24px;
  min-width: 260px;
}
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--border-accent);
}

.addons-group {
  grid-column: 1 / -1;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  cursor: pointer;
}
.addon-item input {
  accent-color: var(--accent);
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials { padding: 120px 0; background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
  border-left: 2px solid var(--accent-glow);
  padding-left: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ── WHY US ──────────────────────────────── */
.why-us { padding: 120px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.why-left { position: sticky; top: 100px; }
.why-left .section-title { margin-bottom: 20px; }
.why-left p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 8px; }
.why-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,16,47,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  background: var(--surface);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-pretitle {
  display: block;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
.cta-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ── CONTACT ─────────────────────────────── */
.contact { padding: 120px 0; background: var(--bg-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-left { position: sticky; top: 100px; }
.contact-left .section-title { margin-bottom: 16px; }
.contact-left > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-item:hover { color: var(--accent); }
.contact-item:hover .ci-icon { border-color: var(--border-accent); background: var(--accent-glow); }
.ci-icon {
  width: 36px; height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-socials { display: flex; gap: 12px; }
.social-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--border-accent); color: var(--accent); background: rgba(255,16,47,0.05); }

/* Form */
.contact-form, .form-success {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-success { display: none; text-align: center; padding: 80px 40px; }
.form-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--success);
  margin: 0 auto 24px;
}
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-accent); box-shadow: 0 0 0 3px rgba(255,16,47,0.12); }
.form-group textarea { resize: vertical; }
.form-privacy { font-size: 0.75rem; color: var(--text-faint); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-faint); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 80px; max-width: 700px; gap: 48px; }
  .hero-visual { display: none; }
  .scroll-indicator { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 2; display: flex; flex-direction: column; }
  .portfolio-item.large .portfolio-screen { border-right: none; border-bottom: 1px solid var(--border); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-left { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-left { position: static; }
  .config-fields { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .summary-main { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-logo { font-size: 1.85rem; }
  .nav-links { display: none; }
  .theme-toggle { display: none; }
  .mobile-theme-toggle { display: inline-flex; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .hero { padding: 100px 24px 60px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .config-fields { grid-template-columns: 1fr; }
  .summary-price,
  .summary-time { font-size: 2rem; }
  body,
  body.custom-cursor-enabled { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 1.65rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form, .form-success { padding: 24px; }
  .addons-grid { grid-template-columns: 1fr; }
}



/* dzien-noc */


/* ── THEME SWITCH SUN / MOON ───────────────── */
.theme-switch {
  width: 48px;
  height: 48px;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.theme-icon {
  position: absolute;
  font-size: 1.35rem;
  line-height: 1;
  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.35s ease;
}

.theme-sun {
  opacity: 0;
  transform: rotate(-120deg) scale(0.45);
  filter: blur(3px);
}

.theme-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  filter: blur(0);
}

[data-theme="dark"] .theme-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  filter: blur(0);
}

[data-theme="dark"] .theme-moon {
  opacity: 0;
  transform: rotate(120deg) scale(0.45);
  filter: blur(3px);
}

.theme-switch:hover .theme-icon {
  transform: rotate(12deg) scale(1.08);
}

/* Płynne przejście między motywem jasnym i ciemnym */
html,
body,
.nav,
.nav-mobile,
.hero-badge,
.browser-mockup,
.browser-bar,
.browser-screen,
.service-card,
.portfolio-item,
.testimonial-card,
.pricing-card,
.contact-card,
.theme-toggle {
  transition:
    background-color 1s ease,
    color 1s ease,
    border-color 1s ease,
    box-shadow 1s ease;
}