﻿/* ═══ s1_hero.html ═══ */

  :root {
    /* ── Nowa paleta: niebieski → zielony ── */
    --blue:        #3a5bd9;
    --blue-mid:    #2e86c1;
    --teal:        #1aab8a;
    --green:       #1fc88a;
    --grad:        linear-gradient(120deg, #3a5bd9 0%, #1aab8a 100%);
    --grad-btn:    linear-gradient(120deg, #3a5bd9 0%, #1aab8a 100%);
    --accent:      #2ecfa0;
    --accent-dim:  rgba(46,207,160,0.12);
    --accent-border: rgba(46,207,160,0.3);

    /* ── Neutralne ── */
    --dark:        #0b1117;
    --dark2:       #101820;
    --mid:         #152030;
    --text:        #e8f0ee;
    --text-muted:  #7a9ea5;
    --white:       #ffffff;
  }

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

  .grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(46,207,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,207,160,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  html { scroll-behavior: smooth; }

.site-footer {
  background: #0d1929;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 56px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
}


  body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ─────────────────────────────────────────
     NAV
  ───────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 56px;
    height: 68px;
    background: rgba(11,17,23,0.88);
    backdrop-filter: blur(18px) saturate(1.5);
    border-bottom: 1px solid rgba(46,207,160,0.1);
  }

  .logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
  .logo-shield { width: 36px; height: 40px; flex-shrink: 0; }
  .logo-shield svg { width: 100%; height: 100%; }
  .logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
  .logo-wordmark .brand {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 1.25rem; color: var(--white); letter-spacing: -0.01em;
  }
  .logo-wordmark .sub {
    font-size: 0.67rem; color: var(--text-muted);
    letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px;
  }

  .nav-center { display: flex; gap: 4px; align-items: center; }
  .nav-center a {
    color: var(--text-muted); text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem; font-weight: 300;
    letter-spacing: 0.02em;
    padding: 8px 14px; border-radius: 8px;
    position: relative;
    transition: color 0.2s, background 0.2s;
  }
  .nav-center a:hover {
    color: var(--text); background: rgba(255,255,255,0.05);
  }

  .nav-right { display: flex; align-items: center; gap: 12px; }
  .btn-login {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.875rem; padding: 8px 16px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
  }
  .btn-login:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
  .btn-cta-nav {
    background: var(--grad-btn); color: #fff; text-decoration: none;
    font-size: 0.875rem; font-weight: 600; padding: 9px 20px; border-radius: 8px;
    transition: opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 16px rgba(58,91,217,0.3);
    white-space: nowrap;
  }
  .btn-cta-nav:hover { opacity: 0.9; box-shadow: 0 4px 24px rgba(58,91,217,0.45); }

  /* ─────────────────────────────────────────
     HERO
  ───────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    padding: 68px 0 0 56px;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-right {
    position: absolute; top: 0; right: 0;
    width: 56%; height: 100%;
    background: linear-gradient(150deg, #152236 0%, #0d2a3a 40%, #0b2a20 100%);
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
  }
  .hero-bg-right::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(46,207,160,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,207,160,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-glow {
    position: absolute; top: 20%; right: 15%;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,171,138,0.14) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
  }
  .hero-glow2 {
    position: absolute; top: 50%; right: 40%;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(58,91,217,0.1) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
  }

  /* ── LEWA KOLUMNA ── */
  .hero-left {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 184px 80px 0;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent); padding: 7px 15px; border-radius: 100px;
    font-size: 0.74rem; font-weight: 600; letter-spacing: 0.07em;
    text-transform: uppercase; margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.55s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 6px var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(0.65); }
  }

  .hero h1 {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.07; letter-spacing: -0.01em;
    margin-bottom: 22px;
    animation: fadeUp 0.55s 0.08s ease both;
  }
  .hero h1 .grad-text {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: 1.05rem; line-height: 1.78;
    color: #e8edf2; max-width: 100%;
    margin-bottom: 36px; font-weight: 300;
    animation: fadeUp 0.55s 0.16s ease both;
  }

  .hero-cta {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeUp 0.55s 0.24s ease both;
  }
  .btn-primary {
    background: var(--grad-btn); color: #fff;
    padding: 15px 30px; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 28px rgba(58,91,217,0.4);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { opacity:.92; transform:translateY(-2px); box-shadow:0 8px 36px rgba(58,91,217,0.5); }

  .btn-demo {
    color: var(--text); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,0.13); border-radius: 10px;
    transition: all 0.2s;
  }
  .btn-demo:hover { border-color: var(--accent); color: var(--accent); }
  .btn-demo-play {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(46,207,160,0.12); border: 1px solid rgba(46,207,160,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
  }

  .hero-trust {
    display: flex; gap: 20px; flex-wrap: wrap;
    animation: fadeUp 0.55s 0.32s ease both;
  }
  .trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.8rem; color: var(--text-muted);
  }
  .trust-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.58rem; color: var(--accent); flex-shrink: 0;
  }

  /* ── PRAWA KOLUMNA ── */
  .hero-right {
    position: relative; z-index: 2;
    margin-top: -68px;
    margin-left: -75px;
    overflow: hidden;
    animation: fadeUp 0.65s 0.18s ease both;
  }
  .hero-right-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .hero-right-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(11,17,23,0.92) 0%, rgba(11,17,23,0.6) 60%, transparent 100%);
    display: flex; flex-direction: column; gap: 14px;
  }
  .stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-card {
    background: rgba(11,17,23,0.55);
    border: 1px solid rgba(46,207,160,0.13);
    border-radius: 14px; padding: 22px 20px;
    backdrop-filter: blur(6px);
    transition: border-color .25s, transform .25s, background .25s;
    cursor: default;
  }
  .hero-image-card {
    padding: 0 !important;
    overflow: hidden;
  }
  .hero-image-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block; border-radius: 13px;
  }
    border-color: rgba(46,207,160,0.38);
    background: rgba(46,207,160,0.05);
    transform: translateY(-3px);
  }
  .stat-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 2rem; line-height: 1; margin-bottom: 6px;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

  .hero-right-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 28px 24px;
    background: linear-gradient(to top, rgba(11,17,23,0.88) 0%, transparent 100%);
  }
  .hero-trust-overlay {
    display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  }
  .trust-item-overlay {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: #fff; font-weight: 500;
  }
  .trust-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; color: var(--accent); flex-shrink: 0;
  }

  .compliance-card {
    border-radius: 14px; padding: 20px 22px;
    display: flex; align-items: center; gap: 16px;
    background: linear-gradient(120deg, rgba(58,91,217,0.18) 0%, rgba(26,171,138,0.18) 100%);
    border: 1px solid rgba(46,207,160,0.25);
    backdrop-filter: blur(6px);
    transition: border-color .2s;
  }
  .compliance-card:hover { border-color: rgba(46,207,160,0.5); }
  .compliance-shield {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--grad); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .compliance-text { flex: 1; }
  .compliance-text strong { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 3px; }
  .compliance-text span { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
  .compliance-pill {
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    color: var(--accent); font-size: .7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
    letter-spacing: .07em; white-space: nowrap; flex-shrink: 0;
  }

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

  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
/* ═══ s2_pain_points.html ═══ */

  :root {
    --blue:        #3a5bd9;
    --teal:        #1aab8a;
    --grad:        linear-gradient(120deg, #3a5bd9 0%, #1aab8a 100%);
    --accent:      #2ecfa0;
    --accent-dim:  rgba(46,207,160,0.1);
    --accent-border: rgba(46,207,160,0.25);
    --dark:        #0b1117;
    --dark2:       #0e1520;
    --mid:         #131e2a;
    --card-bg:     #111a24;
    --text:        #e8f0ee;
    --text-muted:  #7a9ea5;
  }

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

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
  }

  /* ─── SEKCJA ─── */
  .pain-section {
    padding: 24px 56px 100px;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
  }

  /* prawa strona jaśniejsza jak w hero */
  .pain-section::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(150deg, #152236 0%, #0d2a3a 40%, #0b2a20 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
  }

  .section-header,
  .pain-grid,
  .pain-footer { position: relative; z-index: 1; }

  /* siatka tylko na ciemnym tle */
  .pain-section .grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(46,207,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,207,160,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* ─── NAGŁÓWEK ─── */
  .section-header {
    max-width: 100%;
    margin-bottom: 64px;
  }
  .section-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.1em; font-weight: 600;
    color: var(--accent); margin-bottom: 14px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 28px; height: 2px;
    background: var(--grad);
    border-radius: 2px;
  }
  .section-label span {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 1.25rem; text-transform: none; letter-spacing: -0.01em;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
  .section-label .grad {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-title {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.07; letter-spacing: -0.01em;
    color: var(--text);
  }
  .section-title strong {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
  }

  /* ─── GRID ─── */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* ─── KARTA ─── */
  .pain-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
    cursor: pointer;
  }
  .pain-card:hover {
    transform: translateY(-3px);
  }
  .pain-card:active {
    transform: translateY(1px);
  }

  /* numer w tle */
  .pain-card::before {
    content: attr(data-num);
    position: absolute; top: -14px; right: 20px;
    font-family: 'Exo 2', sans-serif; font-weight: 700;
    font-size: 6rem; line-height: 1;
    color: rgba(46,207,160,0.05);
    pointer-events: none;
    user-select: none;
  }

  /* pasek górny z gradientem */
  .pain-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px 16px 0 0;
  }
  .pain-card:hover::after { opacity: 1; }

  .pain-icon {
    width: 52px; height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: background 0.3s;
  }
  .pain-card:hover .pain-icon {
    background: rgba(46,207,160,0.18);
  }

  .pain-card h3 {
    font-family: 'Exo 2', sans-serif; font-weight: 400;
    font-size: 1.15rem; line-height: 1.3;
    margin-bottom: 12px; color: var(--text);
  }

  .pain-card p {
    font-size: 1.08rem; line-height: 1.75;
    color: #e8edf2; font-weight: 300;
  }

  /* tag "problem" */
  .pain-tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 18px;
    background: rgba(58,91,217,0.12);
    border: 1px solid rgba(58,91,217,0.25);
    color: #7b9cf5;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
  }

  /* ─── DOLNY PASEK ─── */
  .pain-footer {
    margin-top: 37px;
    display: flex; align-items: center; gap: 14px;
  }
  .pain-footer-btn-primary {
    background: var(--grad); color: #fff; text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    padding: 15px 30px; border-radius: 10px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 28px rgba(58,91,217,0.4);
  }
  .pain-footer-btn-primary:hover { opacity:.92; transform:translateY(-2px); box-shadow:0 8px 36px rgba(58,91,217,0.5); }
  .pain-footer-btn-ghost {
    color: var(--text); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,0.13); border-radius: 10px;
    transition: all 0.2s;
  }
  .pain-footer-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .pain-demo-play {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(46,207,160,0.12); border: 1px solid rgba(46,207,160,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
  }

  /* ─── ANIMACJA ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .pain-card { animation: fadeUp 0.5s ease both; }
  .pain-card:nth-child(1) { animation-delay: 0.0s; }
  .pain-card:nth-child(2) { animation-delay: 0.1s; }
  .pain-card:nth-child(3) { animation-delay: 0.2s; }
/* ═══ s3_funkcje.html ═══ */

  :root {
    --blue:          #3a5bd9;
    --teal:          #1aab8a;
    --grad:          linear-gradient(120deg, #3a5bd9 0%, #1aab8a 100%);
    --accent:        #2ecfa0;
    --accent-dim:    rgba(46,207,160,0.1);
    --accent-border: rgba(46,207,160,0.25);
    --dark:          #0b1117;
    --dark2:         #0e1520;
    --card-bg:       #111a24;
    --card-bg2:      #0f1e2a;
    --text:          #e8f0ee;
    --text-muted:    #7a9ea5;
  }

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

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark2);
    color: var(--text);
    min-height: 100vh;
  }

  /* ─── SEKCJA ─── */
  .features-section {
    padding: 80px 56px 100px;
    position: relative;
    overflow: hidden;
  }

  /* prawa strona jaśniejsza jak w hero */
  .features-section::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(150deg, #152236 0%, #0d2a3a 40%, #0b2a20 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
  }

  /* siatka w tle */
  .grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(46,207,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,207,160,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* ─── NAGŁÓWEK ─── */
  .section-header {
    position: relative; z-index: 1;
    margin-bottom: 64px;
  }
  .section-label {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 28px; height: 2px;
    background: var(--grad); border-radius: 2px;
  }
  .section-label span {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 1.25rem; letter-spacing: -0.01em;
    color: #fff;
  }
  .section-label .grad {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-title {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.07; letter-spacing: -0.01em;
  }
  .section-title strong {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 600;
  }

  /* ─── GRID KART ─── */
  .features-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* ─── KARTA ─── */
  .feat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    cursor: pointer;
  }
  .feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
  }
  .feat-card:hover::after { opacity: 1; }

  /* pasek gradientu z góry */
  .feat-card { position: relative; }
  .feat-card .top-bar {
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .feat-card:hover .top-bar { opacity: 1; }

  /* mockup / ilustracja */
  .feat-mockup {
    background: var(--card-bg2);
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  /* glow w tle mockupu */
  .feat-mockup::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(46,207,160,0.1) 0%, transparent 65%);
  }

  /* UI mockup — pasek narzędzi */
  .mockup-ui {
    width: 88%; height: 82%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative; z-index: 1;
  }
  .mockup-topbar {
    height: 32px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 6px;
    padding: 0 12px;
  }
  .mockup-dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .mockup-dot:nth-child(1) { background: rgba(255,100,100,0.5); }
  .mockup-dot:nth-child(2) { background: rgba(255,200,50,0.5); }
  .mockup-dot:nth-child(3) { background: rgba(50,200,100,0.5); }
  .mockup-title-bar {
    flex: 1; height: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px; margin: 0 12px;
  }
  .mockup-body {
    flex: 1; padding: 14px;
    display: flex; flex-direction: column; gap: 8px;
  }

  /* wiersze tabeli */
  .mock-row {
    display: flex; align-items: center; gap: 10px;
    height: 26px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px; padding: 0 10px;
  }
  .mock-row-dot {
    width: 7px; height: 7px; border-radius: 50%;
    flex-shrink: 0;
  }
  .mock-row-line {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.08);
    flex: 1;
  }
  .mock-row-badge {
    height: 16px; width: 48px; border-radius: 4px;
    flex-shrink: 0;
  }

  /* kalendarz */
  .mock-calendar {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px; padding: 4px;
  }
  .mock-cal-cell {
    height: 18px; border-radius: 4px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.45rem; color: rgba(255,255,255,0.3);
  }
  .mock-cal-cell.active {
    background: var(--grad); color: #fff;
  }
  .mock-cal-cell.alert {
    background: rgba(255,100,80,0.25);
    border: 1px solid rgba(255,100,80,0.4);
    color: rgba(255,150,130,0.8);
  }

  /* powiadomienia */
  .mock-notif {
    display: flex; align-items: flex-start; gap: 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px; padding: 8px 10px;
    border-left: 3px solid;
  }
  .mock-notif-icon {
    width: 22px; height: 22px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; flex-shrink: 0;
  }
  .mock-notif-lines { display: flex; flex-direction: column; gap: 4px; flex: 1; }
  .mock-notif-line {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.1);
  }
  .mock-notif-line.short { width: 55%; }

  /* historia — timeline */
  .mock-timeline {
    display: flex; flex-direction: column; gap: 6px;
    padding: 4px 0;
  }
  .mock-tl-item {
    display: flex; align-items: center; gap: 8px;
  }
  .mock-tl-dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 2px solid; flex-shrink: 0;
  }
  .mock-tl-line-v {
    position: absolute; left: 4px; top: 10px;
    width: 2px; height: calc(100% - 10px);
    background: rgba(255,255,255,0.08);
  }
  .mock-tl-text {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.1);
    flex: 1;
  }
  .mock-tl-date {
    height: 6px; width: 36px; border-radius: 3px;
    background: rgba(255,255,255,0.06); flex-shrink: 0;
  }

  /* dokumenty */
  .mock-docs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .mock-doc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 8px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .mock-doc-icon {
    font-size: 1rem; margin-bottom: 2px;
  }
  .mock-doc-line {
    height: 5px; border-radius: 3px;
    background: rgba(255,255,255,0.1);
  }
  .mock-doc-line.short { width: 60%; }

  /* ─── TREŚĆ KARTY ─── */
  .feat-content {
    padding: 28px 30px 30px;
  }
  .feat-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
    text-transform: uppercase;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    padding: 4px 11px; border-radius: 100px;
    margin-bottom: 14px;
  }
  .feat-title {
    font-family: 'Exo 2', sans-serif; font-weight: 400;
    font-size: 1.35rem; line-height: 1.25;
    margin-bottom: 10px; color: var(--text);
  }
  .feat-desc {
    font-size: 0.9rem; line-height: 1.75;
    color: #e8edf2; font-weight: 300;
  }

  /* bullet lista */
  .feat-bullets {
    margin-top: 16px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .feat-bullet {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 0.85rem; color: var(--text-muted);
  }
  .feat-bullet-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; color: var(--accent);
    flex-shrink: 0; margin-top: 2px;
  }

  /* ─── PRZYCISKI DOLNE ─── */
  .features-footer {
    position: relative; z-index: 1;
    margin-top: 48px;
    display: flex; align-items: center; gap: 14px;
  }
  .btn-primary {
    background: var(--grad); color: #fff; text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    padding: 15px 30px; border-radius: 10px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 28px rgba(58,91,217,0.4);
  }
  .btn-primary:hover { opacity:.92; transform:translateY(-2px); box-shadow:0 8px 36px rgba(58,91,217,0.5); }
  .btn-ghost {
    color: var(--text); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
    padding: 15px 22px;
    border: 1px solid rgba(255,255,255,0.13); border-radius: 10px;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .btn-play {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(46,207,160,0.12); border: 1px solid rgba(46,207,160,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .feat-card { animation: fadeUp 0.5s ease both; }
  .feat-card:nth-child(1) { animation-delay: 0.0s; }
  .feat-card:nth-child(2) { animation-delay: 0.1s; }
  .feat-card:nth-child(3) { animation-delay: 0.2s; }
  .feat-card:nth-child(4) { animation-delay: 0.3s; }
/* ═══ s4_cennik.html ═══ */

  :root {
    --blue:          #3a5bd9;
    --teal:          #1aab8a;
    --grad:          linear-gradient(120deg, #3a5bd9 0%, #1aab8a 100%);
    --accent:        #2ecfa0;
    --accent-dim:    rgba(46,207,160,0.1);
    --accent-border: rgba(46,207,160,0.25);
    --dark:          #0b1117;
    --dark2:         #0e1520;
    --card-bg:       #111a24;
    --text:          #e8f0ee;
    --text-muted:    #7a9ea5;
  }

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

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark2);
    color: var(--text);
    min-height: 100vh;
  }

  /* ─── SEKCJA ─── */
  .pricing-section {
    padding: 80px 56px 100px;
    position: relative;
    overflow: hidden;
  }

  /* prawa strona jaśniejsza jak w innych sekcjach */
  .pricing-section::after {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(150deg, #152236 0%, #0d2a3a 40%, #0b2a20 100%);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0; pointer-events: none;
  }

  .grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(46,207,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(46,207,160,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* ─── NAGŁÓWEK ─── */
  .section-header {
    position: relative; z-index: 1;
    text-align: left;
    margin-bottom: 48px;
  }
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 28px; height: 2px;
    background: var(--grad); border-radius: 2px;
  }
  .section-label::after { display: none; }
  .section-label span {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 1.25rem; letter-spacing: -0.01em; color: #fff;
  }
  .section-label .grad {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-title {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: clamp(3rem, 4.8vw, 5rem);
    line-height: 1.07; letter-spacing: -0.01em;
  }
  .section-title strong {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 600;
  }

  /* ─── PRZEŁĄCZNIK ─── */
  .billing-toggle {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: flex-start;
    gap: 16px; margin-bottom: 56px;
  }
  .billing-label {
    font-size: 1.14rem; color: var(--text-muted);
    transition: color 0.2s;
  }
  .billing-label.active { color: var(--text); font-weight: 500; }

  .toggle-wrap {
    width: 62px; height: 34px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    position: relative; cursor: pointer;
    transition: background 0.3s;
  }
  .toggle-wrap.annual { background: var(--grad); }
  .toggle-knob {
    position: absolute; top: 4px; left: 4px;
    width: 24px; height: 24px; border-radius: 50%;
    background: #fff;
    transition: transform 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }
  .toggle-wrap.annual .toggle-knob { transform: translateX(28px); }

  .save-badge {
    background: rgba(46,207,160,0.15);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 0.86rem; font-weight: 600;
    padding: 4px 12px; border-radius: 100px;
    opacity: 0; transition: opacity 0.3s;
  }
  .save-badge.visible { opacity: 1; }

  /* ─── GRID KART ─── */
  .pricing-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  /* ─── KARTA ─── */
  .price-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
  }
  .price-card .plan-btn {
    margin-top: auto;
  }
  .price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46,207,160,0.2);
  }

  /* karta wyróżniona (Professional) */
  .price-card.featured {
    border-color: rgba(58,91,217,0.4);
    background: linear-gradient(160deg, #131e30 0%, #111a24 100%);
    transform: scale(1.03);
    padding-top: 56px;
  }
  .price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

  /* pasek gradientu z góry */
  .price-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 20px 20px 0 0;
  }
  .price-card:hover::before,
  .price-card.featured::before { opacity: 1; }

  /* badge "Najpopularniejszy" — poziomy pasek nad kartą */
  .popular-badge {
    position: absolute; top: -1px; left: -1px; right: -1px;
    background: var(--grad);
    color: #fff;
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 0.8rem; letter-spacing: -0.01em;
    padding: 7px 0;
    text-align: center;
    border-radius: 20px 20px 0 0;
  }

  /* nazwa planu */
  .plan-name {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 3.2rem; line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 8px;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .plan-desc {
    font-size: 0.85rem; color: #e8edf2;
    line-height: 1.6; margin-bottom: 28px;
  }

  /* cena */
  .plan-price {
    margin-bottom: 28px;
  }
  .price-amount {
    font-family: 'Exo 2', sans-serif; font-weight: 300;
    font-size: 3.2rem; line-height: 1; letter-spacing: -0.02em;
    color: var(--text);
  }
  .price-amount .currency {
    font-size: 1.4rem; vertical-align: top;
    margin-top: 8px; display: inline-block;
    color: var(--text-muted);
  }
  .price-amount .period {
    font-size: 0.85rem; color: var(--text-muted);
    font-family: 'Outfit', sans-serif; font-weight: 400;
  }
  .price-annual {
    font-size: 0.78rem; color: var(--accent);
    margin-top: 4px; min-height: 18px;
    transition: opacity 0.3s;
  }

  /* separator */
  .plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 24px;
  }

  /* lista funkcji */
  .plan-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px;
  }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: #e8edf2; line-height: 1.5;
  }
  .plan-features li .feat-note {
    color: var(--accent);
    font-size: 0.78rem;
    font-style: italic;
    font-weight: 400;
  }
  .plan-features li .check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; color: var(--accent);
    flex-shrink: 0; margin-top: 1px;
  }
  .plan-features li.muted .check {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.2);
  }
  .plan-features li.muted { opacity: 0.4; }

  /* przycisk */
  .plan-btn {
    display: block; width: 100%;
    text-align: center; text-decoration: none;
    padding: 14px 20px; border-radius: 10px;
    font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s;
  }
  .plan-btn.outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text);
  }
  .plan-btn.outline:hover {
    border-color: var(--accent); color: var(--accent);
  }
  .plan-btn.primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 4px 24px rgba(58,91,217,0.35);
  }
  .plan-btn.primary:hover {
    opacity: 0.9; transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(58,91,217,0.5);
  }
  .plan-btn.ghost {
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
  }
  .plan-btn.ghost:hover {
    border-color: rgba(255,255,255,0.25); color: var(--text);
  }

  /* dolna notatka */
  .pricing-note {
    position: relative; z-index: 1;
    margin-top: 40px;
    text-align: center;
    font-size: 0.95rem; color: var(--text-muted);
    line-height: 1.8;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .price-card { animation: fadeUp 0.5s ease both; }
  .price-card:nth-child(1) { animation-delay: 0.0s; }
  .price-card:nth-child(2) { animation-delay: 0.1s; }
  .price-card:nth-child(3) { animation-delay: 0.2s; }
/* ═══ s6_kontakt_footer.html ═══ */

  :root {
    --blue:#3a5bd9;--teal:#1aab8a;
    --grad:linear-gradient(120deg,#3a5bd9 0%,#1aab8a 100%);
    --accent:#2ecfa0;--accent-dim:rgba(46,207,160,0.1);
    --accent-border:rgba(46,207,160,0.25);
    --dark:#0b1117;--dark2:#0e1520;--card-bg:#111a24;
    --text:#e8f0ee;--text-muted:#7a9ea5;
  }
  *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
  body{font-family:'Outfit',sans-serif;background:var(--dark);color:var(--text);min-height:100vh;}

  .contact-section{padding:100px 56px;position:relative;overflow:hidden;background:var(--dark2);}
  .contact-section::after{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:linear-gradient(150deg,#152236 0%,#0d2a3a 40%,#0b2a20 100%);clip-path:polygon(6% 0,100% 0,100% 100%,0 100%);z-index:0;pointer-events:none;}
  .grid-bg{position:absolute;inset:0;z-index:0;background-image:linear-gradient(rgba(46,207,160,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(46,207,160,0.03) 1px,transparent 1px);background-size:60px 60px;pointer-events:none;}

  .contact-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}

  .section-label{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
  .section-label::before{content:'';display:block;width:28px;height:2px;background:var(--grad);border-radius:2px;}
  .section-label span{font-family:'Exo 2',sans-serif;font-weight:300;font-size:1.25rem;letter-spacing:-0.01em;color:#fff;}
  .section-label .grad{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}

  .contact-title{font-family:'Exo 2',sans-serif;font-weight:300;font-size:clamp(3rem,4.8vw,5rem);line-height:1.07;letter-spacing:-0.01em;margin-bottom:20px;}
  .contact-title strong{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;font-weight:600;}
  .contact-desc{font-size:1rem;line-height:1.75;color:#e8edf2;font-weight:300;margin-bottom:44px;max-width:420px;}

  .contact-info{display:flex;flex-direction:column;gap:20px;margin-bottom:44px;}
  .info-item{display:flex;align-items:flex-start;gap:16px;}
  .info-icon{width:44px;height:44px;border-radius:12px;background:var(--accent-dim);border:1px solid var(--accent-border);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;transition:background 0.2s;}
  .info-item:hover .info-icon{background:rgba(46,207,160,0.18);}
  .info-label{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.08em;color:var(--text-muted);margin-bottom:3px;font-weight:600;}
  .info-value{font-size:0.95rem;color:var(--text);}
  .info-value a{color:var(--accent);text-decoration:none;}

  .hours-block{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:20px 24px;display:flex;flex-direction:column;gap:10px;}
  .hours-title{font-family:'Exo 2',sans-serif;font-weight:300;font-size:0.95rem;color:var(--text);margin-bottom:4px;display:flex;align-items:center;gap:8px;}
  .hours-row{display:flex;justify-content:space-between;align-items:center;font-size:0.85rem;}
  .hours-day{color:var(--text-muted);}
  .hours-time{color:var(--text);font-weight:500;}
  .hours-dot{width:6px;height:6px;border-radius:50%;background:var(--accent);box-shadow:0 0 6px var(--accent);animation:pulse 2s ease-in-out infinite;}
  @keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.4;transform:scale(0.65);}}
  .hours-closed{color:var(--text-muted);font-style:italic;}

  .form-card{background:var(--card-bg);border:1px solid rgba(255,255,255,0.07);border-radius:20px;padding:40px 36px;position:relative;overflow:hidden;}
  .form-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--grad);border-radius:20px 20px 0 0;}
  .form-title{font-family:'Exo 2',sans-serif;font-weight:300;font-size:1.4rem;margin-bottom:6px;color:var(--text);}
  .form-subtitle{font-size:0.88rem;color:var(--text-muted);margin-bottom:28px;line-height:1.6;}

  .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
  .form-group{display:flex;flex-direction:column;gap:6px;}
  .form-group.full{grid-column:1/-1;}

  label{font-size:0.75rem;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;color:var(--text-muted);}
  input,select,textarea{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.09);border-radius:10px;padding:12px 16px;font-family:'Outfit',sans-serif;font-size:0.9rem;color:var(--text);outline:none;transition:border-color 0.2s,background 0.2s;width:100%;}
  input::placeholder,textarea::placeholder{color:rgba(255,255,255,0.2);}
  input:focus,select:focus,textarea:focus{border-color:var(--accent-border);background:rgba(46,207,160,0.05);}
  select option{background:var(--card-bg);color:var(--text);}
  textarea{resize:none;height:110px;line-height:1.6;}

  .form-check{display:flex;align-items:flex-start;gap:10px;margin:14px 0 22px;}
  .form-check input[type="checkbox"]{width:18px;height:18px;flex-shrink:0;border-radius:5px;padding:0;margin-top:2px;accent-color:var(--accent);cursor:pointer;}
  .form-check label{text-transform:none;letter-spacing:0;font-size:0.78rem;color:var(--text-muted);line-height:1.55;font-weight:400;cursor:pointer;}
  .form-check label a{color:var(--accent);text-decoration:none;}
  .form-check label a:hover{text-decoration:underline;}

  .btn-submit{width:100%;background:var(--grad);color:#fff;border:none;border-radius:10px;padding:15px 30px;font-family:'Outfit',sans-serif;font-size:0.95rem;font-weight:600;cursor:pointer;transition:opacity 0.2s,transform 0.2s,box-shadow 0.2s;box-shadow:0 4px 28px rgba(58,91,217,0.4);display:flex;align-items:center;justify-content:center;gap:8px;}
  .btn-submit:hover{opacity:0.92;transform:translateY(-2px);box-shadow:0 8px 36px rgba(58,91,217,0.5);}
  .btn-submit:active{transform:translateY(1px);}

  @keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}
  .contact-left{animation:fadeUp 0.5s 0.0s ease both;}
  .contact-right{animation:fadeUp 0.5s 0.15s ease both;}

/* ═══ FOOTER ═══ */

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Exo 2', sans-serif; font-weight: 300;
  font-size: 1.3rem; letter-spacing: -0.01em;
  color: #fff;
}
.footer-logo-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  font-family: 'Outfit', sans-serif;
  margin-top: 1px;
}
.footer-links {
  display: flex; gap: 48px;
  flex-wrap: wrap;
}
.footer-link-group h5 {
  font-family: 'Exo 2', sans-serif; font-weight: 400;
  font-size: 0.85rem; color: #fff;
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.footer-link-group ul {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.footer-link-group ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-link-group ul li a:hover { color: var(--accent); }
.footer-contact-group h5 {
  font-family: 'Exo 2', sans-serif; font-weight: 400;
  font-size: 0.85rem; color: #fff;
  margin-bottom: 10px;
}
.footer-contact-group p {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-contact-group a {
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-contact-group a:hover { color: var(--accent); }
.footer-btn-login {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: #fff; text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer-btn-login:hover {
  border-color: var(--accent); color: var(--accent);
}

html { scroll-behavior: smooth; }

.site-footer {
  background: #0d1929;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 56px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
}

/* ── Płynne scrollowanie ── */
.footer-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  font-family: 'Exo 2', sans-serif; font-weight: 300;
}
.footer-bottom-bar {
  margin-top: 0; padding-top: 0; border-top: none;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

/* ─────────────────────────────────────────
   HAMBURGER MENU + MOBILE OVERLAY
───────────────────────────────────────── */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,17,23,0.97);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .mm-link {
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  padding: 14px 24px;
  letter-spacing: -0.01em;
  transition: color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(10px);
}
body.menu-open .mobile-menu .mm-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
body.menu-open .mobile-menu .mm-link:nth-child(1) { transition-delay: 0.05s; }
body.menu-open .mobile-menu .mm-link:nth-child(2) { transition-delay: 0.10s; }
body.menu-open .mobile-menu .mm-link:nth-child(3) { transition-delay: 0.15s; }
body.menu-open .mobile-menu .mm-link:nth-child(4) { transition-delay: 0.20s; }
body.menu-open .mobile-menu .mm-link:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu .mm-link:hover,
.mobile-menu .mm-link:active {
  color: var(--accent);
}

.mobile-menu .mm-login {
  margin-top: 24px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(10px);
}
body.menu-open .mobile-menu .mm-login {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, all 0.2s;
}

/* zablokuj scroll body gdy menu otwarte */
body.menu-open {
  overflow: hidden;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET I MOBILE
───────────────────────────────────────── */

@media (max-width: 900px) {

  /* ── NAWIGACJA ── */
  nav {
    padding: 0 20px;
    height: 60px;
  }
  .nav-center { display: none; }
  .nav-center a { font-size: 0.95rem; padding: 6px 10px; }
  .nav-right { gap: 8px; }
  .btn-login { display: none; }
  .btn-cta-nav { display: none; }
  .nav-toggle { display: block; z-index: 200; position: relative; }
  .logo-wordmark .brand { font-size: 1.05rem; }
  .logo-wordmark .sub { font-size: 0.6rem; }

  /* ── HERO ── */
  .hero {
    padding: 80px 20px 40px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-bg-right {
    position: absolute;
    width: 100%;
    height: 220px;
    top: auto;
    bottom: 0;
    clip-path: none;
    opacity: 0.4;
  }
  .hero-glow, .hero-glow2 {
    width: 280px; height: 280px;
  }
  .hero-glow { top: auto; bottom: 5%; right: -20%; }
  .hero-glow2 { top: 10%; right: -10%; }
  .hero-left {
    padding: 0;
    grid-column: 1;
  }
  .hero-left h1 { font-size: 2.6rem; line-height: 1.1; }
  .hero-desc { font-size: 0.98rem; line-height: 1.7; }
  .hero-right { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-demo { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { gap: 14px; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .compliance-row { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* ── PAIN POINTS ── */
  .pain-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .pain-card { padding: 28px 24px !important; }
  .pain-card h3 { font-size: 1.1rem !important; line-height: 1.3 !important; }
  .pain-card .pain-tag { font-size: 2rem !important; line-height: 1.15 !important; }
  .pain-card p { font-size: 1rem !important; }
  .pain-card::before {
    font-size: 4rem !important;
    top: -2px !important;
    right: 14px !important;
    color: rgba(46,207,160,0.04) !important;
  }
  section.pain { padding: 60px 20px !important; }
  .pain-footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .pain-footer-btn-primary,
  .pain-footer-btn-ghost { justify-content: center; width: 100%; box-sizing: border-box; }

  /* ── FUNKCJE ── */
  .features-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  section.features, #funkcje { padding: 60px 20px !important; }
  .features-grid > * { max-width: 100%; }

  /* ── CENNIK ── */
  .pricing-section { padding: 60px 20px !important; }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-card { padding: 32px 24px; }
  .plan-name { font-size: 2.4rem; }
  .price-amount { font-size: 2.5rem; }

  /* ── KONTAKT ── */
  .contact-section { padding: 60px 20px !important; }
  .contact-section::after { display: none; }
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .form-grid { grid-template-columns: 1fr !important; }
  .contact-desc { max-width: 100% !important; }

  /* ── FOOTER ── */
  .site-footer { padding: 20px !important; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── SECTION HEADERS ── */
  h2 { font-size: 2rem !important; line-height: 1.15 !important; }
  .section-title, .section-subtitle { font-size: 2rem !important; }
}

@media (max-width: 600px) {
  nav { padding: 0 14px; height: 56px; }

  .hero { padding: 70px 16px 32px; }
  .hero-left h1 { font-size: 2.1rem; }
  .hero-desc { font-size: 0.95rem; }

  section.pain, #funkcje, .pricing-section, .contact-section {
    padding: 48px 16px !important;
  }
  .pain-card { padding: 24px 18px !important; }
  .price-card { padding: 28px 20px; }

  h2 { font-size: 1.7rem !important; }
  .plan-name { font-size: 2rem; }
  .price-amount { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr; }
}


/* ─── CONTACT FORM FEEDBACK ─── */
.form-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 16px;
}
.form-message--success {
  background: rgba(46,207,160,0.1);
  border: 1px solid rgba(46,207,160,0.35);
  color: #2ecfa0;
}
.form-message--error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.35);
  color: #f07070;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── CONTACT FORM FEEDBACK ─── */
.form-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 16px;
}
.form-message--success {
  background: rgba(46,207,160,0.1);
  border: 1px solid rgba(46,207,160,0.35);
  color: #2ecfa0;
}
.form-message--error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.35);
  color: #f07070;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
