/* =============================================================
   FitFormiq Landing Page
   - Separate from the SPA (/www/css/app.css) but reuses the same
     CSS variables inline so the landing looks 1:1 with the app.
   ============================================================= */

:root {
    --primary: #6D3BE8;
    --primary-light: #8A5FEF;
    --primary-dark: #5424C4;
    --accent: #FE5B02;
    --accent-light: #FF7A2E;
    --accent-dark: #CC4800;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --graphite: #26292C;
    --graphite-2: #34383C;
    --platinum: #EDF2F4;
    --platinum-2: #F7FAFB;
    --bg: #EDF2F4;
    --bg-card: #FFFFFF;
    --bg-soft: #F7FAFB;
    --border: rgba(38,41,44,0.10);
    --border-light: rgba(38,41,44,0.06);
    --line: rgba(38,41,44,0.08);
    --ring: rgba(254,91,2,0.22);
    --text: #26292C;
    --text-secondary: #4B5258;
    --text-muted: #6B7280;
    --radius: 14px;
    --radius-lg: 18px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(38,41,44,0.04), 0 1px 3px rgba(38,41,44,0.04);
    --shadow-md: 0 1px 2px rgba(38,41,44,0.05), 0 8px 24px -16px rgba(38,41,44,0.18);
    --shadow-lg: 0 2px 4px rgba(38,41,44,0.06), 0 24px 48px -24px rgba(38,41,44,0.28);
    --ease: cubic-bezier(.2,.8,.2,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv11', 'ss01';
    letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); border-radius: 8px; }

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .lp-container { padding: 0 32px; } }
@media (min-width: 1024px) { .lp-container { padding: 0 40px; } }

/* ============ BUTTONS ============ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    min-height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all .18s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
}
.lp-btn i { font-size: 14px; }
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); opacity: .92; }

.lp-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(38,41,44,0.08), 0 8px 18px -8px rgba(254,91,2,0.55);
}
.lp-btn-primary:hover { background: var(--accent-light); }

.lp-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--graphite);
}
.lp-btn-outline:hover { background: var(--graphite); color: #fff; }

.lp-btn-sm { padding: 10px 16px; min-height: 40px; font-size: 13px; }
.lp-btn-block { width: 100%; }

/* ============ HEADER ============ */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(237, 242, 244, 0.85);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border-light);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.lp-brand { display: flex; align-items: center; gap: 12px; }
.lp-brand-logo { height: 32px; width: auto; max-width: 160px; object-fit: contain; }

.lp-nav { display: none; gap: 28px; align-items: center; }
.lp-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color .15s var(--ease);
}
.lp-nav a:hover { color: var(--accent); }

.lp-header-ctas { display: none; gap: 10px; align-items: center; }
.lp-header-cta { display: none; }

@media (min-width: 900px) {
    .lp-nav { display: flex; }
    .lp-header-ctas { display: flex; }
    .lp-header-cta { display: inline-flex; }
}

/* Language toggle button — text-only PL/EN switch (desktop + mobile) */
.lp-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    min-height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color .18s var(--ease), background .18s var(--ease);
    cursor: pointer;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.lp-lang-toggle:hover {
    border-color: var(--accent);
    background: rgba(254, 91, 2, 0.06);
}
.lp-lang-opt {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: color .15s var(--ease), background .15s var(--ease);
}
.lp-lang-opt.is-active {
    color: #fff;
    background: var(--accent);
}
.lp-lang-sep {
    color: var(--border);
    font-weight: 400;
}
.lp-lang-toggle-mobile {
    align-self: flex-start;
    margin-top: 6px;
}

/* Mobile header CTAs (visible below 900px, next to burger) */
.lp-mobile-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
@media (min-width: 900px) { .lp-mobile-ctas { display: none; } }

/* Hamburger (mobile) */
.lp-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
}
.lp-burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.lp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .lp-burger { display: none; } }

