/* ============================================
   ORAV Landing Page Styles
   ============================================ */

:root {
    --lp-primary: #1ab5bf;
    --lp-primary-dark: #0d9aa5;
    --lp-primary-light: #2ecdd6;
    --lp-accent: #f59e0b;
    --lp-dark: #0d1f2d;
    --lp-dark-card: #122433;
    --lp-dark-border: #1e3a4a;
    --lp-text: #e8f5f7;
    --lp-muted: #7db8c4;
    --lp-light: #f0fbfc;
    --lp-success: #10b981;
    --lp-danger: #ef4444;
    --lp-warning: #f59e0b;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body.lp-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background-color: var(--lp-dark);
    color: var(--lp-text);
    padding-top: 0 !important;
    overflow-x: hidden;
    max-width: 100%;
}

/* Override Yii2 default padding */
main > .container, main > .container-fluid { padding-top: 0 !important; }

/* ============ NAVBAR ============ */
.lp-navbar {
    background: rgba(10, 28, 38, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 181, 191, 0.2);
    padding: 0.85rem 0;
    z-index: 1050;
    transition: all 0.3s;
}

.lp-navbar.scrolled {
    background: rgba(10, 28, 38, 0.99);
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.lp-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.lp-brand-icon { color: var(--lp-primary); }
.lp-brand-img { width: 34px; height: 34px; vertical-align: middle; margin-right: 6px; object-fit: contain; }

.lp-navbar .nav-link {
    color: var(--lp-muted) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.lp-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.06);
}

/* ============ BUTTONS — styl outlined / minimalistyczny ============
   Wyższa specyficzność niż Bootstrap's .btn { color: var(--bs-btn-color) }
   ============================================ */

/* Bazowe właściwości wspólne */
.btn.lp-btn-primary, a.lp-btn-primary, button.lp-btn-primary,
.btn.lp-btn-ghost,   a.lp-btn-ghost,
.btn.lp-btn-outline, a.lp-btn-outline,
.btn.lp-btn-outline-primary, a.lp-btn-outline-primary,
.btn.lp-btn-outline-white,   a.lp-btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.6rem 1.5rem;
    border-radius: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease,
                border-color 0.18s ease, box-shadow 0.18s ease,
                transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

.lp-btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
}

/* ----- PRIMARY (na ciemnym tle) -----
   outlined teal → fill teal + biały tekst */
.btn.lp-btn-primary, a.lp-btn-primary, button.lp-btn-primary {
    --bs-btn-color: var(--lp-primary);
    --bs-btn-hover-color: #fff;
    background: transparent;
    color: var(--lp-primary) !important;
    border: 1.5px solid var(--lp-primary);
}

.btn.lp-btn-primary:hover, a.lp-btn-primary:hover, button.lp-btn-primary:hover,
.btn.lp-btn-primary:focus, a.lp-btn-primary:focus, button.lp-btn-primary:focus {
    background: var(--lp-primary) !important;
    color: #fff !important;
    border-color: var(--lp-primary);
    box-shadow: 0 4px 18px rgba(26, 181, 191, 0.25);
    transform: translateY(-1px);
}

/* ----- GHOST (drugi przycisk w hero, na ciemnym tle) -----
   cienka jasna ramka → lekkie wypełnienie */
.btn.lp-btn-ghost, a.lp-btn-ghost {
    --bs-btn-color: var(--lp-muted);
    --bs-btn-hover-color: #fff;
    background: transparent;
    color: var(--lp-muted) !important;
    border: 1.5px solid var(--lp-dark-border);
}

.btn.lp-btn-ghost:hover, a.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ----- OUTLINE (sekcja tech, na ciemnym tle) -----
   jak ghost ale tekst jaśniejszy */
.btn.lp-btn-outline, a.lp-btn-outline {
    --bs-btn-color: var(--lp-text);
    --bs-btn-hover-color: var(--lp-primary-light);
    background: transparent;
    color: var(--lp-text) !important;
    border: 1.5px solid var(--lp-dark-border);
}

.btn.lp-btn-outline:hover, a.lp-btn-outline:hover {
    background: transparent !important;
    color: var(--lp-primary-light) !important;
    border-color: var(--lp-primary-light);
}

