  :root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111114;
    --bg-card: #16161a;
    --bg-card-hover: #1c1c21;
    --border: #2a2a30;
    --border-light: #35353d;
    --text-primary: #f0f0f2;
    --text-secondary: #9898a4;
    --text-muted: #6b6b78;
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.15);
    --accent-glow-strong: rgba(249, 115, 22, 0.3);
    --success: #22c55e;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── Noise overlay ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ── Animations ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 60px transparent; }
    50% { box-shadow: 0 0 30px var(--accent-glow-strong), 0 0 80px var(--accent-glow); }
  }
  @keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }
  @keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  .fade-up { animation: fadeUp 0.7s ease-out both; }
  .fade-up-d1 { animation-delay: 0.1s; }
  .fade-up-d2 { animation-delay: 0.2s; }
  .fade-up-d3 { animation-delay: 0.3s; }
  .fade-up-d4 { animation-delay: 0.4s; }
  .fade-up-d5 { animation-delay: 0.5s; }
  .fade-up-d6 { animation-delay: 0.6s; }

  /* ── Container ── */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ═══════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background: rgba(10, 10, 11, 0.8);
    border-bottom: 1px solid rgba(42, 42, 48, 0.5);
    transition: all 0.3s ease;
  }
  nav.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 11, 0.95);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-toggle {
    align-items: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s;
  }
  .nav-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--border-light);
  }
  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
  }
  .btn-primary {
    background: linear-gradient(135deg, #3669ed, #2952d6);
    color: #fff;
    box-shadow: 0 4px 20px rgba(54, 105, 237, 0.3);
    border-radius: 9999px;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(54, 105, 237, 0.4);
  }
  .btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
  }
  .btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
  }
  .btn-ghost:hover { color: var(--text-primary); }
  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .btn-primary.btn-large {
    border-radius: 9999px;
  }

  /* ═══════════════════════════════════════
     HERO
  ═══════════════════════════════════════ */
  .hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
  }


  @media screen and (max-width: 768px) {
    .hero {
      padding: 100px 0 0;
    }
  }

  /* Radial glow */
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Grid pattern */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent);
  }
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
  }
  .hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 .accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p, .hero h2 {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.4;
  }
  .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ── Hero visual / app screenshot ── */
  .hero-visual {
    margin: 70px 70px 0 70px;
    position: relative;
    z-index: 2;
  }