.lp-mobile-nav {
    border-top: 1px solid var(--border-light);
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-mobile-nav[hidden] { display: none !important; }
@media (min-width: 900px) {
    .lp-mobile-nav { display: none !important; }
}
.lp-mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    color: var(--text);
}
.lp-mobile-nav .lp-btn { margin-top: 6px; }
.lp-mobile-nav .lp-btn-primary { color: #fff; }

/* ============ ACCENTS ============ */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(254, 91, 2, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
}
.lp-eyebrow-muted {
    color: var(--primary);
    background: rgba(109, 59, 232, 0.08);
}

.lp-accent-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lp-h1 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 18px 0 18px;
    color: var(--text);
}
@media (min-width: 768px) { .lp-h1 { font-size: 48px; } }
@media (min-width: 1024px) { .lp-h1 { font-size: 58px; } }

.lp-h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin: 12px 0 14px;
    color: var(--text);
}
@media (min-width: 768px) { .lp-h2 { font-size: 36px; } }

.lp-lead {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
}
@media (min-width: 768px) { .lp-lead { font-size: 18px; } }

/* ============ HERO ============ */
.lp-hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
}
@media (min-width: 1024px) { .lp-hero { padding: 88px 0 96px; } }

.lp-hero-blob {
    position: absolute;
    top: -120px;
    right: -180px;
    width: 620px;
    height: 620px;
    background: radial-gradient(closest-side, rgba(254,91,2,0.22), rgba(109,59,232,0.18) 55%, transparent 75%);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .lp-hero-inner { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.lp-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}
.lp-hero-meta-item i { color: var(--accent); font-size: 15px; }

.lp-hero-device {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.lp-hero-device .lp-phone { position: relative; z-index: 2; }

/* ============ PHONE MOCKUP ============ */
.lp-phone {
    --phone-w: 280px;
    --phone-h: 560px;
    width: var(--phone-w);
    height: var(--phone-h);
    border-radius: 44px;
    background: #1a1d20;
    padding: 12px;
    box-shadow:
        0 2px 4px rgba(38,41,44,0.08),
        0 30px 60px -20px rgba(38,41,44,0.35),
        0 50px 90px -40px rgba(109,59,232,0.25);
    position: relative;
    flex-shrink: 0;
}
.lp-phone-sm { --phone-w: 240px; --phone-h: 480px; border-radius: 38px; padding: 10px; }

.lp-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: var(--platinum);
    overflow: hidden;
    padding: 32px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-phone-sm .lp-phone-screen { border-radius: 28px; padding: 26px 12px 12px; gap: 10px; }

.lp-mock-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 4px 4px;
}
.lp-mock-header-slim {
    justify-content: space-between;
    padding: 6px 8px 8px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2px;
}
.lp-mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.lp-mock-avatar-1 { background: linear-gradient(135deg, #FE5B02, #FF7A2E); }
.lp-mock-avatar-2 { background: linear-gradient(135deg, #6D3BE8, #8A5FEF); }
.lp-mock-avatar-3 { background: linear-gradient(135deg, #10B981, #34d399); }
.lp-mock-avatar-4 { background: linear-gradient(135deg, #F59E0B, #fbbf24); }

.lp-mock-hello { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.lp-mock-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.lp-mock-title { font-size: 13px; font-weight: 700; color: var(--text); }
.lp-mock-back {
    width: 26px; height: 26px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); color: var(--text);
    font-size: 11px;
}
.lp-mock-badge {
    font-size: 11px; font-weight: 700; color: var(--accent);
    background: rgba(254,91,2,0.12);
    padding: 3px 9px; border-radius: 999px;
}

.lp-mock-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

.lp-mock-ring {
    position: relative;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-phone-sm .lp-mock-ring { width: 60px; height: 60px; }
.lp-mock-ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
}
.lp-phone-sm .lp-mock-ring-val { font-size: 12px; }
.lp-mock-ring-info { flex: 1; min-width: 0; }
.lp-mock-ring-title { font-size: 12px; font-weight: 700; color: var(--text); }
.lp-mock-ring-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.lp-mock-list {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.lp-mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    font-size: 11px;
    border-bottom: 1px solid var(--border-light);
}
.lp-mock-row:last-child { border-bottom: none; }

.lp-mock-check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}
.lp-mock-check-empty {
    background: transparent;
    border: 1.5px solid var(--border);
}
.lp-mock-label { flex: 1; min-width: 0; color: var(--text); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-mock-row-done .lp-mock-label { color: var(--text-muted); text-decoration: line-through; }
.lp-mock-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: rgba(109, 59, 232, 0.1);
    padding: 3px 7px;
    border-radius: 999px;
    flex-shrink: 0;
}
.lp-mock-tag-train { color: var(--accent); background: rgba(254, 91, 2, 0.1); }

/* Mockup #2 — training plan */
.lp-mock-ex-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-mock-ex {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 10px 12px;
    box-shadow: var(--shadow);
}
.lp-mock-ex-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.lp-mock-ex-name { font-size: 12px; font-weight: 700; color: var(--text); }
.lp-mock-ex-tempo {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(109, 59, 232, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}
.lp-mock-ex-sets {
    display: flex;
    gap: 10px;
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
}
.lp-mock-ex-sets span {
    background: var(--bg-soft);
    padding: 3px 8px;
    border-radius: 6px;
}

/* Mockup #3 — trainer client list */
.lp-mock-client-list {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.lp-mock-client {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-bottom: 1px solid var(--border-light);
}
.lp-mock-client:last-child { border-bottom: none; }
.lp-mock-client-info { flex: 1; min-width: 0; }
.lp-mock-client-name { font-size: 12px; font-weight: 700; color: var(--text); }
.lp-mock-client-meta { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.lp-mock-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
}
.lp-mock-dot-ok { background: var(--success); }
.lp-mock-dot-warn { background: var(--warning); }

/* ============ INVITE BOX ============ */
.lp-invite { padding: 20px 0 40px; }
.lp-invite-box {
    background: linear-gradient(135deg, rgba(109,59,232,0.06) 0%, rgba(254,91,2,0.06) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    box-shadow: var(--shadow);
}
@media (max-width: 767px) {
    .lp-invite-box { grid-template-columns: 1fr; text-align: center; }
    .lp-invite-icon { margin: 0 auto; }
}
.lp-invite-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.lp-invite-copy h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.lp-invite-copy p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 680px;
}

/* ============ SECTIONS ============ */
.lp-section { padding: 72px 0; }
@media (min-width: 1024px) { .lp-section { padding: 96px 0; } }

.lp-section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.lp-section-head .lp-eyebrow { margin-bottom: 4px; }
.lp-section-lead {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 4px;
}
@media (min-width: 768px) { .lp-section-lead { font-size: 17px; } }

/* ============ DLA KOGO (AUDIENCE) ============ */
.lp-audience { background: var(--bg-soft); }
.lp-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 720px) { .lp-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-audience-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lp-audience-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    display: flex;
    flex-direction: column;
}
.lp-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(109, 59, 232, 0.22);
}
.lp-audience-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 18px;
}
.lp-audience-icon-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.lp-audience-icon-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }

.lp-audience-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: rgba(109, 59, 232, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.lp-audience-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.lp-audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}
.lp-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.lp-audience-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(254, 91, 2, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 1px;
}

/* ============ FEATURES GRID ============ */
.lp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lp-feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
    box-shadow: var(--shadow);
}
.lp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(254, 91, 2, 0.25);
}
.lp-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}
.lp-feature-icon-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.lp-feature-icon-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.lp-feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.lp-feature-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ SHOWCASE ============ */
.lp-showcase { background: linear-gradient(180deg, transparent 0%, rgba(109,59,232,0.035) 50%, transparent 100%); }
.lp-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    justify-items: center;
}
@media (min-width: 900px) { .lp-showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; } }

.lp-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 280px;
}
.lp-showcase-item figcaption {
    text-align: center;
}
.lp-showcase-item figcaption strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.lp-showcase-item figcaption span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============ HOW ============ */
.lp-how { background: var(--bg-soft); }
.lp-steps {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) { .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lp-step {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    position: relative;
}
.lp-step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}
.lp-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.lp-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.lp-step p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ============ FAQ ============ */
.lp-faq-section { background: var(--bg-soft); }
.lp-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lp-faq-item[open] {
    border-color: rgba(254, 91, 2, 0.25);
    box-shadow: var(--shadow-md);
}
.lp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    line-height: 1.4;
    letter-spacing: -0.005em;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q:hover { color: var(--accent); }
