/* =========================================
   DEEPLEX LANDING — components on top of liquid_style.css
   Marketing-only: hero, pricing, enterprise, FAQ, scores.
   App layout/components live in liquid_style.css.
   ========================================= */

:root {
    /* Pricing-tier accents (landing only) */
    --pricing-free: #64748b;
    --pricing-prime: #0ea5e9;
    --pricing-pro: #6c5ce7;
    --pricing-ultra: #d63384;
    --enterprise-accent: #00d2ff;
}

/* Landing flips the radial gradient origin and goes column-flex for footer */
body {
    background: radial-gradient(circle at top right, var(--liquid-bg-start) 0%, var(--liquid-bg-mid) 50%, var(--liquid-bg-end) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Landing's login card uses .lq-panel as the host for an absolutely-positioned
   .lq-login-tag badge — kanon's .lq-panel has neither padding nor a containing
   block, so we restore both here without touching the shared file.
   box-shadow kanon (liquid_style.css) — fioletowa poświata w 2. warstwie;
   padding pochodzi z kanonowego .lq-login-box (3rem). */
.lq-panel {
    position: relative; padding: 3rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 20px -5px rgba(108, 92, 231, 0.05),
        inset 0 1px 1px rgba(255,255,255,0.5);
}

/* =========================================
   LAYOUT
   ========================================= */
.lq-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
    position: relative;
}

.lq-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 10;
}

.lq-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 6rem;
}

/* =========================================
   BRAND
   ========================================= */
.lq-brand { display: flex; align-items: center; gap: 0.75rem; }

.lq-brand-icon {
    width: 40px; height: 40px; background: var(--accent);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: white; box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.lq-brand-text { display: flex; flex-direction: column; }

.lq-brand-name {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 900;
    letter-spacing: -0.05em; line-height: 1;
}

.lq-brand-edition {
    font-size: 0.55rem; font-weight: 900; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.3em; margin-top: 2px;
}

/* display:block + font-size override: liquid_style.css also defines
   .lq-section-title (display:flex, 1.25rem) for app-wide inline labels and
   loads BEFORE this file — without these the landing's section heads collapse
   onto one flex row (badge+h2+p run together). landing.css loads last so these win. */
.lq-section-title { display: block; font-size: 1rem; text-align: center; margin-bottom: 4rem; }
.lq-section-title h2 { font-family: var(--font-display); font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 1rem; }
.lq-section-title p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* =========================================
   HERO
   ========================================= */
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem; border-radius: 999px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    font-size: 0.7rem; font-weight: 900; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display); font-size: 4.5rem; font-weight: 900;
    line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; color: var(--text-main);
}
.hero-title-gradient {
    background: linear-gradient(110deg, var(--accent), var(--accent-dark), #a5b4fc, var(--accent));
    background-size: 300% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: hg 14s ease-in-out infinite;
}
@keyframes hg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-title-gradient { animation: none; }
}
.hero-desc { font-size: 1.125rem; color: var(--text-muted); font-weight: 500; max-width: 500px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* @property for single bright comet on the secondary hero CTA */
@property --lb { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* secondary hero CTA — glass pill with single comet sweep on the border */
.hero-cta-comet {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-family: var(--font-display); font-weight: 800; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding: 0.95rem 1.75rem; border-radius: var(--radius-pill); cursor: pointer;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--text-main); position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.hero-cta-comet:hover { transform: translateY(-2px); background: var(--glass-highlight); box-shadow: 0 10px 25px rgba(108, 92, 231, 0.08); }
.hero-cta-comet::before {
    content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px; pointer-events: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    background: conic-gradient(from var(--lb),
        transparent 0deg, transparent 285deg,
        rgba(167,139,250,.7) 320deg, rgba(221,214,254,1) 354deg, transparent 360deg);
    animation: lorbit 3.2s linear infinite;
}
@keyframes lorbit { to { --lb: 360deg; } }

@media (prefers-reduced-motion: reduce) {
    .hero-cta-comet::before { animation: none; }
}

/* Login card on landing hero */
.login-header { text-align: center; margin-bottom: 2rem; }
.login-header h2 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.login-header p { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* =========================================
   FEATURES
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

/* feature-card = kanon .lq-card (radius-lg, hover translateY(-4px) + kanonowy
   cień). Większy padding 2.5rem to świadomy layout marketingowy nad tokenem. */
.feature-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    display: flex; flex-direction: column;
}

.feature-card:hover {
    background: var(--glass-highlight);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(108, 92, 231, 0.15);
}

.feature-icon {
    width: 60px; height: 60px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
}

.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-display); }
.feature-card p { color: var(--text-muted); font-size: 1.05rem; }

/* =========================================
   PRICING
   ========================================= */
.pricing-section { padding: 6rem 0 2rem; position: relative; }

