/* Sekcja 11 – Porozmawiajmy o Twoim sposobie pracy i rozliczeń */

.profilio-section11 {
	font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: radial-gradient(circle at top, #f8fafc 0, #ffffff 40%, #f0fdf4 100%);
	padding: 72px 16px 80px;
}

.profilio-section11 *,
.profilio-section11 *::before,
.profilio-section11 *::after {
	box-sizing: border-box;
}

/* Reset lokalny */
.profilio-section11 p,
.profilio-section11 h1,
.profilio-section11 h2,
.profilio-section11 h3,
.profilio-section11 h4,
.profilio-section11 h5,
.profilio-section11 h6,
.profilio-section11 label {
	margin: 0;
	padding: 0;
	color: #0f172a;
}

.profilio-section11__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.profilio-section11__grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 960px) {
	.profilio-section11__grid {
		flex-direction: row;
		align-items: flex-start;
	}
}

.profilio-section11__left {
	flex: 1.15;
}

/* Badge */

.profilio-section11__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	margin-bottom: 14px;
}

.profilio-section11__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #22c55e;
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.20);
}

.profilio-section11__badge-text {
	font-size: 12px;
	font-weight: 500;
	color: #0f766e;
}

.profilio-section11__title {
	font-size: 26px;
	line-height: 1.25;
	font-weight: 600;
	color: #020617;
	margin-bottom: 14px;
}

@media (min-width: 768px) {
	.profilio-section11__title {
		font-size: 30px;
	}
}

.profilio-section11__lead {
	font-size: 14px;
	line-height: 1.7;
	color: #4b5563;
	max-width: 480px;
	margin-bottom: 18px;
}

/* Bullets */

.profilio-section11__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.profilio-section11__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.profilio-section11__bullet-icon {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: #ecfdf5;
	color: #059669;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	margin-top: 2px;
}

.profilio-section11__bullet-text {
	font-size: 13px;
	color: #374151;
}

/* Quick chips */

.profilio-section11__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.pf-contact-chip {
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #111827;
	font-size: 12px;
	font-weight: 500;
	padding: 6px 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 4px 8px rgba(15, 23, 42, 0.04);
	transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.1s ease;
}

.pf-contact-chip--primary {
	background: #020617;
	color: #f9fafb;
	border-color: #020617;
}

.pf-contact-chip__dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #22c55e;
}

.pf-contact-chip:hover {
	background: #f9fafb;
	box-shadow: 0 5px 12px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
}

.pf-contact-chip--primary:hover {
	background: #111827;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.profilio-section11__note {
	font-size: 12px;
	color: #6b7280;
}

/* Prawa kolumna */

.profilio-section11__right {
	flex: 1.4;
}

.profilio-form-card {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 26px;
	border: 1px solid #e5e7eb;
	padding: 20px 18px 22px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
	backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
	.profilio-form-card {
		padding: 22px 24px 26px;
	}
}

/* Alerty */

.pf-form-alert {
	display: none;
	align-items: flex-start;
	gap: 8px;
	padding: 9px 10px;
	border-radius: 14px;
	font-size: 12px;
	margin-bottom: 10px;
}

.pf-form-alert__icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 12px;
}

.pf-form-alert--success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.pf-form-alert--success .pf-form-alert__icon {
	background: #22c55e;
	color: #ecfdf5;
}

.pf-form-alert--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
}

.pf-form-alert--error .pf-form-alert__icon {
	background: #ef4444;
	color: #fef2f2;
}

.pf-form-alert.is-visible {
	display: flex;
}

/* Header formularza */

.profilio-form-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
}

.profilio-form-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	font-size: 11px;
	color: #047857;
}

.profilio-form-card__badge-icon {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #059669;
	color: #ecfdf5;
	font-size: 10px;
}

.profilio-form-card__response-time {
	font-size: 11px;
	color: #6b7280;
}

.profilio-form-card__title {
	font-size: 18px;
	font-weight: 600;
	color: #020617;
	margin-bottom: 4px;
}

.profilio-form-card__subtitle {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 16px;
}

/* Chip groups */

.pf-chip-group {
	margin-bottom: 14px;
}

.pf-chip-group__label {
	font-size: 12px;
	font-weight: 500;
	color: #111827;
	margin-bottom: 8px;
}

.pf-chip-group__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pf-chip {
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #111827;
	font-size: 11.5px;
	font-weight: 500;
	padding: 6px 11px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.pf-chip__dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #bbf7d0;
}

.pf-chip.is-active {
	background: #059669;
	color: #ecfdf5;
	border-color: #059669;
	box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}

.pf-chip.is-active .pf-chip__dot {
	background: #ecfdf5;
}

