/* ═══════════════════════════════════════════════════════════
   ORDZ — Strona promocyjna (prosta · czytelna · zielona)
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

:root {
    --g-900: #0F3D1A;
    --g-800: #1B5E20;
    --g-700: #2E7D32;
    --g-600: #388E3C;
    --g-500: #43A047;
    --g-400: #66BB6A;
    --g-300: #A5D6A7;
    --mint:  #E8F5E9;
    --mint-2:#F1F8F4;

    --ink:    #0F1B12;
    --ink-2:  #334238;
    --muted:  #6B7B70;
    --line:   #E3EAE5;
    --line-2: #EEF3EF;
    --bg:     #FFFFFF;
    --bg-soft:#F6F9F6;
    --card:   #FFFFFF;

    --radius:    18px;
    --radius-sm: 12px;
    --shadow:    0 1px 3px rgba(15,61,26,.05), 0 8px 30px rgba(15,61,26,.07);
    --shadow-lg: 0 20px 60px rgba(15,61,26,.16);
    --maxw: 1140px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NAGŁÓWEK ─────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--g-600), var(--g-700));
    display: flex; align-items: center; justify-content: center; padding: 6px;
    box-shadow: 0 3px 10px rgba(56,142,60,.3);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--g-700); }
.brand-sub  { font-size: 11px; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--g-700); }
.nav-cta {
    background: linear-gradient(135deg, var(--g-600), var(--g-700)); color: #fff !important;
    padding: 10px 20px; border-radius: 12px; font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(56,142,60,.32); transition: box-shadow .15s, transform .12s;
}
.nav-cta:hover { box-shadow: 0 6px 22px rgba(56,142,60,.45); transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger svg { width: 26px; height: 26px; stroke: var(--ink); }
.nav-burger svg line { transition: transform .2s, opacity .2s; transform-origin: center; }
.nav-burger.is-open .b1 { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open .b2 { opacity: 0; }
.nav-burger.is-open .b3 { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1200px 500px at 70% -10%, var(--mint) 0%, transparent 60%),
        radial-gradient(800px 400px at 10% 10%, var(--mint-2) 0%, transparent 55%),
        var(--bg);
    padding: 48px 0 44px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--mint); color: var(--g-800);
    border: 1px solid var(--g-300); border-radius: 30px;
    padding: 7px 15px; font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; stroke: var(--g-600); fill: none; }
.hero h1 {
    font-size: 50px; font-weight: 800; line-height: 1.08;
    letter-spacing: -.03em; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--g-700); }
.accent { color: var(--g-700); }
.hero-lead { font-size: 18.5px; color: var(--ink-2); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-checks {
    list-style: none; padding: 0; margin: 30px 0 0;
    display: flex; flex-direction: column; gap: 12px;
}
.hero-checks li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--ink-2); font-weight: 500; line-height: 1.35;
}
.hero-checks li svg {
    width: 17px; height: 17px; flex-shrink: 0;
    stroke: var(--g-600); fill: none; stroke-width: 2.5; stroke-linecap: round;
}

.hero-stats {
    display: flex; gap: 0; margin-top: 32px;
    border-top: 1.5px solid var(--line); padding-top: 28px;
}
.hero-stat { flex: 1; padding-right: 24px; }
.hero-stat + .hero-stat { border-left: 1.5px solid var(--line); padding-left: 24px; padding-right: 0; }
.hero-stat-num { font-size: 14px; font-weight: 700; color: var(--g-700); letter-spacing: -.01em; line-height: 1.2; }
.hero-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* zrzut ekranu aplikacji w hero */
.hero-visual { display: flex; justify-content: center; align-items: flex-start; }
.hero-img {
    width: 100%; max-width: 340px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,.18));
}