/* ----- OUTLINE-PRIMARY (cennik, na białym tle) -----
   teal ramka → fill teal + biały */
.btn.lp-btn-outline-primary, a.lp-btn-outline-primary {
    --bs-btn-color: var(--lp-primary);
    --bs-btn-hover-color: #fff;
    background: transparent;
    color: var(--lp-primary) !important;
    border: 1.5px solid var(--lp-primary);
}

.btn.lp-btn-outline-primary:hover, a.lp-btn-outline-primary:hover,
.btn.lp-btn-outline-primary:focus, a.lp-btn-outline-primary:focus {
    background: var(--lp-primary) !important;
    color: #fff !important;
    border-color: var(--lp-primary);
    box-shadow: 0 4px 18px rgba(26, 181, 191, 0.2);
    transform: translateY(-1px);
}

/* ----- OUTLINE-WHITE (sekcja CTA, na ciemno-tealowym tle) -----
   biała ramka → wypełnienie białe + ciemny tekst */
.btn.lp-btn-outline-white, a.lp-btn-outline-white {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: var(--lp-dark);
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn.lp-btn-outline-white:hover, a.lp-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7);
}

/* ============ SECTION HELPERS ============ */
.lp-section-dark { background: var(--lp-dark); padding: 90px 0; }
.lp-section-light { background: var(--lp-light); padding: 90px 0; }