@media (min-width: 768px) { .lp-faq-q { font-size: 17px; padding: 24px 30px; } }

.lp-faq-chevron {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform .25s var(--ease), color .2s var(--ease);
    flex-shrink: 0;
}
.lp-faq-item[open] .lp-faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.lp-faq-a {
    padding: 0 26px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}
@media (min-width: 768px) { .lp-faq-a { padding: 0 30px 26px; font-size: 15.5px; } }
.lp-faq-a p { max-width: 680px; }

/* ============ FINAL CTA ============ */
.lp-final-cta {
    padding: 40px 0 20px;
}
@media (min-width: 1024px) { .lp-final-cta { padding: 72px 0 32px; } }

.lp-final-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 45%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
    color: #fff;
    box-shadow:
        0 2px 6px rgba(38,41,44,0.1),
        0 30px 60px -30px rgba(109,59,232,0.55);
}
@media (min-width: 820px) {
    .lp-final-cta-box {
        grid-template-columns: 1fr auto;
        text-align: left;
        padding: 48px 56px;
        gap: 48px;
    }
}

.lp-final-cta-copy h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    color: #fff;
}
@media (min-width: 768px) { .lp-final-cta-copy h2 { font-size: 32px; } }
@media (min-width: 1024px) { .lp-final-cta-copy h2 { font-size: 36px; } }

