/* =======================
   RESET / BASE
   ======================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #111827;
	background-color: #ffffff;
	line-height: 1.7;
	font-size: 18px;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Używamy własnego max-width, ale nie rozwalamy Bootstrapa */
.container {
	max-width: 1180px;
}

/* =======================
   HEADER
   ======================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #e5e7eb;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.logo-group {
	display: flex;
	align-items: center;
	gap: 16px;
}

.logo {
	height: 28px;
}

.logo-b2b {
	height: 26px;
}

.logo-separator {
	width: 1px;
	height: 24px;
	background: #e5e7eb;
}

/* =======================
   BUTTONS
   ======================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		transform 0.08s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: #2563eb;
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
	font-size: 16px;
}

.btn-primary:hover {
	background: #1d4ed8;
}

.btn-outline {
	border-color: #cbd5f5;
	color: #1e40af;
	background: #eff6ff;
}

.btn-outline:hover {
	background: #dbeafe;
}

.btn.small {
	padding: 6px 16px;
	font-size: 13px;
}

/* =======================
   SHARED / SECTIONS
   ======================= */

.logo-section {
	padding: 96px 0px 0px;

}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-header h2 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.section-header p {
	color: #6b7280;
	font-size: 1.05rem;

}

.accent {
	color: #0e6ace;
}

/* ===========================
   HERO – GÓRNY PASEK
   =========================== */

.hero-topbar {
	background: #0e6ace1a;
	/* jasny niebieski */
	padding: 12px 0;
	border-bottom: 1px solid #d1e4ff;
}

.hero-topbar-logo {
	height: 48px;
	width: auto;
	opacity: .9;
	transition: .25s ease;
}

.hero-topbar-logo:hover {
	opacity: 1;
	transform: scale(1.04);
}

/* ===========================
   BIAŁA SEKCJA TREŚCI
   =========================== */

.hero-content-area {
	background: #ffffff;
}

.hero-kicker {
	color: #6b7280;
	font-size: 0.95rem;
}

.hero-title-sub {
	display: block;
	font-size: 1.4rem;
	color: #111827;
	font-weight: 600;
	margin-top: 0.4rem;
}

.hero-lead {
	color: #4b5563;
	font-size: 1.1rem;
	max-width: 480px;
}

.solex-pay-logo {
	height: 70px;
}

.hero-list {
	padding-left: 0;
	list-style: none;
}

.hero-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #4b5563;
	margin-bottom: .4rem;
	font-size: 1rem;
}

.hero-list i {
	color: #0e6ace;
	font-size: 1.2rem;
}

.section-img {
	width: 103%;
	max-width: 570px;
	/* obrazek nigdy nie rośnie ponad oryginał */
	height: auto;
	display: block;
	/* margin-left: auto;
	margin-right: auto; */
}