.lp-section-tag {
    display: inline-block;
    background: rgba(26, 181, 191, 0.12);
    color: var(--lp-primary-light);
    border: 1px solid rgba(26, 181, 191, 0.25);
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lp-tag-primary {
    background: rgba(26, 181, 191, 0.08);
    color: var(--lp-primary);
    border-color: rgba(26, 181, 191, 0.18);
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.lp-title-dark { color: var(--lp-dark); }

.lp-section-subtitle {
    font-size: 1.05rem;
    color: var(--lp-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-subtitle-dark { color: #64748b; }

/* ============ HERO ============ */
.lp-hero {
    background: var(--lp-dark);
    background-image:
        radial-gradient(at 30% 20%, rgba(26, 181, 191, 0.18) 0px, transparent 55%),
        radial-gradient(at 80% 80%, rgba(245, 158, 11, 0.1) 0px, transparent 55%);
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lp-hero-content { padding-right: 2rem; }

.lp-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #34d399;
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.lp-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.lp-hero-subtitle {
    font-size: 1.15rem;
    color: var(--lp-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.lp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.lp-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lp-dark-border);
    margin-top: 2.5rem;
}

.lp-stat { display: flex; flex-direction: column; }
.lp-stat-number { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.lp-stat-label { font-size: 0.78rem; color: var(--lp-muted); margin-top: 0.25rem; }

/* ---- Dashboard Mockup ---- */
.lp-hero-visual { position: relative; }

.lp-dashboard-mockup {
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.lp-mockup-topbar {
    background: #070d1a;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--lp-dark-border);
}

.lp-mockup-dots { display: flex; gap: 6px; }
.lp-mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lp-mockup-dots span:nth-child(1) { background: #ef4444; }
.lp-mockup-dots span:nth-child(2) { background: #f59e0b; }
.lp-mockup-dots span:nth-child(3) { background: #10b981; }

.lp-mockup-url {
    font-size: 0.72rem;
    color: var(--lp-muted);
    background: #0f172a;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}

.lp-mockup-body { display: flex; height: 340px; }

.lp-mockup-sidebar {
    width: 155px;
    background: #070d1a;
    padding: 1rem 0;
    border-right: 1px solid var(--lp-dark-border);
    flex-shrink: 0;
}

.lp-mock-nav-item {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    color: var(--lp-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border-right: 2px solid transparent;
}

.lp-mock-nav-item.active, .lp-mock-nav-item:hover {
    background: rgba(26, 181, 191, 0.12);
    color: var(--lp-primary-light);
    border-right-color: var(--lp-primary);
}

.lp-mockup-main { flex: 1; padding: 1.25rem; overflow: hidden; }

.lp-mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.lp-mock-header h6 { font-size: 0.85rem; font-weight: 700; color: #fff; margin: 0; }
.lp-mock-status { font-size: 0.72rem; display: flex; align-items: center; gap: 0.4rem; }
.lp-mock-status.online { color: var(--lp-success); }

.lp-mock-cards { display: flex; gap: 0.6rem; margin-bottom: 1rem; }

.lp-mock-card { flex: 1; padding: 0.65rem; border-radius: 8px; text-align: center; }
.lp-mock-card.green { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); }
.lp-mock-card.red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.lp-mock-card.blue { background: rgba(26,181,191,0.1); border: 1px solid rgba(26,181,191,0.2); }
.lp-mock-card-val { font-size: 1.4rem; font-weight: 800; color: #fff; }
.lp-mock-card-lbl { font-size: 0.65rem; color: var(--lp-muted); }

.lp-mock-list { display: flex; flex-direction: column; gap: 0.35rem; }

.lp-mock-device {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    font-size: 0.75rem;
    color: var(--lp-muted);
}

.lp-mock-device .badge { margin-left: auto; font-size: 0.62rem; }

.lp-hero-float-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.lp-hero-float-badge i { font-size: 1.4rem; }

/* ============ TRUST BAR ============ */
.lp-trust {
    background: var(--lp-dark-card);
    border-top: 1px solid var(--lp-dark-border);
    border-bottom: 1px solid var(--lp-dark-border);
    padding: 2.5rem 0;
}

.lp-trust-label {
    text-align: center;
    color: var(--lp-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lp-trust-logos { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; }

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lp-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-trust-item i { font-size: 1.2rem; color: var(--lp-primary-light); }
.lp-trust-item:hover { color: #fff; }

/* ============ PROBLEM ============ */
.lp-problem-card {
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.lp-problem-card:hover {
    border-color: rgba(236, 72, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.lp-problem-icon {
    width: 52px; height: 52px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--lp-accent);
    margin-bottom: 1.25rem;
}

.lp-problem-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.lp-problem-card p { color: var(--lp-muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ============ SOLUTION ============ */
.lp-before, .lp-after { padding: 1.5rem; border-radius: 12px; }

.lp-before {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.lp-after {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.lp-ba-arrow { display: flex; justify-content: center; padding: 0.6rem 0; font-size: 1.75rem; color: var(--lp-primary); }

.lp-ba-label { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; margin-bottom: 0.75rem; font-size: 0.88rem; }
.before-label { color: #ef4444; }
.after-label { color: var(--lp-success); }
.lp-before p, .lp-after p { color: #475569; font-size: 0.92rem; line-height: 1.65; margin: 0; }

.lp-solution-features { display: flex; flex-direction: column; gap: 1.25rem; }

.lp-solution-item { display: flex; gap: 1rem; align-items: flex-start; }
.lp-check-icon { font-size: 1.2rem; color: var(--lp-primary); flex-shrink: 0; margin-top: 0.1rem; }
.lp-solution-item strong { display: block; color: var(--lp-dark); font-weight: 700; margin-bottom: 0.25rem; font-size: 0.95rem; }
.lp-solution-item p { color: #64748b; font-size: 0.88rem; margin: 0; }

/* ============ FEATURES ============ */
.lp-feature-card {
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.lp-feature-card:hover {
    border-color: rgba(26, 181, 191, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 181, 191, 0.1);
}

.lp-feature-icon {
    width: 52px; height: 52px;
    background: rgba(26, 181, 191, 0.1);
    border: 1px solid rgba(26, 181, 191, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--lp-primary-light);
    margin-bottom: 1.25rem;
}

.lp-icon-pink {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: rgba(236, 72, 153, 0.2) !important;
    color: var(--lp-accent) !important;
}

.lp-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.lp-feature-card p { color: var(--lp-muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ============ SCREENSHOTS ============ */
.lp-tab-buttons { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; justify-content: center; }

.lp-tab-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-tab-btn:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.lp-tab-btn.active { background: var(--lp-primary); border-color: var(--lp-primary); color: #fff; }

.lp-tab-pane { display: none; }
.lp-tab-pane.active { display: block; }

.lp-screen-mockup {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    max-width: 800px;
    margin: 0 auto;
}

.lp-screen-header { background: #0f172a; padding: 1rem 1.5rem; border-bottom: 1px solid #334155; }
.lp-screen-title { color: #94a3b8; font-size: 0.85rem; font-weight: 600; }
.lp-screen-content { padding: 2rem; }
.lp-screen-caption { text-align: center; color: #64748b; font-size: 0.82rem; font-style: italic; margin-top: 1.5rem; }

.lp-screen-metrics { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

.lp-metric { flex: 1; min-width: 100px; padding: 1.25rem; border-radius: 12px; text-align: center; }
.lp-metric.green { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); }
.lp-metric.red { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.lp-metric.blue { background: rgba(26,181,191,0.1); border: 1px solid rgba(26,181,191,0.2); }
.lp-metric.purple { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); }
.lp-metric strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.lp-metric small { color: #94a3b8; font-size: 0.78rem; }

.lp-screen-device-list, .lp-screen-projects, .lp-screen-schedule, .lp-screen-kiosk {
    display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 0.5rem;
}

.lp-screen-device, .lp-screen-project {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.86rem; color: #94a3b8;
}

.lp-screen-device i { font-size: 0.7rem; }
.lp-screen-project i { font-size: 1rem; color: var(--lp-primary-light); }
.lp-screen-project .badge { margin-left: auto; }

.lp-schedule-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; font-size: 0.84rem;
}

.lp-schedule-time { color: var(--lp-primary-light); font-weight: 600; min-width: 115px; font-size: 0.8rem; }
.lp-schedule-content { color: #f1f5f9; flex: 1; }
.lp-schedule-days { color: #64748b; font-size: 0.76rem; }

.lp-kiosk-allowed, .lp-kiosk-blocked {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.86rem;
}

.lp-kiosk-allowed { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); }
.lp-kiosk-blocked { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); }
.lp-kiosk-allowed span, .lp-kiosk-blocked span { margin-left: auto; font-size: 0.76rem; }

/* ============ CASE STUDIES ============ */
.lp-case-card {
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.lp-case-card:hover { border-color: rgba(26, 181, 191, 0.35); transform: translateY(-4px); }

.lp-case-featured {
    border-color: rgba(26, 181, 191, 0.4);
    background: linear-gradient(135deg, rgba(26, 181, 191, 0.06) 0%, var(--lp-dark-card) 100%);
}

.lp-case-icon {
    width: 56px; height: 56px;
    background: rgba(26, 181, 191, 0.1);
    border: 1px solid rgba(26, 181, 191, 0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--lp-primary-light);
    margin-bottom: 1.25rem;
}

.lp-case-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.lp-case-scenario { color: var(--lp-muted); font-size: 0.78rem; margin-bottom: 1rem; }
.lp-case-card p { color: var(--lp-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }

.lp-case-metric {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.84rem; color: var(--lp-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--lp-dark-border);
}

.lp-case-metric strong { color: #fff; }

/* ============ HOW IT WORKS ============ */
.lp-steps {
    display: flex;
    gap: 0;
    justify-content: center;
    position: relative;
}

.lp-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.lp-step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: var(--lp-primary); color: #fff;
    border-radius: 50%; font-size: 0.85rem; font-weight: 800;
    margin: 0 auto 0.75rem;
    position: relative; z-index: 1;
}

.lp-step-connector {
    position: absolute;
    top: 17px;
    left: calc(50% + 17px);
    right: calc(-50% + 17px);
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), rgba(26,181,191,0.25));
    z-index: 0;
}

.lp-step-connector.last { display: none; }

.lp-step-icon {
    width: 72px; height: 72px;
    background: rgba(26, 181, 191, 0.1);
    border: 2px solid rgba(26, 181, 191, 0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--lp-primary);
    margin: 0 auto 1.25rem;
}

.lp-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--lp-dark); margin-bottom: 0.75rem; }
.lp-step p { color: #64748b; font-size: 0.9rem; line-height: 1.65; }

/* ============ TECH ============ */
.lp-tech-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem;
    background: var(--lp-dark-card);
    border: 1px solid var(--lp-dark-border);
    border-radius: 12px;
    transition: all 0.2s;
}

.lp-tech-item:hover { border-color: rgba(26, 181, 191, 0.35); }
.lp-tech-icon { font-size: 1.4rem; color: var(--lp-primary-light); flex-shrink: 0; margin-top: 0.1rem; }
.lp-tech-item strong { display: block; color: #fff; font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem; }
.lp-tech-item p { color: var(--lp-muted); font-size: 0.83rem; margin: 0; line-height: 1.5; }

/* ============ PRICING ============ */
.lp-price-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.lp-price-card:hover {
    border-color: var(--lp-primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 181, 191, 0.12);
}

.lp-price-featured { border-color: var(--lp-primary); box-shadow: 0 8px 32px rgba(26,181,191,0.15); }

.lp-price-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--lp-primary); color: #fff;
    padding: 0.25rem 1.25rem;
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    white-space: nowrap;
}

.lp-price-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; }
.lp-price-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--lp-dark); margin-bottom: 0.75rem; }

.lp-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.lp-price-amount { font-size: 3rem; font-weight: 900; color: var(--lp-dark); line-height: 1; }
.lp-price-currency { font-size: 1rem; color: #64748b; font-weight: 500; }
.lp-price-custom { font-size: 2rem !important; }
.lp-price-header p { color: #64748b; font-size: 0.88rem; margin: 0; }

.lp-price-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }

.lp-price-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: #374151; }
.lp-price-features li i { color: var(--lp-success); font-size: 0.95rem; flex-shrink: 0; }
.lp-price-feature-na { color: #9ca3af !important; text-decoration: line-through; }
.lp-price-feature-na i { color: #d1d5db !important; }

.lp-price-badge-free {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: #22c55e; color: #fff;
    padding: 0.25rem 1.25rem;
    border-radius: 100px; font-size: 0.78rem; font-weight: 700;
    white-space: nowrap;
}
.lp-price-license {
    font-size: 0.78rem; color: #94a3b8; margin-top: 0.35rem;
    display: flex; align-items: center; gap: 0.35rem;
}
.lp-price-license strong { color: #64748b; }
.lp-price-note {
    margin-top: 2rem; text-align: center;
    font-size: 0.8rem; color: #94a3b8;
    border-top: 1px solid #e2e8f0; padding-top: 1.5rem;
}
@media (min-width: 1200px) {
    .lp-pricing-4col .lp-price-card { padding: 1.6rem; }
    .lp-pricing-4col .lp-price-amount { font-size: 2.4rem; }
    .lp-pricing-4col .lp-price-features li { font-size: 0.82rem; }
}

.lp-renew-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: #64748b; font-size: 0.88rem; text-decoration: none;
    border: 1.5px solid #e2e8f0; border-radius: 100px;
    padding: 0.4rem 1.1rem;
    transition: all 0.2s;
}
.lp-renew-link:hover {
    color: var(--lp-primary); border-color: var(--lp-primary);
    background: rgba(26,181,191,0.05);
}

/* ============ FAQ ============ */
.lp-accordion-item {
    background: var(--lp-dark-card) !important;
    border: 1px solid var(--lp-dark-border) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.lp-accordion-btn {
    background: var(--lp-dark-card) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: none !important;
    border: none;
}

.lp-accordion-btn:not(.collapsed) {
    background: rgba(26, 181, 191, 0.1) !important;
    color: var(--lp-primary-light) !important;
}

.lp-accordion-btn::after { filter: invert(1); }

.lp-accordion-body {
    background: rgba(30, 41, 59, 0.5);
    color: var(--lp-muted);
    font-size: 0.93rem;
    line-height: 1.75;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--lp-dark-border);
}

/* ============ CTA SECTION ============ */
.lp-cta-section {
    background: linear-gradient(135deg, #062025 0%, #0d3a40 50%, #062025 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lp-cta-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(at 25% 50%, rgba(26,181,191,0.3) 0px, transparent 60%),
        radial-gradient(at 75% 50%, rgba(236,72,153,0.15) 0px, transparent 60%);
    pointer-events: none;
}

.lp-cta-section > .container-xl { position: relative; z-index: 1; }

.lp-cta-title { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.lp-cta-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.65; }

.lp-cta-badges { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.lp-cta-badge {
    display: flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.85);
}

.lp-form-card { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.lp-form-title { font-size: 1.2rem; font-weight: 700; color: var(--lp-dark); margin-bottom: 1.5rem; }
.lp-form-label { font-size: 0.83rem; font-weight: 600; color: #374151; margin-bottom: 0.3rem; display: block; }

.lp-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.6rem 0.875rem;
    font-size: 0.9rem;
    color: var(--lp-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    background: #fff;
}

.lp-input:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(26,181,191,0.1);
}

.lp-form-note { font-size: 0.76rem; color: #9ca3af; text-align: center; margin: 0; }

/* ============ FOOTER ============ */
.lp-footer {
    background: #060b18;
    border-top: 1px solid var(--lp-dark-border);
    padding: 60px 0 0;
}

.lp-footer-brand { font-size: 1.5rem; font-weight: 800; color: #fff; }
.lp-footer-desc { color: var(--lp-muted); font-size: 0.88rem; line-height: 1.65; max-width: 290px; }

.lp-footer-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.lp-footer-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--lp-dark-border);
    color: var(--lp-muted);
    border-radius: 4px;
    padding: 0.18rem 0.5rem;
    font-size: 0.73rem; font-weight: 500;
}

.lp-footer-heading { color: #fff; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }

.lp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.lp-footer-links a { color: var(--lp-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.lp-footer-links a:hover { color: #fff; }

.lp-footer-main { padding-bottom: 3rem; }

.lp-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0;
    border-top: 1px solid var(--lp-dark-border);
    font-size: 0.82rem; color: var(--lp-muted);
}

.lp-footer-maker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(125, 184, 196, 0.4);
    letter-spacing: 0.05em;
}

.lp-occc-logo {
    height: 18px;
    width: auto;
    opacity: 0.35;
    filter: grayscale(30%);
    transition: opacity 0.2s, filter 0.2s;
}

.lp-occc-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .lp-hero-title { font-size: 2.5rem; }
    .lp-hero { min-height: auto; padding: 110px 0 70px; }
    .lp-hero-visual { margin-top: 3.5rem; }
    .lp-hero-float-badge { display: none; }
    .lp-hero-content { padding-right: 0; }
    .lp-steps { flex-direction: column; align-items: center; gap: 2rem; }
    .lp-step-connector { display: none; }
    .lp-step { max-width: 380px; padding: 0 1rem; }
    .lp-section-title { font-size: 2rem; }
}

/* ── Hero screenshot frame ── */
.lp-hero-screenshot-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
    background: #1e2d3a;
}
.lp-hero-screenshot-bar {
    background: #1a2a38;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-hero-screenshot-bar .lp-mockup-url { font-size: 0.72rem; color: #4a7a8a; }

/* ── Interface screenshot tabs frame ── */
.lp-screenshot-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 0 0 1px #e2e8f0;
    background: #fff;
    max-width: 960px;
    margin: 0 auto;
}
.lp-screenshot-bar {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}
.lp-screenshot-bar .lp-mockup-url { font-size: 0.72rem; color: #94a3b8; }
.lp-screenshot-caption {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    color: #64748b;
    text-align: center;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

/* ── Order/Quote form inputs (dark background pages) ── */
.lp-form-input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.lp-form-input::placeholder { color: #4a7a8a; }
.lp-form-input:focus { border-color: var(--lp-primary); background: rgba(26,181,191,0.06); }
.lp-form-input option { background: #0d1f2d; color: #e2e8f0; }
textarea.lp-form-input { resize: vertical; }

@media (max-width: 767px) {
    .lp-hero-title { font-size: 2rem; }
    .lp-section-title { font-size: 1.75rem; }
    .lp-cta-title { font-size: 1.75rem; }
    .lp-hero-ctas { flex-direction: column; }
    .lp-stats { gap: 1.25rem; }
    .lp-mockup-sidebar { display: none; }
    .lp-screen-metrics { flex-wrap: wrap; }
    .lp-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .lp-trust-logos { gap: 1.25rem; }
    .lp-cta-badges { gap: 0.5rem; }
    .lp-form-card { padding: 1.5rem; }
    .lp-section-dark, .lp-section-light { padding: 60px 0; }
}
