/* ── Value cards ───────────────────────────────────────── */
.hp-value-card {
    border: 1px solid rgba(95,73,142,.1);
    border-radius: 16px;
    background: #fff;
    padding: 28px 24px;
    height: 100%;
    transition: transform .15s, box-shadow .2s;
}

.hp-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(95,73,142,.1);
}

.hp-value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.hp-value-card p {
    font-size: .85rem;
    color: #6b7080;
    line-height: 1.55;
    margin: 0;
}

.hp-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hp-value-icon i { font-size: 1.3rem; }

.hp-value-icon--purple {
    background: rgba(95,73,142,.06);
    border: 1px solid rgba(95,73,142,.14);
}
.hp-value-icon--purple i { color: #5f498e; }

.hp-value-icon--green {
    background: rgba(26,135,84,.06);
    border: 1px solid rgba(26,135,84,.14);
}
.hp-value-icon--green i { color: #1a8754; }

.hp-value-icon--blue {
    background: rgba(59,113,202,.06);
    border: 1px solid rgba(59,113,202,.14);
}
.hp-value-icon--blue i { color: #3b71ca; }

/* ── Main screenshot ───────────────────────────────────── */
.mp-screenshot--main {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(95,73,142,.12);
}

.mp-screenshot--main img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── CTA accent button ─────────────────────────────────── */
.mp-btn--cta-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background: #e8450a; */
    background: #5f498e;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(43, 31, 69, .45);
    transition: background .18s, transform .15s, box-shadow .18s;
}
.mp-btn--cta-accent:hover {
    background: #382957;
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(43, 31, 69, .45);
    color: #fff !important;
}

/* ── Module chips ──────────────────────────────────────── */
.hp-modules-group { margin-bottom: 8px; }

.hp-modules-group-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.hp-modules-group-label--green { color: #1a8754; }
.hp-modules-group-label--purple { color: #5f498e; }

.hp-module-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: transform .12s, box-shadow .15s, background .12s;
    height: 100%;
}

.hp-module-chip i { font-size: 1.1rem; flex-shrink: 0; }

.hp-module-chip--green {
    background: rgba(26,135,84,.04);
    border: 1px solid rgba(26,135,84,.15);
    color: #1a1a2e;
}
.hp-module-chip--green i { color: #1a8754; }
.hp-module-chip--green:hover {
    background: rgba(26,135,84,.09);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26,135,84,.1);
    color: #1a1a2e;
}

.hp-module-chip--purple {
    background: rgba(95,73,142,.04);
    border: 1px solid rgba(95,73,142,.12);
    color: #1a1a2e;
}
.hp-module-chip--purple i { color: #5f498e; }
.hp-module-chip--purple:hover {
    background: rgba(95,73,142,.09);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(95,73,142,.1);
    color: #1a1a2e;
}

/* ── Testimonial / dowód społeczny ─────────────────────── */
.hp-testimonial {
    background: #fff;
    border: 1px solid rgba(95,73,142,.1);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
}

.hp-testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.6;
    margin: 16px 0 24px;
}

.hp-testimonial-icon {
    color: #5f498e;
    font-size: 1.6rem;
    opacity: .35;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(95,73,142,.08);
    border: 2px solid rgba(95,73,142,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f498e;
    flex-shrink: 0;
}

.hp-testimonial-author strong {
    display: block;
    font-size: .9rem;
    color: #1a1a2e;
}

.hp-testimonial-author span {
    font-size: .78rem;
    color: #6b7080;
}

/* ── Stats grid ────────────────────────────────────────── */
.hp-stats-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6b7080;
    margin-bottom: 20px;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hp-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #5f498e;
    letter-spacing: -.03em;
    line-height: 1;
}

.hp-stat-label {
    font-size: .78rem;
    color: #6b7080;
    line-height: 1.3;
}

/* ── Pricing teaser ────────────────────────────────────── */
.hp-pricing-card {
    border: 1px solid rgba(95,73,142,.12);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .15s, box-shadow .2s;
    position: relative;
}

.hp-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(95,73,142,.1);
}

.hp-pricing-card--featured {
    border-color: #5f498e;
    border-width: 2px;
}

.hp-pricing-card--ultimate {
    border: 2px solid #d1ccd9;
    background: #f9f8fb;
}

.hp-pricing-ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    transform: rotate(45deg);
    background: #5f498e;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 36px;
    z-index: 2;
}

.hp-pricing-header {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.hp-pricing-header--featured {
    background: linear-gradient(135deg, #3d2a63, #5f498e);
    border-bottom: none;
}

.hp-pricing-header--ultimate {
    background: #f0eef5;
    border-bottom: 1px solid #e0dce8;
}

.hp-pricing-plan {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5f498e;
    display: block;
    margin-bottom: 6px;
}
.hp-pricing-plan--featured { color: rgba(255,255,255,.65); }
.hp-pricing-plan--ultimate { color: #7c6a9e; }

.hp-pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -.03em;
    line-height: 1;
}
.hp-pricing-amount--featured { color: #fff; }
.hp-pricing-amount--ultimate {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a3870;
}

.hp-pricing-period {
    font-size: .8rem;
    color: #6b7080;
}
.hp-pricing-period--featured { color: rgba(255,255,255,.5); }

.hp-pricing-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-pricing-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: #1a1a2e;
}

.hp-pricing-feat i {
    color: #1a8754;
    font-size: .78rem;
    flex-shrink: 0;
}

.hp-pricing-footer {
    padding: 0 24px 24px;
}

.mp-btn--ultimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #4a3870 !important;
    border: 2px solid #c0b8d4;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s, border-color .18s;
}
.mp-btn--ultimate:hover {
    background: #f0eef5;
    border-color: #7c6a9e;
    color: #4a3870 !important;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .hp-value-card { padding: 22px 18px; }
    .hp-module-chip { padding: 12px 14px; font-size: .8rem; }
    .hp-pricing-card .hp-pricing-header { padding: 22px 18px 16px; }
    .hp-pricing-card .hp-pricing-body { padding: 16px 18px; }
    .hp-stats-grid { gap: 14px; }
    .hp-stat-num { font-size: 1.6rem; }
}

:root {
    --oi-purple: #5f498e;
    --oi-purple-dark: #3d2a63;
    --oi-purple-light: #7b5fbf;
    --oi-purple-bg: rgba(95, 73, 142, .04);
    --oi-purple-border: rgba(95, 73, 142, .12);
    --oi-text: #1a1a2e;
    --oi-muted: #6b7080;
    --oi-bg: #f8f8fa;
    --oi-radius: 12px;
}

.oi-text-purple {
    color: var(--oi-purple);
}

/* ── GENERIC SECTIONS ─────────────────────────────────── */
.oi-section {
    padding: 72px 0;
}

.oi-section-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--oi-purple);
    background: var(--oi-purple-bg);
    border: 1px solid var(--oi-purple-border);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.oi-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--oi-text);
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.oi-section-desc {
    font-size: 1rem;
    color: var(--oi-muted);
    max-width: 560px;
    line-height: 1.6;
}