.lp-final-cta-copy p {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 auto;
}
@media (min-width: 820px) { .lp-final-cta-copy p { margin: 0; font-size: 16px; } }

.lp-final-cta-btn {
    justify-self: center;
    background: #fff;
    color: var(--graphite);
    box-shadow: 0 2px 6px rgba(38,41,44,0.14), 0 12px 28px -12px rgba(255,255,255,0.5);
    white-space: nowrap;
}
.lp-final-cta-btn:hover {
    background: var(--platinum);
    color: var(--graphite);
}
@media (min-width: 820px) { .lp-final-cta-btn { justify-self: end; } }

.lp-btn-lg {
    padding: 16px 28px;
    min-height: 54px;
    font-size: 16px;
}

/* Mascot peeking out of the CTA bar — decorative only, sits behind
   the text and fades into the gradient on smaller screens. */
.lp-final-cta-mascot {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: auto;
    opacity: 0.18;
    transform: rotate(14deg);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    filter: brightness(0) invert(1);
}
@media (min-width: 1024px) {
    .lp-final-cta-mascot {
        width: 240px;
        right: 30%;
        bottom: -60px;
        opacity: 0.14;
    }
}
.lp-final-cta-copy,
.lp-final-cta-btn { position: relative; z-index: 1; }

/* ============ CONTACT ============ */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 1024px) { .lp-contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }

.lp-contact-info .lp-eyebrow { margin-bottom: 6px; }
.lp-contact-info .lp-h2 { margin-bottom: 14px; }

.lp-contact-list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lp-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}
.lp-contact-list li i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(254,91,2,0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.lp-contact-list li a { color: var(--text); font-weight: 600; }
.lp-contact-list li a:hover { color: var(--accent); }

.lp-company-meta {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    font-size: 13px;
    color: var(--text);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.lp-company-meta div span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.lp-contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}
.lp-contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.lp-form-row { margin-bottom: 18px; }
.lp-form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.lp-form-row label span {
    color: var(--accent);
    margin-left: 2px;
}
.lp-form-row input,
.lp-form-row select,
.lp-form-row textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    font-size: 15px;
    color: var(--text);
    font-family: inherit;
    transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.lp-form-row textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}
.lp-form-row input:focus,
.lp-form-row select:focus,
.lp-form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px var(--ring);
}
.lp-form-row input:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.4);
}

/* Honeypot — visually hidden but accessible */
.lp-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lp-form-consent {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 4px 0 16px;
}

.lp-submit-spinner { margin-left: 2px; }
.lp-form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-form-status[hidden] { display: none !important; }
.lp-submit-spinner[hidden] { display: none !important; }
.lp-form-status-success {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}
.lp-form-status-error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}
.lp-form-status i { font-size: 16px; }

/* ============ FOOTER ============ */
.lp-footer {
    background: var(--graphite);
    color: rgba(255,255,255,0.78);
    padding: 56px 0 0;
}
.lp-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
}
@media (min-width: 768px) { .lp-footer-inner { grid-template-columns: 1.6fr 1fr; gap: 48px; } }