/* Na smartfonie obrazek MA być pod tekstem */
@media (max-width: 575.98px) {
	.logo-section .col-lg-6:first-child {
		order: 1;
		/* tekst pierwszy */



	}

	.logo-section .col-lg-6:last-child {
		order: 2;
		/* obrazek drugi */
	}
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 575.98px) {
	.hero-topbar-logo {
		height: 36px;
	}

	.hero-lead {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

/* =======================
   VIDEO
   ======================= */

.video-section {
	padding: 6rem 0;
	background-color: #def0ff;
}

/* Elegancka karta dla playera */
.video-wrapper {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 18px;
	background: #f8fafc;
	/* jasne tło zamiast czarnego */
	box-shadow:
		0 10px 40px rgba(14, 106, 206, 0.12),
		/* niebieski subtelny glow */
		0 4px 18px rgba(0, 0, 0, 0.05);
	/* delikatny cień */
	border: none !important;
}

/* Film idealnie dopasowany */
.video-frame {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
	border-radius: 0 !important;
	background: #fff;
}

/* Ładne zaokrąglenie */
.video-wrapper,
.video-frame {
	border-radius: 18px !important;
}



/* =======================
   PRICING
   ======================= */

/* Pricing — styl taki jak opinie */
.pricing {
	background: #ffffff;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.pricing-card {
	background: #ffffff;
	border: 1px solid #83acff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
	color: #111827;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}

/* hover efekt taki sam jak referencje */
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Minimalistyczne ikonki */
.pricing-icon {
	font-size: 2rem;
	color: #2563eb;
	display: block;
}

/* Teksty — zostawiam bez zmian ich oryginalny rozmiar */
.pricing-days,
.pricing-price,
.pricing-note {
	color: #111827;
}

.pricing-disclaimer {
	color: #6b7280;
}


/* =======================
   FAQ
   ======================= */

.faq-section {
	background: #f9fafb;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.faq-item {
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	padding: 14px 18px;
	margin-bottom: 10px;
	cursor: pointer;
	transition:
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		transform 0.15s ease;
}

.faq-item:hover {
	border-color: #2563eb;
	transform: translateY(-1px);
}

.faq-item[open] {
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.faq-item.active-faq {
	border-color: #2563eb;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

/* Nagłówek pytania */
.faq-item summary {
	list-style: none;
	font-weight: 500;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-weight: 600;
	color: #9ca3af;
	margin-left: 12px;
	transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
	content: "–";
	color: #2563eb;
	transform: translateY(-1px);
}

/* Treść odpowiedzi – płynne otwieranie/zamykanie */
.faq-item p {
	margin-top: 10px;
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.6;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition:
		max-height 0.25s ease,
		opacity 0.25s ease;
}

/* Gdy sekcja otwarta – pokaż treść */
.faq-item[open] p {
	max-height: 300px;
	/* wystarcza na kilka linijek tekstu */
	opacity: 1;
}

/* =======================
   TESTIMONIALS
   ======================= */

.testimonials {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

/* Nagłówek sekcji */
.section-header h2 {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.section-header p {
	margin-bottom: 0;
	color: #6b7280;
}

.accent {
	color: #2563eb;
}

/* Karty opinii */

.testimonials .row>[class*="col-"] {
	display: flex;
}

.testimonial-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
	padding: 28px;
	display: flex;
	flex-direction: column;
	height: 100%;
	/* klucz do równych wysokości w kolumnie */
}

.quote-mark {
	font-size: 32px;
	color: #2563eb;
	line-height: 1;
	margin-bottom: 16px;
	font-weight: 700;
}

.testimonial-content p {
	font-size: 1.02rem;
	color: #4b5563;
	margin-bottom: 0;
	text-align: left;
	line-height: 1.6;
}

.testimonial-content hr {
	border-top: 1px solid #e5e7eb;
	margin-top: 24px;
	margin-bottom: 0;
}

.testimonial-footer {
	margin-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.testimonial-name {
	font-weight: 700;
	color: #111827;
	font-size: 1.05rem;
}

.testimonial-role {
	font-size: 0.95rem;
	color: #6b7280;
}

.testimonial-logo {
	width: 100px;
	height: auto;
	object-fit: contain;
	opacity: 0.9;
}

/* Mobile drobne dopieszczenie */
@media (max-width: 575.98px) {
	.testimonials {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.testimonial-card {
		padding: 24px;
	}
}

@media (min-width: 773px) {
	.testimonial-card {
		display: flex;
		flex-direction: column;
	}

	.testimonial-footer {
		margin-top: auto;
		/* wypycha stopkę na sam dół */
		align-items: flex-end;
		/* wyrównanie logo i tekstu wspólnie do dołu */
	}

	.testimonial-footer>div {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		/* imię i nazwisko wyrównane pionowo do dołu */
	}
}




/* =======================
   CONTACT
   ======================= */

.contact-section {
	background: #def0ff;
}

.contact-card {
	border-radius: 20px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-icon {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
}

.contact-icon i {
	font-size: 2.6rem;
	color: #0e6ace;
	font-weight: 300;
}

.contact-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.contact-card a {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 1.05rem;
	color: #000000;
	text-decoration: none;
}

.contact-card a:hover {
	text-decoration: underline;
}

.btn-jira {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: .6rem 1.4rem;
	border-radius: 999px;
	border: 1px solid #c7d7ff;
	background: #f5f8ff;
	color: #1463ff;
	font-weight: 500;
	font-size: .95rem;
	box-shadow: 0 8px 18px rgba(20, 99, 255, 0.12);
	text-decoration: none;
	transition:
		background-color .2s ease,
		color .2s ease,
		border-color .2s ease,
		box-shadow .2s ease,
		transform .2s ease;
	max-width: 100%;          /* klucz: nie wyjdzie poza kolumnę */
	text-align: center;
	white-space: normal;      /* pozwalamy na zawijanie w ładny sposób */
	word-break: break-word;
}

.btn-jira i {
	font-size: 1.1rem;
}

.btn-jira:hover {
	background: #e4edff;
	color: #0b4bd6;
	border-color: #9bb7ff;
	box-shadow: 0 10px 24px rgba(20, 99, 255, 0.18);
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-jira:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(20, 99, 255, 0.18);
}

/* ===== MOBILE ===== */
@media (max-width: 575.98px) {
	.btn-jira {
		width: 100%;           /* pełna szerokość w mobile */
		font-size: .90rem;
		padding: .75rem 1rem;
		gap: .3rem;
	}
}

/* ===========================
   SEO / DOŁĄCZ DO SOLEX B2B
   =========================== */

.b2b-join-section {
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.b2b-join-grid {
	row-gap: 1.5rem;
}

.seo-card {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

.seo-card-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #111827;
}

.seo-keyword-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: 0.95rem;
	color: #4b5563;
}

.seo-keyword-list li {
	margin-bottom: 0.25rem;
	line-height: 1.4;
}

/* delikatne podbicie czytelności na mobile */
@media (max-width: 575.98px) {
	.b2b-join-section .section-header p {
		font-size: 1rem;
	}

	.seo-card {
		padding: 1.5rem;
	}
}


/* =======================
   FOOTER
   ======================= */

.site-footer {
	border-top: 1px solid #e5e7eb;
	padding: 22px 0 26px;
	background: #f9fafb;
}

.site-footer p {
	font-size: 0.95rem;
	color: #9ca3af;
	text-align: center;
}

/* =======================
   RESPONSIVE
   ======================= */

/* TABLETY / MAŁE LAPTOPY */
@media (max-width: 992px) {
	body {
		font-size: 16px;
		line-height: 1.6;
	}

	.hero h1 {
		font-size: 2.6rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.pricing-days {
		font-size: 1.9rem;
	}

	.pricing-price {
		font-size: 2.2rem;
	}

	.testimonial-card p {
		font-size: 1rem;
	}
}

/* DO 768px – ogólne spacingi + pricing */
@media (max-width: 768px) {
	/* section {
		padding: 64px 0;
	}

	.hero {
		padding: 90px 0 80px;
	} */

	.hero h1 {
		font-size: 2.4rem;
	}

	.pricing-card {
		padding: 2.4rem 1.6rem !important;
	}

	.pricing-days {
		font-size: 1.8rem;
	}

	.pricing-price {
		font-size: 2.1rem;
	}

	.py-7 {
		padding-top: 90px !important;
		padding-bottom: 90px !important;
	}

	.hero-logos-card .hero-logo {
		max-width: 200px;
	}
}

/* SMARTFONY */
@media (max-width: 576px) {
	body {
		font-size: 15px;
		line-height: 1.6;
	}

	.logo-section {
		padding: 0px 0px;
	}

	/* .hero {
		padding: 72px 0 64px;
	} */

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero-lead {
		font-size: 0.95rem;
	}

	.section-header h2 {
		font-size: 1.7rem;
	}

	.section-header p {
		font-size: 0.95rem;
	}

	.pricing-card {
		padding: 2rem 1.5rem !important;
	}

	.pricing-days {
		font-size: 1.6rem;
	}

	.pricing-price {
		font-size: 1.9rem;
	}

	.pricing-note {
		font-size: 0.95rem;
	}

	.testimonial-card p {
		font-size: 0.95rem;
	}

	.testimonial-name {
		font-size: 1.05rem;
	}

	.contact-card h3 {
		font-size: 1.1rem;
	}

	.contact-card a {
		font-size: 0.8rem;
	}

	.hero-logos-card .hero-logo {
		max-width: 180px;
	}

	.py-7 {
		padding-top: 70px !important;
		padding-bottom: 70px !important;
	}
}

/* BARDZO MAŁE EKRANY */
@media (max-width: 480px) {
	.hero-logos-card .hero-logo {
		max-width: 150px;
	}
}

.hero-title {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 992px) {
	.hero-title {
		justify-content: flex-start;
	}
}

.hero-logo-inline {
	max-height: 56px;
	width: auto;
	display: inline-block;
}

@media (max-width: 576px) {
	.hero-logo-inline {
		max-height: 44px;
	}
}