@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@400;500&display=swap");

:root {
	--primary: #22376d;
	--primary-dark: #22376d;
	--accent: #e30d19;
	--accent-hover: #e30d19;
	--light: #f8f9fa;
	--lighter: #ffffff;
	--gray-100: #f1f3f5;
	--gray-200: #e9ecef;
	--gray-300: #dee2e6;
	--gray-500: #6c757d;
	--gray-700: #495057;
	--gray-900: #212529;
	--success: #2a9d8f;
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "DM Sans", sans-serif !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--gray-900);
	background: var(--lighter);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Plus Jakarta Sans", sans-serif !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--gray-200);
	padding: 16px 0;
	transition: all 0.3s ease;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 95px;
}

.header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--gray-700);
	text-decoration: none;
	font-weight: 500;
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	transition: all 0.2s ease;
}

.header-phone:hover {
	background: var(--gray-100);
	color: var(--primary);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--accent);
	color: white !important;
}

.btn-primary:hover {
	background: var(--accent-hover);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: white !important;
}

.btn-lg {
	padding: 16px 32px;
	font-size: 1.05rem;
}

/* ==================== HERO ==================== */
.hero {
	padding: 140px 0 80px;
	background: linear-gradient(
		180deg,
		var(--gray-100) 0%,
		var(--lighter) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(26, 58, 92, 0.05) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	border: 1px solid var(--gray-200);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 0.875rem;
	color: var(--gray-700);
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.hero h1 {
	font-size: 3.2rem !important;
	color: var(--primary-dark) !important;
	margin-bottom: 20px !important;
	letter-spacing: -0.02em !important;
}

.hero h1 span {
	color: var(--accent);
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--gray-700);
	margin-bottom: 32px;
	max-width: 500px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.hero-trust {
	display: flex;
	gap: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--gray-700);
}

.trust-icon {
	width: 24px;
	height: 24px;
	background: var(--success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.75rem;
}

.hero-visual {
	position: relative;
}

.hero-image {
	width: 100%;
	height: 450px;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	background-image: url(../img/baner-hero.png);
	background-size: cover;
	background-position-x: center;
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.hero-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.hero-image-content {
	text-align: center;
	z-index: 1;
}

.hero-image-icon {
	font-size: 4rem;
	margin-bottom: 16px;
}

/* ==================== DLA KOGO ==================== */
.section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 2.4rem;
	color: var(--primary-dark);
	margin-bottom: 16px;
}

.section-header p {
	color: var(--gray-700);
	font-size: 1.1rem;
}

.dla-kogo {
	background: var(--lighter);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 40px;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.card-icon {
	width: 64px;
	height: 64px;
	background: var(--gray-100);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 24px;
	transition: all 0.3s ease;
}

.card:hover .card-icon {
	background: var(--primary);
	color: white;
}

.card h3 {
	font-size: 1.5rem;
	color: var(--primary-dark);
	margin-bottom: 12px;
}

.card p {
	color: var(--gray-700);
	margin-bottom: 20px;
}

.card-list {
	list-style: none;
	margin-bottom: 24px;
}
ul {
	margin: 0 !important;
}

.card-list li {
	padding: 8px 0;
	color: var(--gray-700);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
}

.card-list li::before {
	content: "→";
	color: var(--accent);
	font-weight: bold;
}

/* ==================== DLACZEGO MY ==================== */
.dlaczego-my {
	background: var(--primary-dark);
	color: white;
	position: relative;
	overflow: hidden;
}

.dlaczego-my::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.03) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.dlaczego-my .section-header h2 {
	color: white;
}

.dlaczego-my .section-header p {
	color: rgba(255, 255, 255, 0.7);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.feature {
	text-align: center;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.feature:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.feature-icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(
		135deg,
		var(--accent) 0%,
		var(--accent-hover) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin: 0 auto 20px;
	box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.feature h3 {
	font-size: 1.15rem !important;
	margin-bottom: 12px !important;
	color: white !important;
}

.feature p {
	font-size: 0.9rem !important;
	color: rgba(255, 255, 255, 0.7) !important;
	line-height: 1.5 !important;
}

/* ==================== OFERTA ==================== */
.oferta {
	background: var(--gray-100);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.product-card {
	background: white;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.product-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.product-image {
	height: 200px;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
	position: relative;
}
.product-card:nth-of-type(1) .product-image {
	background-image: url("../img/zbiorniki-przydomowe.jpg");
}
.product-card:nth-of-type(2) .product-image {
	background-image: url("../img/butle-gazowe.jpg");
	background-position-y: bottom;
}
.product-card:nth-of-type(3) .product-image {
	background-image: url("../img/gaz-luzem.png");
	background-position-y: bottom;
}

.product-content {
	padding: 32px;
}

.product-content h3 {
	font-size: 1.4rem;
	color: var(--primary-dark);
	margin-bottom: 12px;
}

.product-content > p {
	color: var(--gray-700);
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.product-list {
	list-style: none;
	margin-bottom: 24px;
	padding: 20px 0;
	border-top: 1px solid var(--gray-200);
	border-bottom: 1px solid var(--gray-200);
}

.product-list li {
	padding: 6px 0;
	color: var(--gray-700);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.product-list li::before {
	content: "✓";
	color: var(--success);
	font-weight: bold;
}

/* ==================== LICZBY ==================== */
.liczby {
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.stat {
	text-align: center;
	padding: 40px 20px;
	border-radius: var(--radius-md);
	background: var(--gray-100);
	position: relative;
}

.stat-number {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 12px;
}

.stat-number span {
	font-size: 1.5rem;
	color: var(--accent);
}

.stat-label {
	color: var(--gray-700);
	font-size: 0.95rem;
}

.certyfikaty {
	margin-top: 60px;
	padding: 40px;
	background: var(--gray-100);
	border-radius: var(--radius-lg);
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.cert-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--gray-700);
	font-size: 0.95rem;
}

.cert-icon {
	width: 48px;
	height: 48px;
	background: white;

	background-size: cover;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: var(--shadow-sm);
}
.cert-item:nth-of-type(1) .cert-icon {
	background-image: url(../img/logo-aeo.png);
}
/* .cert-item:nth-of-type(2) .cert-icon {
	background-image: url(../img/pn589.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.cert-item:nth-of-type(3) .cert-icon {
} */

/* ==================== FORMULARZ ==================== */
.formularz {
	background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
	padding: 100px 0;
}

.form-wrapper {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	border-radius: var(--radius-lg);
	padding: 50px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray-200);
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.form-header h2 {
	font-size: 2rem;
	color: var(--primary-dark);
	margin-bottom: 12px;
}

.form-header p {
	color: var(--gray-700);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gray-900);
	margin-bottom: 8px;
}

.form-group input,
.form-group select {
	padding: 14px 16px;
	border: 1px solid var(--gray-300);
	border-radius: var(--radius-sm);
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: white;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-group input::placeholder {
	color: var(--gray-500);
}

.form-group small {
	font-size: 0.8rem;
	color: var(--gray-500);
	margin-top: 6px;
}

.form-optional {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px dashed var(--gray-300);
}

.form-optional-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 500;
	cursor: pointer;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.form-optional-toggle:hover {
	text-decoration: underline;
}

.form-optional-fields {
	display: none;
}

.form-optional-fields.show {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-consent {
	margin-top: 24px;
}

.checkbox-group {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--primary);
}

.checkbox-group label {
	font-size: 0.875rem;
	color: var(--gray-700);
	line-height: 1.5;
}

.checkbox-group a {
	color: var(--primary);
}

.form-submit {
	margin-top: 32px;
}

.form-submit .btn {
	width: 100% !important;
	padding: 18px !important;
	font-size: 1.1rem !important;
}
.realfactory-body input[type="submit"] {
	background-color: #e30d19 !important;
}

.form-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
	color: var(--gray-500);
	font-size: 0.85rem;
}

.form-alternative {
	text-align: center;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--gray-200);
}

.form-alternative p {
	color: var(--gray-700);
	margin-bottom: 12px;
}

/* ==================== STOPKA ==================== */
.footer {
	background: var(--primary-dark);
	color: white;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: #fff !important;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 0.95rem;
	line-height: 1.6;
}

.footer-section h4 {
	font-size: 1rem;
	margin-bottom: 20px;
	color: white !important;
}

.footer-phones {
	list-style: none;
}

.footer-phones li {
	margin-bottom: 12px;
}

.footer-phones a {
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.footer-phones a:hover {
	color: white;
}

.footer-phones small {
	display: block;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.8rem;
	margin-top: 2px;
	margin-left: 26px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: white !important;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
	color: #fff !important;
}
.footer-bottom p {
	color: #fff !important;
}

/* ==================== POPUP TELEFON ==================== */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.popup-overlay.show {
	display: flex;
}

.popup {
	background: white;
	border-radius: var(--radius-lg);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: popupIn 0.3s ease;
}

@keyframes popupIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: none;
	background: var(--gray-100);
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.popup-close:hover {
	background: var(--gray-200);
}

.popup-header {
	padding: 32px 32px 24px;
	border-bottom: 1px solid var(--gray-200);
}

.popup-header h3 {
	font-size: 1.5rem;
	color: var(--primary-dark);
	margin-bottom: 8px;
}

.popup-header p {
	color: var(--gray-700);
	font-size: 0.95rem;
}

.popup-body {
	padding: 24px 32px 32px;
}

.popup-section {
	margin-bottom: 28px;
}

.popup-section:last-child {
	margin-bottom: 0;
}

.popup-section h4 {
	font-size: 1rem;
	color: var(--primary);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.popup-section h4::before {
	content: "";
	width: 4px;
	height: 20px;
	background: var(--accent);
	border-radius: 2px;
}

.popup-region {
	background: var(--gray-100);
	padding: 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
}

.popup-region-name {
	font-size: 0.8rem;
	color: var(--gray-500);
	margin-bottom: 8px;
}

.popup-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--primary-dark);
	text-decoration: none;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 8px 0;
	transition: color 0.2s ease;
}

.popup-phone:hover {
	color: var(--accent);
}

.popup-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	padding: 16px;
	background: var(--gray-100);
	border-radius: var(--radius-sm);
	transition: all 0.2s ease;
}

.popup-link:hover {
	background: var(--primary);
	color: white !important;
}

.popup-footer {
	padding: 20px 32px;
	background: var(--gray-100);
	text-align: center;
}

.popup-footer a {
	color: var(--primary);
	font-weight: 500;
}

/* ==================== MOBILE STICKY ==================== */
.mobile-sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 12px 16px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: none;
}

.mobile-sticky-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.mobile-sticky .btn {
	padding: 14px;
	font-size: 0.95rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-visual {
		order: -1;
	}

	.hero-image {
		height: 300px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.header-phone {
		display: none;
	}

	.hero {
		padding: 120px 0 60px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero-trust {
		flex-direction: column;
		gap: 16px;
	}

	.section {
		padding: 60px 0;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.stats-grid > *:last-child {
		grid-column: span 2;
	}

	.stat-number {
		font-size: 2.4rem;
	}

	.form-wrapper {
		padding: 32px 24px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-optional-fields.show {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.mobile-sticky {
		display: block;
	}

	.formularz {
		padding-bottom: 100px;
	}
	.cert-item:nth-of-type(3) span {
		font-size: 0.93rem;
	}
}

/* Resetuje wpływ atrybutu size="40" z CF7 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box; /* Ważne, aby padding nie powiększał inputa poza kontener */
}

.realfactory-body span.wpcf7-not-valid-tip {
	color: #c20e1a !important;
}
form.submitting .wpcf7-spinner {
	text-align: center;
	margin: 0 auto;
	display: block;
}