.oi-link-more {
    font-size: .88rem;
    font-weight: 600;
    color: var(--oi-purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .15s;
}

.oi-link-more:hover {
    gap: 10px;
    color: var(--oi-purple-dark);
}

/* ── SOCIAL PROOF ─────────────────────────────────────── */
.oi-proof-section {
    background: linear-gradient(135deg, var(--oi-purple-dark), var(--oi-purple));
}

.oi-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}

.oi-stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.oi-proof-quote {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.oi-proof-quote blockquote p {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    margin-bottom: 12px;
}

.oi-proof-quote blockquote footer {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

/* ── Inline-style replacements (homepage) ──────────────── */
.hp-meta-small {
    font-size: .78rem;
    color: #6b7080;
}

.hp-btn-ghost-sm {
    font-size: .82rem;
    padding: 10px 20px;
}

.hp-pricing-btn {
    width: 100%;
    justify-content: center;
    font-size: .82rem;
}

/* ── Ścieżki (3 karty pod hero: audyt / rejestracja / wdrożenie) ── */
.hp-path-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,.07);
	background: #fff;
	padding: 28px;
	transition: transform .18s ease, box-shadow .18s ease;
}
.hp-path-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(61,42,99,.12);
}
.hp-path-card--purple { background: linear-gradient(180deg,#faf9fd,#fff); border-color: rgba(95,73,142,.18); }
.hp-path-card--blue   { background: linear-gradient(180deg,#f8fafd,#fff); border-color: rgba(59,113,202,.18); }
.hp-path-card--green  { background: linear-gradient(180deg,#f7fcf9,#fff); border-color: rgba(26,135,84,.18); }

.hp-path-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}
.hp-path-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hp-path-icon i { font-size: 1.5rem; }
.hp-path-card--purple .hp-path-icon { background: rgba(95,73,142,.1); color: #5f498e; }
.hp-path-card--blue   .hp-path-icon { background: rgba(59,113,202,.1); color: #3b71ca; }
.hp-path-card--green  .hp-path-icon { background: rgba(26,135,84,.1);  color: #1a8754; }

.hp-path-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #1a1a2e;
	margin: 0 0 7px;
	line-height: 1.2;
}
.hp-path-badge {
	display: inline-block;
	padding: 3px 11px;
	border-radius: 100px;
	font-size: .72rem;
	font-weight: 700;
}
.hp-path-card--purple .hp-path-badge { background: rgba(95,73,142,.1); color: #5f498e; }
.hp-path-card--blue   .hp-path-badge { background: rgba(59,113,202,.1); color: #3b71ca; }
.hp-path-card--green  .hp-path-badge { background: rgba(26,135,84,.1);  color: #1a8754; }

.hp-path-desc {
	color: #6b7080;
	font-size: .95rem;
	line-height: 1.55;
	margin-bottom: 16px;
}
.hp-path-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.hp-path-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .9rem;
	color: #1a1a2e;
	font-weight: 500;
}
.hp-path-list i { width: 16px; height: 16px; flex-shrink: 0; }
.hp-path-card--purple .hp-path-list i { color: #5f498e; }
.hp-path-card--blue   .hp-path-list i { color: #3b71ca; }
.hp-path-card--green  .hp-path-list i { color: #1a8754; }

.hp-path-cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: .95rem;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.hp-path-cta i { width: 18px; height: 18px; }
/* card 1 — solid */
.hp-path-cta--purple { background: #5f498e; color: #fff; border: 1px solid #5f498e; }
.hp-path-cta--purple:hover { background: #4c3a72; border-color: #4c3a72; color: #fff; }
/* cards 2,3 — outline */
.hp-path-cta--blue { background: #fff; color: #3b71ca; border: 1px solid rgba(59,113,202,.4); }
.hp-path-cta--blue:hover { background: #3b71ca; color: #fff; border-color: #3b71ca; }
.hp-path-cta--green { background: #fff; color: #1a8754; border: 1px solid rgba(26,135,84,.4); }
.hp-path-cta--green:hover { background: #1a8754; color: #fff; border-color: #1a8754; }

.hp-paths-trust {
	text-align: center;
	margin: 30px 0 0;
	color: #6b7080;
	font-size: .9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.hp-paths-trust i { width: 18px; height: 18px; color: #5f498e; }