/* ── PRZYCISKI ────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 28px; border-radius: 14px; font-size: 16px; font-weight: 700;
    border: none; cursor: pointer; transition: transform .12s, box-shadow .15s, background .15s;
    letter-spacing: -.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: linear-gradient(135deg, var(--g-500), var(--g-700)); color: #fff;
    box-shadow: 0 6px 20px rgba(56,142,60,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(56,142,60,.45); }
.btn-ghost { background: #fff; color: var(--g-700); border: 1.5px solid var(--g-300); }
.btn-ghost:hover { background: var(--mint-2); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* ── SEKCJE ───────────────────────────────────────────────────── */
.section { padding: 48px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 32px; }
.kicker {
    display: inline-block; font-size: 13px; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase; color: var(--g-600);
    margin-bottom: 14px;
}
.section-head h2 { font-size: 38px; font-weight: 800; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--ink-2); }

/* ── FUNKCJE (siatka kart) ────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 28px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--g-300); }
.feature-ico {
    width: 54px; height: 54px; border-radius: 15px;
    background: var(--mint); color: var(--g-600);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.feature h3 { font-size: 19px; font-weight: 800; margin-bottom: 9px; letter-spacing: -.01em; }
.feature p { font-size: 15px; color: var(--ink-2); }

/* ── MODUŁ GŁOSOWY — kafelek pełna szerokość ─────────────────── */
.feature-voice { grid-column: 1 / -1; }
.fv-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}
.fv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mint);
    border: 1px solid var(--g-300);
    color: var(--g-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.fv-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--g-500);
    flex-shrink: 0;
    animation: fv-pulse 2s ease-in-out infinite;
}
@keyframes fv-pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .35; }
}
.fv-desc { font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.fv-caps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.fv-cap {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 14px;
}
.fv-cap-ico {
    width: 32px; height: 32px;
    background: var(--mint);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 9px;
}
.fv-cap-ico svg {
    width: 16px; height: 16px;
    stroke: var(--g-600);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.fv-cap h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.fv-cap p  { font-size: 12px; color: var(--muted); line-height: 1.5; }
.fv-chips-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 9px;
}
.fv-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.fv-chip {
    background: var(--mint);
    border: 1px solid var(--g-300);
    color: var(--g-800);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 20px;
    font-family: 'Consolas', 'Courier New', monospace;
}
@media (max-width: 900px) {
    .fv-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
    .fv-caps { grid-template-columns: 1fr 1fr; }
}

/* ── ZRZUTY EKRANU ────────────────────────────────────────────── */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 85%; margin-left: auto; margin-right: auto; }
.screen-card { border-radius: var(--radius); overflow: hidden; transition: transform .18s; }
.screen-card:hover { transform: translateY(-5px); }
.screen-card img { width: 100%; height: auto; display: block; }

/* ── JAK DZIAŁA (kroki) ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; }
.step-num {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--g-500), var(--g-700)); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; box-shadow: 0 6px 18px rgba(56,142,60,.35);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); }

/* ── DEMO CTA / FORMULARZ ─────────────────────────────────────── */
.demo-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.demo-info h2 { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2; color: var(--ink); }
.demo-info p { font-size: 16.5px; color: var(--ink-2); }
.demo-section {
    background: linear-gradient(135deg, var(--g-800), var(--g-600));
    color: #fff; border-radius: 28px; padding: 24px;
    box-shadow: var(--shadow-lg);
}
.demo-perks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.demo-perks li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.demo-perks svg { width: 20px; height: 20px; stroke: var(--g-600); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.demo-form {
    background: #fff; color: var(--ink);
    border-radius: 20px; padding: 32px;
}
.demo-form h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.demo-form .df-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
    border-radius: 12px; font-size: 15px; background: #fff; color: var(--ink);
    transition: border-color .15s, box-shadow .15s; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--g-400); box-shadow: 0 0 0 3px rgba(102,187,106,.18);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.5; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--g-600); flex-shrink: 0; }