/* The live pricing card system is `.lq-pricing-*` (liquid_style.css), with the
   `.rec` (recommended) + `.ultra` overrides further down in this file. The old
   un-prefixed `.pricing-card*` system was a dead duplicate and has been removed. */

.privacy-badge {
    display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 800;
    padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 1.5rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.privacy-badge.shielded { background: rgba(0, 210, 255, 0.15); color: var(--enterprise-accent); }
.privacy-badge.public { background: rgba(245, 158, 11, 0.15); color: #b45309; }
.privacy-badge.pro { background: rgba(108, 92, 231, 0.15); color: var(--accent); }

/* =========================================
   ENTERPRISE / TENANT
   ========================================= */
/* Enterprise — świadomy ciemny OVERRIDE kolorów; geometria na tokenie (radius-xl). */
.enterprise-section {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.98) 100%);
    color: white;
    padding: 6rem 4rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.enterprise-section::before {
    content: ''; position: absolute; right: -10%; bottom: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    z-index: 1; filter: blur(40px);
}
.enterprise-section::after {
    content: ''; position: absolute; left: -10%; top: -10%;
    width: 50%; height: 80%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    z-index: 1; filter: blur(40px);
}

.enterprise-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem; position: relative; z-index: 2;
}

.ent-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 4rem; border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.4s ease;
}

.ent-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--enterprise-accent);
    transform: translateY(-8px);
}

.ent-icon {
    width: 72px; height: 72px;
    background: rgba(0, 210, 255, 0.15); color: var(--enterprise-accent);
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
    margin-bottom: 2.5rem;
}

.ent-card h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1.5rem; color: #fff; }
.ent-card p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2.5rem; font-size: 1.1rem; }
.ent-list { list-style: none; padding: 0; margin: 0 0 3rem; }
.ent-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; font-size: 1rem; color: #fff; }
.ent-list li i { color: var(--enterprise-accent); }

/* =========================================
   SCORES (top exam scores)
   ========================================= */