.lp-footer .lp-brand-logo {
    height: 40px;
    max-width: 200px;
}
.lp-footer-brand p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}
.lp-footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lp-footer p {
    font-size: 13.5px;
    line-height: 1.7;
}
.lp-footer a {
    color: #fff;
    transition: color .15s var(--ease);
}
.lp-footer a:hover { color: var(--accent-light); }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
}
.lp-footer-bottom .lp-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-footer-copy { color: rgba(255,255,255,0.7); font-weight: 500; }
.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
}
.lp-footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
}
.lp-footer-links a:hover { color: var(--accent-light); text-decoration: underline; }
.lp-footer-sep { color: rgba(255,255,255,0.3); }
.lp-footer-legal {
    font-size: 11.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.4);
}

/* ============ LIVE DEMO IFRAME (hero phone) ============ */
/* The hero mockup is an <iframe> loading the real app in demo mode.
   The parent .lp-phone-screen already provides the dark bezel and
   rounded clip; the iframe just needs to fill it without borders. */
.lp-phone-live .lp-phone-screen {
    padding: 0;
    background: var(--platinum);
    position: relative;
}
/* Render the iframe at a "real phone" virtual viewport (420px wide) and
   scale it down to fit the mockup frame. Without this, the app's CSS
   thinks it's inside a tiny 240–280px viewport and everything looks
   zoomed-in and oversized. --phone-scale is tuned per phone size below. */
.lp-phone-live { --phone-scale: 0.67; }
.lp-phone-sm.lp-phone-live { --phone-scale: 0.57; }
.lp-phone-iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / var(--phone-scale));
    height: calc(100% / var(--phone-scale));
    transform: scale(var(--phone-scale));
    transform-origin: top left;
    border: 0;
    border-radius: inherit;
    background: var(--platinum);
    /* Mockups are meant as static previews — block all interaction so
       scrolling the page doesn't get hijacked and users can't click
       into the embedded app. */
    pointer-events: none;
    user-select: none;
    touch-action: none;
}
/* Subtle loading placeholder — the iframe paints over it once the app
   bootstraps. */
.lp-phone-live .lp-phone-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(254,91,2,0.12) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(109,59,232,0.12) 0%, transparent 55%),
        var(--platinum);
    z-index: 0;
}
.lp-phone-iframe { z-index: 1; }

/* ============ "MASZ JUŻ KONTO?" SECTION ============ */
.lp-app-link { padding: 0 0 40px; }
.lp-app-link-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    box-shadow: var(--shadow);
}
@media (max-width: 720px) {
    .lp-app-link-box { grid-template-columns: 1fr; text-align: center; }
    .lp-app-link-icon { margin: 0 auto; }
}
.lp-app-link-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(254,91,2,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.lp-app-link-copy h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.lp-app-link-copy p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.55;
}

/* Store badge actions wrapper */
.lp-app-link-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
@media (max-width: 720px) {
    .lp-app-link-actions { align-items: center; }
}
.lp-store-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
@media (max-width: 720px) {
    .lp-store-badges { align-items: center; }
}
.lp-store-label {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.lp-store-badges-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 720px) {
    .lp-store-badges-row { justify-content: center; }
}
.lp-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}
.lp-store-badge i {
    font-size: 22px;
    flex-shrink: 0;
}
.lp-store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.lp-store-badge-text small {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.85;
}
a.lp-store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    color: #fff;
    text-decoration: none;
}
.lp-store-badge--disabled {
    background: #888;
    opacity: 0.7;
}
.lp-store-badge--disabled:hover {
    opacity: 0.9;
    background: #777;
}
.lp-store-badge-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 10px;
    pointer-events: none;
}

/* =============================================================
   COOKIE CONSENT BANNER
   ============================================================= */
.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(38,41,44,0.12);
    padding: 20px 24px;
    animation: ccSlideUp 0.35s var(--ease) both;
}
@keyframes ccSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cc-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.cc-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}
.cc-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cc-text a:hover { color: var(--primary-dark); }
.cc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cc-btn {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cc-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }
    .cc-actions {
        justify-content: center;
    }
}