@media screen and (max-width: 768px) {
  .hero-visual {
    margin: 70px 10px 0 10px;
    position: relative;
    z-index: 2;
  }
}

  .hero-app-image {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: visible;
    box-shadow:
      0 40px 100px rgba(0, 0, 0, 0.5),
      0 0 80px var(--accent-glow),
      0 0 120px rgba(249, 115, 22, 0.08);
  }

  /* Minimal macOS-style browser outline (lines only) */
  .browser-window {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  .browser-window-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 12px;
    border-bottom: 1px solid var(--border);
    background: transparent;
  }
  .browser-window--compact .browser-window-chrome {
    min-height: 26px;
    padding: 0 10px;
    gap: 5px;
  }
  .browser-window-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /* border: 1px solid var(--border-light); */
    background: var(--border-light);
    opacity: 0.65;
  }
  .browser-window--compact .browser-window-dot {
    width: 6px;
    height: 6px;
  }
  .browser-window-body {
    line-height: 0;
    background: var(--bg-primary);
  }
  .browser-window-body img {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-app-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* Desktop: full width */
  .hero-app-mobile { display: none; }
  /* Mobile: narrower centered placeholder */
  @media (max-width: 768px) {
    .hero-app-desktop { display: none; }
    .hero-app-mobile {
      display: block;
      max-width: 320px;
      margin: 0 auto;
    }
    .hero-app-mobile .hero-app-mobile-placeholder {
      aspect-ratio: 9 / 16;
      background: transparent;
      border: none;
      border-radius: 0;
      display: flex;
      align-items: stretch;
      justify-content: center;
      overflow: hidden;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .hero-app-mobile .browser-window {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      border-radius: 8px;
    }
    .hero-app-mobile .browser-window-body {
      flex: 1;
      min-height: 0;
      overflow: hidden;
    }
    .hero-app-mobile .browser-window-body img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
  }
  .app-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
  }
  .app-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--border-light);
  }
  .app-dot:nth-child(1) { background: #ef4444; }
  .app-dot:nth-child(2) { background: #eab308; }
  .app-dot:nth-child(3) { background: #22c55e; }
  .app-bar-title {
    margin-left: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  .app-body {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-height: 300px;
  }
  .app-column {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
  }
  .col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .col-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
  }
  .col-count {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2px 9px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
  }
  .equipment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.2s;
    border-left: 3px solid var(--border);
  }
  .equipment-card.eq-wear-ok { border-left-color: #22c55e; }
  .equipment-card.eq-wear-warn { border-left-color: #eab308; }
  .equipment-card.eq-wear-replace { border-left-color: #ef4444; }
  .equipment-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
  }
  .eq-name {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .eq-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .eq-wear {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--wear, #888);
    padding: 2px 6px;
    border-radius: 4px;
    background: color-mix(in srgb, var(--wear) 25%, transparent);
  }
  .eq-category {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--cat, #888);
    padding: 2px 6px;
    border-radius: 4px;
    background: color-mix(in srgb, var(--cat) 25%, transparent);
  }
  .eq-id {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: monospace;
  }
  .eq-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
  }
  .tag-active { background: rgba(34,197,94,0.15); color: #4ade80; }
  .tag-transit { background: rgba(59,130,246,0.15); color: #60a5fa; }
  .tag-service { background: rgba(249,115,22,0.15); color: var(--accent-light); }
  .tag-warehouse { background: rgba(168,85,247,0.15); color: #c084fc; }

  /* ═══════════════════════════════════════
     CARDS CAROUSEL
  ═══════════════════════════════════════ */
  .cards-carousel-section {
    padding: 0 0 100px;
  }
  .cards-carousel-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cards-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    margin-bottom: 28px;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .carousel-card {
    flex: 0 0 100%;
    min-width: 0;
  }
  .carousel-card-inner {
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  @media (min-width: 768px) {
    .cards-carousel {
      max-width: 60%;
    }
    .carousel-controls {
      max-width: 60%;
      width: 100%;
    }
  }
  .carousel-card.active .carousel-card-inner {
    box-shadow: 0 0 40px var(--accent-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  .carousel-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .carousel-controls {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
  }
  .carousel-arrows-col {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }
  .carousel-arrow {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .carousel-arrow:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
  }
  .carousel-arrow:active {
    transform: scale(0.98);
  }
  .carousel-desc-col {
    min-height: 72px;
  }
  .carousel-descriptions {
    min-height: 72px;
  }
  .carousel-desc {
    display: none;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    animation: fadeIn 0.4s ease-out;
  }
  .carousel-desc.active {
    display: block;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .carousel-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .carousel-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
  }
  .carousel-dot:hover::after {
    background: var(--border-light);
  }
  .carousel-dot.active::after {
    background: var(--accent);
    transform: scale(1.2);
  }
  @media (max-width: 600px) {
    .carousel-controls {
      grid-template-columns: 1fr;
    }
  }

  /* ═══════════════════════════════════════
     LOGOS / SOCIAL PROOF BAR
  ═══════════════════════════════════════ */
  .logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .logos-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 32px;
  }
  .logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.4;
  }
  .logo-placeholder {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
  }

  /* ═══════════════════════════════════════
     SECTION COMMONS
  ═══════════════════════════════════════ */
  section { padding: 100px 0; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .section-label .line {
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
  }
  .section-header { margin-bottom: 56px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-subtitle {
    margin: 0 auto;
  }

  /* ═══════════════════════════════════════
     CO ROBI / CZEGO NIE ROBI
  ═══════════════════════════════════════ */
  .does-doesnt-section {
    padding: 100px 0;
  }
  .does-doesnt-section .section-header { margin-bottom: 40px; }
  .does-doesnt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }
  .does-doesnt-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
  }
  .does-doesnt-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .does-card h3 { color: var(--success); }
  .doesnt-card h3 { color: var(--text-muted); }
  .does-doesnt-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .does-doesnt-card li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
  }
  .does-doesnt-card li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 700;
  }
  .does-card li::before { color: var(--success); }
  @media (max-width: 768px) {
    .does-doesnt-grid { grid-template-columns: 1fr; }
    .does-doesnt-section { padding: 60px 0; }
  }

  /* ═══════════════════════════════════════
     FEATURES
  ═══════════════════════════════════════ */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgb(145 145 145 / 15%);
    /* border: 1px solid rgb(196 196 196 / 20%); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
  }
  .features-tagline {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: center;
    max-width: 720px;
    margin: 48px auto 0;
  }

  /* ═══════════════════════════════════════
     STATS / PROOF
  ═══════════════════════════════════════ */
  .stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat-item { text-align: center; }
  .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .stat-number .accent-num {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════ */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
  }
  .testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
  }
  .testimonial-stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-glow), var(--bg-card));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
  }
  .author-name {
    font-weight: 600;
    font-size: 0.88rem;
  }
  .author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  /* ═══════════════════════════════════════
     PRICING
  ═══════════════════════════════════════ */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }
  .pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
  }
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow), 0 20px 60px rgba(0,0,0,0.4);
    background: linear-gradient(180deg, rgba(249,115,22,0.05), var(--bg-secondary));
  }
  .pricing-card.featured:hover {
    box-shadow: 0 0 50px var(--accent-glow-strong), 0 30px 80px rgba(0,0,0,0.4);
  }
  .pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3669ed, #2952d6);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
  }
  .pricing-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
  }
  .price-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }
  .price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  .pricing-billing {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .pricing-option {
    margin-bottom: 4px;
    line-height: 1.5;
  }
  .pricing-option-monthly {
    color: var(--text-muted);
  }
  .pricing-option-annual {
    color: var(--text-secondary);
  }
  .pricing-savings {
    margin: 10px 0;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
  }
  .pricing-card.featured .pricing-savings {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
  }
  .pricing-features {
    list-style: none;
    margin-bottom: 32px;
  }
  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
  }
  .pricing-features li .check {
    color: var(--accent);
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
  }
  .pricing-card .btn { width: 100%; justify-content: center; }

  /* ═══════════════════════════════════════
     HOW IT WORKS
  ═══════════════════════════════════════ */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    opacity: 0.4;
  }
  .step-item { text-align: center; position: relative; z-index: 1; }
  .step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 20px;
  }
  .step-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .step-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
  }

  /* ═══════════════════════════════════════
     CTA
  ═══════════════════════════════════════ */
  .cta-section {
    padding: 0 0 120px;
  }
  .cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-box > * { position: relative; z-index: 1; }
  .cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .cta-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════
     BLOG / PORADY
  ═══════════════════════════════════════ */
  .blog-page {
    padding: 120px 0 100px;
    min-height: 60vh;
  }
  .blog-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .blog-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }
  .blog-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .blog-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  .blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-card);
  }
  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }
  .blog-card-content {
    padding: 24px;
  }
  .blog-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
  }
  .blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .blog-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
  }
  .blog-card:hover .blog-card-cta {
    text-decoration: underline;
  }

  /* ── Single post ── */
  .post-page {
    padding: 120px 0 80px;
  }
  .post-article {
    max-width: 720px;
    margin: 0 auto;
  }
  .post-header {
    margin-bottom: 48px;
  }
  .post-back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s;
  }
  .post-back:hover {
    color: var(--accent);
  }
  .post-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .post-hero-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 40px;
  }
  .post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .post-content {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .post-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
  }
  .post-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .post-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .post-content ul {
    margin: 0 0 20px 20px;
    padding: 0;
  }
  .post-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
  }
  .post-box {
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid var(--border);
  }
  .post-box-problems {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
  }
  .post-box-problems h3 { color: #f87171; }
  .post-box-solutions {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
  }
  .post-box-solutions h3 { color: #4ade80; }
  .post-tip,
  .post-highlight {
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px 0;
    border-left: 4px solid var(--accent);
    background: var(--accent-glow);
  }
  .post-tip strong,
  .post-highlight strong {
    color: var(--text-primary);
  }
  .post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  /* ═══════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════ */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
  }
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  .footer-made-in-poland {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-flag {
    font-size: 1.1em;
  }
  .footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
  }

  @media (max-width: 991.98px){
  	.footer-links {
      flex-wrap: wrap;
    }
  }
  .footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--text-secondary); }
  .footer-email {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-email:hover { color: var(--text-secondary); }

  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    .features-grid, .testimonials-grid, .pricing-grid, .steps-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .app-body {
      grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid::before { display: none; }
  }

  /* Mobile nav: hamburger + dropdown, smaller logo, Logowanie always visible */
  @media (max-width: 900px) {
    .nav-inner {
      flex-wrap: wrap;
      position: relative;
    }
    .logo {
      font-size: 1.1rem;
    }
    .logo-icon {
      width: 28px;
      height: 28px;
    }
    .logo-icon img {
      width: 24px;
      height: 24px;
    }
    .nav-cta {
      order: 2;
      margin-left: auto;
    }
    .nav-toggle {
      display: flex;
      order: 3;
    }
    .nav-dropdown {
      order: 4;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      margin-top: 12px;
      background: rgba(10, 10, 11, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 12px;
    }
    nav.nav-open .nav-dropdown {
      max-height: 320px;
    }
    .nav-dropdown .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 16px 24px 24px;
    }
    .nav-dropdown .nav-links li {
      border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .nav-links li:last-child {
      border-bottom: none;
    }
    .nav-dropdown .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 1rem;
    }
    .nav-dropdown .nav-links a::after {
      display: none;
    }
  }
  @media (max-width: 600px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
    .app-body {
      grid-template-columns: 1fr;
    }
  }