.scores-section { padding: 4rem 0 6rem; border-top: 1px solid var(--glass-border); }
.scores-header {
    text-align: center; margin-bottom: 3rem;
    font-family: var(--font-display); font-size: 0.875rem; font-weight: 900;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.scores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
/* The live score classes are `.lq-score-*` (liquid_style.css). The un-prefixed
   `.score-agent-name`/`.score-exam-name`/`.score-value-row`/`.score-bar-bg`/
   `.score-bar-fill` were a dead duplicate and have been removed. */

.status-pass { background: #d1fae5; color: #047857; }
.status-fail { background: #fee2e2; color: #b91c1c; }
.status-badge { font-size: 0.55rem; font-weight: 900; padding: 0.2rem 0.5rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.15em; }

/* =========================================
   BACKGROUND BLOBS
   ========================================= */
.lq-blob { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; opacity: 0.5; }
.blob-1 { background: rgba(165, 180, 252, 0.4); width: 600px; height: 600px; top: -100px; left: -100px; }
.blob-2 { background: rgba(191, 219, 254, 0.3); width: 500px; height: 500px; top: 40%; right: -50px; }

/* =========================================
   PREVIEW BANNERS
   ========================================= */
.preview-banner {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    color: rgba(255,255,255,0.9); text-align: center; padding: 0.65rem 1.5rem;
    font-size: 0.85rem; font-weight: 500; display: flex; align-items: center;
    justify-content: center; gap: 0.75rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.4);
    z-index: 1000; position: relative;
}

.closed-preview-banner {
    background: linear-gradient(90deg, #1a0a05 0%, #2d1200 50%, #1a0a05 100%);
    color: rgba(255,255,255,0.9); text-align: center; padding: 0.65rem 1.5rem;
    font-size: 0.85rem; font-weight: 500; display: flex; align-items: center;
    justify-content: center; gap: 0.75rem;
    border-bottom: 1px solid rgba(234, 88, 12, 0.5);
    z-index: 1000; position: relative;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section { padding: 8rem 2rem; max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
.faq-accordion {
    margin-bottom: 1.5rem; background: var(--glass-bg);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg); overflow: hidden;
    backdrop-filter: blur(12px); box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.faq-accordion:hover { background: var(--glass-highlight); box-shadow: 0 8px 25px rgba(108,92,231,0.08); }
.faq-summary {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
    padding: 1.5rem 2rem; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    color: var(--text-main); list-style: none; outline: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary i { color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
details[open] .faq-accordion { background: var(--glass-highlight); border-color: var(--accent); box-shadow: 0 10px 30px rgba(108,92,231,0.1); }
details[open] .faq-summary i { transform: rotate(45deg); }
.faq-content {
    padding: 0 2rem 2rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
    border-top: 1px dashed rgba(108, 92, 231, 0.2);
    margin-top: 0.5rem; padding-top: 1.5rem;
}

/* =========================================
   SHOWCASE — AI-ready scale (mock 13, dark premium band)
   ========================================= */
/* Skala bazy — świadomy ciemny OVERRIDE kolorów; geometria na tokenie (radius-xl). */
.sc {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.96) 0%, rgba(15, 15, 30, 0.98) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 3rem 3.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.25);
    box-shadow: 0 25px 60px -25px rgba(108, 92, 231, 0.4);
}
.sc::before {
    content: ''; position: absolute; right: -8%; top: -40%;
    width: 45%; height: 160%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.22) 0%, transparent 70%);
    filter: blur(40px); z-index: 0;
}
.sc-head { position: relative; z-index: 1; margin-bottom: 2rem; }
.sc-sub { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0.75rem 0 0; }
.sc-body {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.sc-nums { display: flex; flex-direction: column; gap: 1.75rem; }
.sc-num-val {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
    letter-spacing: -0.03em; line-height: 1;
    background: linear-gradient(110deg, #fff, #a5b4fc);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sc-num-lbl {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 0.5rem; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.75);
}
.sc-num-lbl i { color: var(--accent); }
.sc-chart { width: 100%; opacity: 0.9; }

/* =========================================
   COMING SOON ROW (features)
   ========================================= */
.soon-row {
    margin-top: 3rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.soon-row__head {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--text-muted);
}
.soon-row__items { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.soon-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 999px;
    border: 1px dashed var(--glass-border); background: var(--glass-bg);
    font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
}
.soon-chip i { color: var(--accent); }

/* =========================================
   DEMO — "Zobacz DeepLex w akcji" (mock 13)
   ========================================= */
.demo { padding: 4rem 0 2rem; }
.demo-wrap { max-width: 760px; margin: 0 auto; }
.exchips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 0.5rem; }
/* exchip = kanon liquid_style.css (.exchip :1255). */
.exchip {
    cursor: pointer;
    font-size: 0.82rem;
    border: 1px solid var(--glass-border); background: var(--glass-bg);
    color: var(--text-main);
    padding: 0.4rem 0.85rem; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 0.35rem;
    transition: border-color 0.15s, background 0.15s;
}
.exchip:hover, .exchip.is-active { border-color: var(--accent); background: var(--accent-soft, rgba(108,92,231,0.08)); }
.exchip i { color: var(--accent); }

.demo-box {
    margin-top: 1.5rem;
    border: 1px solid var(--glass-border); background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg); padding: 1.75rem 2rem;
}
.demo-box[hidden] { display: none; }
.demo-box__q {
    font-weight: 700; color: var(--text-main);
    display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem;
}
.demo-box__a {
    color: var(--text-muted); font-size: 0.98rem; line-height: 1.7;
    border-left: 3px solid var(--accent); padding-left: 1rem; margin-bottom: 1rem;
}
.demo-box__docs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.demo-doc {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; font-weight: 600; color: var(--accent);
    background: rgba(108, 92, 231, 0.08); border: 1px solid rgba(108, 92, 231, 0.2);
    padding: 0.3rem 0.7rem; border-radius: var(--radius-sm);
}
.demo-box__acts { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Powiązane orzeczenia teaser — redacted GARBAGE only (hard rule §11). */
.srcrow {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 1px dashed var(--glass-border);
    display: flex; flex-direction: column; gap: 0.6rem;
}
.srcrow__head {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted);
}
.srcrow__row {
    display: flex; gap: 1rem; align-items: center;
    font-family: var(--font-mono, ui-monospace, monospace); font-size: 0.85rem;
}
/* Blur is cosmetic only — the value is already random garbage server-side. */
.redact {
    filter: blur(4px); user-select: none;
    color: var(--text-muted); letter-spacing: 0.05em;
}
.srcrow__cta {
    font-size: 0.82rem; font-weight: 700; color: var(--accent); text-decoration: none; margin-top: 0.25rem;
}
.srcrow__cta:hover { text-decoration: underline; }

/* search bar (demo-ask) = kanon .lq-search-bar (liquid_style.css :1225).
   Tylko margin-top to landingowy spacing-override nad geometrią kanonu. */
.lq-search-bar {
    display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
    background: var(--glass-bg-solid); border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill); padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    box-shadow: 0 8px 32px rgba(31,38,135,0.08); transition: box-shadow 0.2s, border-color 0.2s;
}
.lq-search-bar:focus-within { border-color: var(--accent); box-shadow: 0 8px 32px var(--accent-glow); }
.lq-search-bar__icon { color: var(--text-muted); flex-shrink: 0; }
.lq-search-bar__input { flex: 1; border: 0; outline: none; background: transparent; font-family: var(--font-body); font-size: 1rem; color: var(--text-main); min-width: 0; }
.lq-search-bar__input::placeholder { color: var(--text-light); }
.lq-search-bar__btn {
    flex-shrink: 0; border: 0; border-radius: var(--radius-pill); cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    padding: 0.6rem 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lq-search-bar__btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 6px 18px var(--accent-glow); }
.lq-search-bar__btn:active { transform: scale(0.96); }

/* Custom-question hand-off + anti-bot widget (BEZ nazwy vendora) */
.demo-ask { margin-top: 1.5rem; }
.guard {
    margin-top: 0.75rem; display: flex; flex-wrap: wrap; align-items: center;
    justify-content: center; gap: 1rem; font-size: 0.82rem; color: var(--text-muted);
}
.antibot {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-weight: 600; color: var(--text-main); cursor: default;
}
.antibot input { width: 1rem; height: 1rem; accent-color: var(--accent); }
.guard__note { color: var(--text-muted); }

/* =========================================
   PRICING — recommended (light) + Ultra (Space Black)
   ========================================= */
/* Professional = recommended: override the dark premium to a LIGHT, scaled,
   accent-bordered card (mock 13). landing.css loads after liquid_style.css. */
.lq-pricing-card.rec {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-main);
    border: 2px solid var(--accent);
    box-shadow: 0 25px 50px -12px rgba(108, 92, 231, 0.25);
    transform: scale(1.05);
    position: relative; border-radius: var(--radius-xl); display: flex; flex-direction: column;
}
.lq-pricing-card.rec:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.07);
    box-shadow: 0 30px 60px -15px rgba(108, 92, 231, 0.35);
}
.lq-pricing-card.rec .lq-pricing-name,
.lq-pricing-card.rec .lq-pricing-price { color: var(--text-main); }
.lq-pricing-card.rec .lq-pricing-period { color: var(--text-muted); }
.lq-pricing-card.rec .lq-pricing-feature { color: var(--text-main); }
.lq-pricing-card.rec .lq-pricing-feature i { color: var(--success); }
.lq-pricing-card.rec .lq-pricing-header { border-bottom-color: var(--glass-border); }