.form-consent a { color: var(--g-700); font-weight: 600; text-decoration: underline; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.df-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.df-error {
    background: #FFF3F3; border: 1px solid #FFCDD2; color: #C62828;
    font-size: 13px; font-weight: 600; padding: 11px 14px;
    border-radius: 10px; margin-bottom: 14px;
}
/* ── Ekran sukcesu ────────────────────────────────────────── */
.demo-success { text-align: center; padding: 48px 32px; }
.ds-ico {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--mint); margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
}
.ds-ico svg { width: 36px; height: 36px; stroke: var(--g-600); }
.demo-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.demo-success p  { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 16px; }
.ds-note { font-size: 12.5px; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 20px 22px; font-size: 16.5px; font-weight: 700; color: var(--ink);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q svg { width: 20px; height: 20px; stroke: var(--g-600); fill: none; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 22px 20px; font-size: 15px; color: var(--ink-2); }
.faq-item.open .faq-a { max-height: 320px; }

/* ── STOPKA ───────────────────────────────────────────────────── */
.site-footer { background: var(--g-900); color: #fff; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-about { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--g-300); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.78); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,.6);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: #fff; }

/* ── BANER COOKIES ────────────────────────────────────────────── */
.cookie-bar {
    position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(140%);
    width: min(680px, calc(100% - 36px)); z-index: 300;
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow-lg); padding: 20px 24px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    transition: transform .4s cubic-bezier(.2,.85,.25,1);
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.cookie-txt { flex: 1; min-width: 240px; font-size: 13.5px; color: var(--ink-2); }
.cookie-txt a { color: var(--g-700); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 11px 20px; font-size: 14px; }

/* ── STRONY PRAWNE ────────────────────────────────────────────── */
.legal { padding: 60px 0 80px; }
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc h1 { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.legal-updated { font-size: 13.5px; color: var(--muted); margin-bottom: 36px; }
.legal-doc h2 { font-size: 22px; font-weight: 800; margin: 34px 0 12px; }
.legal-doc h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
.legal-doc p, .legal-doc li { font-size: 15.5px; color: var(--ink-2); margin-bottom: 12px; }
.legal-doc ul, .legal-doc ol { padding-left: 24px; margin-bottom: 16px; }
.legal-doc a { color: var(--g-700); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--g-700); margin-bottom: 28px; }
.back-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }

/* ── RESPONSYWNOŚĆ ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero h1 { font-size: 38px; }
    .features, .screens, .steps { grid-template-columns: 1fr 1fr; }
    .demo-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .nav-links.mobile-open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 70px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--line);
        padding: 14px 24px 20px; gap: 6px; box-shadow: var(--shadow-lg);
    }
    .nav-links.mobile-open a { padding: 11px 4px; font-size: 16px; border-bottom: 1px solid var(--line-2); }
    .nav-links.mobile-open a:last-child { border-bottom: none; }
    .nav-links.mobile-open .nav-cta { text-align: center; margin-top: 8px; border: none; }
}
@media (max-width: 560px) {
    .wrap { padding: 0 18px; }
    .hero { padding: 36px 0 32px; }
    .hero h1 { font-size: 31px; }
    .hero-lead { font-size: 16.5px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .section { padding: 32px 0; }
    .section-head { margin-bottom: 24px; }
    .section-head h2 { font-size: 28px; }
    .section-head p { font-size: 16px; }
    .features, .screens, .steps { grid-template-columns: 1fr; gap: 18px; }
    .hero-stats { flex-direction: column; gap: 0; }
    .hero-stat { flex: none; width: 100%; padding-right: 0; padding-bottom: 16px; }
    .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1.5px solid var(--line); padding-top: 16px; }
    .hero-stat-num { font-size: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .demo-section { padding: 20px; border-radius: 22px; }
    .demo-info h2 { font-size: 27px; }
    .demo-form { padding: 24px; }
    .hero-img { max-width: 280px; }
    .cookie-bar { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 20px; bottom: 12px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
    .legal-doc h1 { font-size: 28px; }
}
@media (max-width: 390px) {
    .hero h1 { font-size: 27px; }
    .section-head h2 { font-size: 25px; }
}