.pf-chip-group__error {
	display: none;
	font-size: 11px;
	color: #b91c1c;
	margin-top: 4px;
}

.pf-chip-group__error.is-visible {
	display: block;
}

/* Pola z etykietą pływającą */

.pf-fields-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}

@media (min-width: 720px) {
	.pf-fields-row {
		flex-direction: row;
	}
}

.pf-field {
	flex: 1;
}

.pf-field__inner {
	position: relative;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
	display: flex;
	align-items: stretch;
}

.pf-field__inner--phone {
	padding-left: 52px;
}

.pf-field__inner--textarea {
	align-items: stretch;
}

.pf-field__icon {
	width: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 13px;
}

.pf-field__prefix {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	color: #4b5563;
	background: #f3f4f6;
}

.pf-field__input,
.pf-field__textarea {
	border: none;
	outline: none;
	background: transparent;
	width: 100%;
	font-size: 13px;
	color: #111827;
	padding: 12px 12px 10px;
}

.pf-field__input {
	padding-left: 10px;
}

.pf-field__input--noicon {
	padding-left: 12px;
}

.pf-field__textarea {
	resize: vertical;
	min-height: 120px;
	padding: 14px 12px 10px;
}

.pf-field__input::placeholder,
.pf-field__textarea::placeholder {
	color: transparent;
}

.pf-field__label {
	position: absolute;
	left: 42px;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #9ca3af;
	pointer-events: none;
	transition: all 0.14s ease;
}

/* bez ikony */
.pf-field__input--noicon ~ .pf-field__label {
	left: 14px;
}

/* telefon z prefixem */
.pf-field__inner--phone .pf-field__label {
	left: 64px;
}

/* textarea */
.pf-field__inner--textarea .pf-field__label {
	top: 18px;
	transform: none;
}

/* Focus / filled */

.pf-field__input:focus + .pf-field__label,
.pf-field__textarea:focus + .pf-field__label,
.pf-field--has-value .pf-field__label {
	top: 7px;
	transform: none;
	font-size: 11px;
	color: #059669;
}

.pf-field__input:focus,
.pf-field__textarea:focus {
	outline: none;
}

.pf-field__inner:focus-within {
	border-color: #34d399;
	box-shadow: 0 0 0 1px #6ee7b7, 0 8px 18px rgba(16, 185, 129, 0.25);
}

/* Błędy pól */

.pf-field__error {
	display: none;
	font-size: 11px;
	color: #b91c1c;
	margin-top: 4px;
}

.pf-field__help {
	font-size: 11px;
	color: #6b7280;
	margin-top: 4px;
}

.pf-field--error .pf-field__inner {
	border-color: #f87171;
	box-shadow: 0 0 0 1px #fecaca;
}

.pf-field--error .pf-field__label {
	color: #b91c1c;
}

.pf-field--error .pf-field__error {
	display: block;
}

/* Pole profilu na start ukryte */

.pf-field--profile-extra {
	display: none;
	margin-bottom: 10px;
}

/* Dodatkowe pola dla ról */

.pf-role-extra {
	display: none;
	margin-bottom: 12px;
}

/* Zgoda RODO */

.pf-consent {
	margin-top: 6px;
	margin-bottom: 14px;
}

.pf-consent__label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11.5px;
	color: #4b5563;
	cursor: pointer;
}

.pf-consent__checkbox {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	border-radius: 5px;
	border: 1px solid #d1d5db;
	appearance: none;
	background: #ffffff;
	cursor: pointer;
	position: relative;
}

.pf-consent__checkbox:checked {
	background: #059669;
	border-color: #059669;
}

.pf-consent__checkbox:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: 2px solid #ecfdf5;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
}

.pf-consent__text a {
	color: #0ea5e9;
	text-decoration: underline;
}

.pf-consent__error {
	display: none;
	font-size: 11px;
	color: #b91c1c;
	margin-top: 4px;
}

.pf-consent__error.is-visible {
	display: block;
}

/* Submit */

.pf-submit {
	text-align: left;
}

.pf-submit__btn {
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background-image: linear-gradient(to right, #059669, #16a34a);
	color: #ecfdf5;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 14px 30px rgba(22, 163, 74, 0.4);
	transition: transform 0.1s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.pf-submit__btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.03);
	box-shadow: 0 16px 40px rgba(22, 163, 74, 0.55);
}

.pf-submit__btn:active {
	transform: translateY(0);
	box-shadow: 0 10px 26px rgba(22, 163, 74, 0.45);
}

.pf-submit__note {
	font-size: 11px;
	color: #6b7280;
	margin-top: 6px;
}

/* Responsywność drobna */

@media (max-width: 768px) {
	.profilio-form-card__header {
		flex-direction: column;
		align-items: flex-start;
	}
}