/* Ultra = Space Black: matte black, flat, gold accent (no gradient/glow). */
.lq-pricing-card.ultra {
    background: #0c0c0e;
    color: #e7e7ea;
    border: 1px solid #2a2a2e;
    box-shadow: none;
    border-radius: var(--radius-lg);
}
.lq-pricing-card.ultra:hover {
    background: #0c0c0e;
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: none;
}
.lq-pricing-card.ultra .lq-pricing-name { color: #d4af37; }
.lq-pricing-card.ultra .lq-pricing-price { color: #fff; }
.lq-pricing-card.ultra .lq-pricing-period { color: rgba(255,255,255,0.5); }
.lq-pricing-card.ultra .lq-pricing-header { border-bottom-color: rgba(255,255,255,0.1); }
.lq-pricing-card.ultra .lq-pricing-feature { color: rgba(255,255,255,0.85); }
.lq-pricing-card.ultra .lq-pricing-feature i { color: #d4af37; }

/* Add-ons wrap uses radius-xl token + glass surface */
.addons-wrap {
    margin-top: 4rem; padding: 3rem; background: var(--glass-bg); backdrop-filter: blur(12px);
    border-radius: var(--radius-xl); border: 1px solid var(--glass-border); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer { text-align: center; padding: 3rem 2rem 8rem; border-top: 1px solid var(--glass-border); margin-top: 4rem; }
.site-footer__brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; }
.site-footer__brand i { color: var(--accent); }
.site-footer p { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* =========================================
   ENTERPRISE — "Wkrótce" tag + footnotes
   ========================================= */
.comingtag {
    display: inline-flex; align-items: center;
    font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em;
    color: #0c0c0e; background: var(--enterprise-accent);
    padding: 0.2rem 0.55rem; border-radius: 999px; margin-left: 0.6rem; vertical-align: middle;
}
.comingtag sup { font-size: 0.7em; margin-left: 1px; }
.ent-fn {
    position: relative; z-index: 2;
    margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55); font-size: 0.8rem;
}
.ent-fn p { margin: 0.25rem 0; }
.ent-fn sup { color: var(--enterprise-accent); margin-right: 2px; }
.ent-card h3 sup { color: var(--enterprise-accent); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .lq-pricing-card.rec { transform: none; }
    .lq-pricing-card.rec:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .lq-hero { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 3.5rem; }
    .enterprise-grid { grid-template-columns: 1fr; }
    .ent-card { padding: 2.5rem; }
    .enterprise-section { padding: 4rem 2rem; }
    .sc { padding: 2.5rem 2rem; }
    .sc-body { grid-template-columns: 1fr; gap: 2rem; }
    .sc-num-val { font-size: 2.75rem; }
    .lq-pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
