/* ================================================================
   Czysta Wizja – Arkusz stylów
   assets/css/style.css
   ================================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
	--clr-brand: #2563eb;
	--clr-brand-dark: #1e40af;
	--clr-brand-light: #dbeafe;
	--clr-gold: #f59e0b;
	--clr-gold-dark: #d97706;
	--clr-surface: #ffffff;
	--clr-bg: #f8fafc;
	--clr-bg-alt: #f1f5f9;
	--clr-text: #0f172a;
	--clr-text-muted: #64748b;
	--clr-border: #e2e8f0;
	--clr-success: #22c55e;
	--clr-warning: #f59e0b;
	--clr-error: #ef4444;

	--font-display: "Plus Jakarta Sans", sans-serif;
	--font-body: "DM Sans", "Plus Jakarta Sans", sans-serif;

	--container-max: 1200px;
	--container-pad: 1.5rem;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 28px;
	--radius-full: 9999px;

	--shadow-sm:
		0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
	--shadow-brand: 0 8px 28px rgba(37, 99, 235, 0.28);

	--transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	--navbar-h: 70px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--clr-text);
	background: var(--clr-bg);
	overflow-x: hidden;
}
img,
video {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
ul,
ol {
	list-style: none;
}
button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}
input,
textarea,
select {
	font-family: inherit;
}

/* ── LOADING SCREEN ──────────────────────────────────────────── */
/*
.page-loader {
	position: fixed;
	inset: 0;
	background: #0f172a;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
}
.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
}
.page-loader__inner {
	text-align: center;
}
.page-loader__logo {
	font-size: 2.5rem;
	color: var(--clr-brand);
	margin-bottom: 1.5rem;
	animation: pulse-loader 1.5s ease-in-out infinite;
}
@keyframes pulse-loader {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.7;
	}
}
.page-loader__bar {
	width: 180px;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	overflow: hidden;
	margin: 0 auto;
}
.page-loader__bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--clr-brand), #60a5fa);
	border-radius: 3px;
	animation: bar-load 1.4s ease-in-out infinite;
}
@keyframes bar-load {
	0% {
		width: 0%;
		margin-left: 0;
	}
	50% {
		width: 70%;
	}
	100% {
		width: 0%;
		margin-left: 100%;
	}
}
*/
/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-display);
	line-height: 1.2;
	font-weight: 700;
	color: var(--clr-text);
}
h1 {
	font-size: clamp(1.9rem, 4.5vw, 3.2rem);
}
h2 {
	font-size: clamp(1.5rem, 3vw, 2.3rem);
}
h3 {
	font-size: 1.2rem;
}
p {
	color: var(--clr-text-muted);
}

.section-eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--clr-brand);
	background: var(--clr-brand-light);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	margin-bottom: 0.75rem;
}
.section-heading {
	margin-bottom: 0.75rem;
}
.section-sub {
	font-size: 1.05rem;
	max-width: 540px;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}
.section {
	padding-block: 5rem;
}
.section--alt {
	background: var(--clr-bg-alt);
}
.text-center {
	text-align: center;
}
.text-center .section-sub {
	margin-inline: auto;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	transition: all var(--transition);
	white-space: nowrap;
	cursor: pointer;
	border: none;
}
.btn--primary {
	background: var(--clr-brand);
	color: #fff;
	box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
	background: var(--clr-brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(37, 99, 235, 0.38);
}
.btn--outline {
	border: 2px solid var(--clr-brand);
	color: var(--clr-brand);
}
.btn--outline:hover {
	background: var(--clr-brand);
	color: #fff;
	transform: translateY(-2px);
}
.btn--ghost {
	color: var(--clr-text);
}
.btn--ghost:hover {
	color: var(--clr-brand);
	background: var(--clr-brand-light);
}
.btn--gold {
	background: var(--clr-gold);
	color: #fff;
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.btn--gold:hover {
	background: var(--clr-gold-dark);
	transform: translateY(-2px);
}
.btn--lg {
	padding: 1rem 2rem;
	font-size: 1.05rem;
}
.btn--sm {
	padding: 0.4rem 1rem;
	font-size: 0.875rem;
}
.btn--danger {
	background: #fee2e2;
	color: #991b1b;
}
.btn--danger:hover {
	background: #dc2626;
	color: #fff;
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.2rem;
	height: 1.2rem;
	padding: 0 0.3rem;
	background: var(--clr-error);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: var(--radius-full);
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--clr-border);
	height: var(--navbar-h);
	transition: box-shadow var(--transition);
}
.navbar.scrolled {
	box-shadow: var(--shadow-md);
}
.navbar__inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 1.5rem;
}
.navbar__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--clr-text);
	flex-shrink: 0;
}
.navbar__logo-icon {
	width: 2rem;
	height: 2rem;
	background: linear-gradient(135deg, var(--clr-brand), #60a5fa);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.95rem;
}
.navbar__logo-text strong {
	color: var(--clr-brand);
}
.navbar__nav {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	margin-inline: auto;
}
.navbar__link {
	padding: 0.38rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--clr-text-muted);
	transition: all var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
	color: var(--clr-brand);
	background: var(--clr-brand-light);
}
.navbar__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.navbar__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	transition: background var(--transition);
}
.navbar__hamburger:hover {
	background: var(--clr-bg-alt);
}
.navbar__hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--clr-text);
	border-radius: 2px;
	transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: calc(100vh - var(--navbar-h));
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
	color: #fff;
}
.hero__bg-image {
	position: absolute;
	inset: 0;
	background-image: url("../images/hero-bg.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.12;
}
.hero::after {
	content: "";
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(37, 99, 235, 0.2) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding-block: 5rem;
}
.hero__eyebrow {
	background: rgba(37, 99, 235, 0.2);
	color: #93c5fd;
	border-radius: var(--radius-full);
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.85rem;
	margin-bottom: 1rem;
}
.hero__title {
	color: #fff;
	margin-bottom: 1.25rem;
}
.hero__title span {
	color: #93c5fd;
}
.hero__desc {
	color: #94a3b8;
	font-size: 1.05rem;
	margin-bottom: 2rem;
	max-width: 480px;
}
.hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.hero__stats {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}
.hero__stat-label {
	font-size: 0.82rem;
	color: #94a3b8;
}
.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
}
.hero__img-placeholder {
	width: 100%;
	max-width: 460px;
	aspect-ratio: 4/3;
	border-radius: var(--radius-lg);
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.15),
		rgba(30, 64, 175, 0.35)
	);
	border: 1px solid rgba(37, 99, 235, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: rgba(37, 99, 235, 0.4);
	overflow: hidden;
}
.hero__img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__badge {
	position: absolute;
	bottom: -1rem;
	left: -1rem;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.hero__badge-icon {
	width: 2.4rem;
	height: 2.4rem;
	background: var(--clr-brand-light);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--clr-brand);
	font-size: 1.2rem;
}
.hero__badge-text strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.92rem;
	color: var(--clr-text);
}
.hero__badge-text span {
	font-size: 0.75rem;
	color: var(--clr-text-muted);
}

/* ── USŁUGI – KARTY ──────────────────────────────────────────── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.service-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--clr-brand), #60a5fa);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.service-card:hover {
	border-color: var(--clr-brand-light);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-card__img {
	width: 100%;
	height: 160px;
	border-radius: var(--radius-md);
	background: var(--clr-bg-alt);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.8rem;
	color: var(--clr-brand-light);
	overflow: hidden;
}
.service-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service-card__icon {
	width: 2.8rem;
	height: 2.8rem;
	background: var(--clr-brand-light);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--clr-brand);
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.service-card__title {
	margin-bottom: 0.5rem;
}
.service-card__desc {
	font-size: 0.88rem;
	margin-bottom: 1.25rem;
	flex: 1;
}
.service-card__price {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--clr-brand);
	margin-bottom: 1.25rem;
}
.service-card__price span {
	font-size: 0.82rem;
	font-weight: 400;
	color: var(--clr-text-muted);
}

/* ── O NAS ───────────────────────────────────────────────────── */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-visual {
	position: relative;
}
.about-img-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--clr-brand-light), #eff6ff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	color: var(--clr-brand);
	opacity: 0.4;
	overflow: hidden;
}
.about-img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}
.about-badge {
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	background: #fff;
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-display);
	border: 1px solid var(--clr-border);
}
.about-badge i {
	font-size: 1.4rem;
	color: var(--clr-brand);
}
.about-badge strong {
	display: block;
	font-size: 0.9rem;
	color: var(--clr-text);
}
.about-badge span {
	font-size: 0.75rem;
	color: var(--clr-text-muted);
}
.about-features {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 1rem;
}
.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.9rem;
}
.about-feature i {
	color: var(--clr-brand);
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

/* ── DLACZEGO MY ─────────────────────────────────────────────── */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.why-item {
	text-align: center;
	padding: 2rem 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	transition: all var(--transition);
}
.why-item:hover {
	border-color: var(--clr-brand);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}
.why-item__icon {
	width: 3.5rem;
	height: 3.5rem;
	background: linear-gradient(135deg, var(--clr-brand), #3b82f6);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
	transition: transform var(--transition);
}
.why-item:hover .why-item__icon {
	transform: scale(1.1) rotate(-5deg);
}
.why-item h3 {
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}

/* ── GALERIA PRZED/PO ────────────────────────────────────────── */
.before-after-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.gallery-empty-state {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--clr-surface);
	border: 2px dashed var(--clr-border);
	border-radius: var(--radius-lg);
	margin-top: 3rem;
}
.gallery-empty-state i {
	font-size: 3rem;
	color: var(--clr-text-muted);
	opacity: 0.4;
	margin-bottom: 1rem;
	display: block;
}
.gallery-empty-state h3 {
	color: var(--clr-text-muted);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.gallery-empty-state p {
	font-size: 0.9rem;
}
.ba-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition);
}
.ba-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}
.ba-card__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 200px;
	position: relative;
}
.ba-card__half {
	position: relative;
	overflow: hidden;
}
.ba-card__half:first-child::after {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
	bottom: 0;
	width: 2px;
	background: #fff;
	z-index: 2;
}
.ba-card__placeholder {
	width: 100%;
	height: 100%;
	background: var(--clr-bg-alt);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--clr-text-muted);
}
.ba-card__placeholder i {
	font-size: 1.8rem;
	opacity: 0.35;
}
.ba-card__placeholder--after {
	background: var(--clr-brand-light);
	color: var(--clr-brand);
}
.ba-card__placeholder--after i {
	opacity: 0.5;
}
.ba-card__placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ba-card__tag {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 3;
}
.ba-card__tag--before {
	background: #fff;
	color: var(--clr-text-muted);
}
.ba-card__tag--after {
	background: var(--clr-brand);
	color: #fff;
}
.ba-card__body {
	padding: 1rem;
}
.ba-card__body h4 {
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}
.ba-card__body p {
	font-size: 0.82rem;
}

/* ── CENNIK ──────────────────────────────────────────────────── */
.pricing-table-wrap {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	margin-top: 3rem;
}
.pricing-table {
	width: 100%;
	border-collapse: collapse;
}
.pricing-table thead th {
	padding: 0.9rem 1.25rem;
	text-align: left;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--clr-text-muted);
	background: var(--clr-bg-alt);
	border-bottom: 1px solid var(--clr-border);
}
.pricing-table tbody td {
	padding: 0.9rem 1.25rem;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--clr-border);
	vertical-align: middle;
}
.pricing-table tbody td i {
	margin-right: 0.4rem;
	color: var(--clr-brand);
}
.pricing-table tbody tr:last-child td {
	border-bottom: none;
}
.pricing-table tbody tr:hover {
	background: var(--clr-bg);
}
.pricing-table td:nth-child(3) {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--clr-brand);
	white-space: nowrap;
}
.pt-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.85rem;
	background: var(--clr-brand-light);
	color: var(--clr-brand);
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	transition: all var(--transition);
	font-family: var(--font-display);
	white-space: nowrap;
}
.pt-btn:hover {
	background: var(--clr-brand);
	color: #fff;
}
.pricing-table-note {
	padding: 0.75rem 1.25rem;
	font-size: 0.82rem;
	color: var(--clr-text-muted);
	background: var(--clr-bg-alt);
	border-top: 1px solid var(--clr-border);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* ── OPINIE ──────────────────────────────────────────────────── */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.reviews-empty {
	text-align: center;
	padding: 3.5rem 2rem;
	background: var(--clr-surface);
	border: 2px dashed var(--clr-border);
	border-radius: var(--radius-lg);
	margin-top: 3rem;
}
.reviews-empty i {
	font-size: 2.8rem;
	color: var(--clr-text-muted);
	opacity: 0.35;
	margin-bottom: 1rem;
	display: block;
}
.reviews-empty h3 {
	font-size: 1.05rem;
	color: var(--clr-text-muted);
	margin-bottom: 0.5rem;
}
.reviews-empty p {
	font-size: 0.88rem;
	max-width: 500px;
	margin: 0 auto;
}
.testimonial-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	transition: all var(--transition);
}
.testimonial-card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--clr-brand-light);
	transform: translateY(-2px);
}
.testimonial-card__stars {
	color: var(--clr-gold);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}
.testimonial-card__text {
	font-style: italic;
	margin-bottom: 1.5rem;
	padding-left: 1rem;
	border-left: 3px solid var(--clr-brand-light);
}
.testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.testimonial-card__avatar {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--clr-brand), #60a5fa);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	flex-shrink: 0;
}
.testimonial-card__name {
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--clr-text);
}
.testimonial-card__role {
	font-size: 0.78rem;
	color: var(--clr-text-muted);
}

/* Formularz opinii */
.review-form-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
}
.star-rating {
	display: flex;
	gap: 0.3rem;
	margin-bottom: 1rem;
}
.star-rating input {
	display: none;
}
.star-rating label {
	font-size: 1.8rem;
	color: var(--clr-border);
	cursor: pointer;
	transition: color var(--transition);
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
	color: var(--clr-gold);
}
.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
	color: var(--clr-gold);
}
.star-rating input:checked + label,
.star-rating input:checked ~ label {
	color: var(--clr-gold);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
	max-width: 780px;
	margin: 3rem auto 0;
}
.faq-item {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-md);
	margin-bottom: 0.75rem;
	overflow: hidden;
	transition: box-shadow var(--transition);
}
.faq-item:hover {
	box-shadow: var(--shadow-sm);
}
.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--clr-text);
	text-align: left;
	transition: background var(--transition);
}
.faq-question:hover {
	background: var(--clr-bg);
}
.faq-icon {
	flex-shrink: 0;
	transition: transform var(--transition);
	color: var(--clr-brand);
}
.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-answer.open {
	max-height: 500px;
}
.faq-answer p {
	padding: 0 1.25rem 1.1rem;
	font-size: 0.9rem;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
	background: linear-gradient(135deg, #0f172a, #1e3a8a);
	color: #fff;
	text-align: center;
	padding-block: 5rem;
}
.cta-section h2 {
	color: #fff;
}
.cta-section p {
	color: #94a3b8;
	margin-block: 1rem 2rem;
}
.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── KONTAKT ─────────────────────────────────────────────────── */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	margin-top: 3rem;
}
.contact-info__item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.contact-info__icon {
	width: 2.6rem;
	height: 2.6rem;
	background: var(--clr-brand-light);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--clr-brand);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.contact-info__label {
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--clr-text);
}
.contact-info__val {
	font-size: 0.88rem;
	color: var(--clr-text-muted);
}

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group {
	margin-bottom: 1.25rem;
}
.form-group label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--clr-text);
	margin-bottom: 0.4rem;
}
.req {
	color: var(--clr-error);
	margin-left: 2px;
}
.form-control {
	width: 100%;
	padding: 0.68rem 1rem;
	border: 1.5px solid var(--clr-border);
	border-radius: var(--radius-md);
	font-size: 0.92rem;
	color: var(--clr-text);
	background: var(--clr-surface);
	transition: all var(--transition);
	outline: none;
}
.form-control:focus {
	border-color: var(--clr-brand);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-control.error {
	border-color: var(--clr-error);
}
.form-control.success {
	border-color: var(--clr-success);
}
textarea.form-control {
	min-height: 130px;
	resize: vertical;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.field-error {
	display: block;
	font-size: 0.8rem;
	color: var(--clr-error);
	margin-top: 0.3rem;
}

/* Checkbox RODO */
.form-group--checkbox {
	margin-bottom: 1.25rem;
}
.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	cursor: pointer;
	font-size: 0.85rem;
	color: var(--clr-text-muted);
	line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
	width: 1.1rem;
	height: 1.1rem;
	border: 1.5px solid var(--clr-border);
	border-radius: 4px;
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 0.15rem;
	accent-color: var(--clr-brand);
}
.checkbox-label a {
	color: var(--clr-brand);
	text-decoration: underline;
}

/* Alerts */
.alert {
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	margin-bottom: 1.25rem;
	font-size: 0.9rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}
.alert--success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}
.alert--error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.alert--info {
	background: var(--clr-brand-light);
	color: #1e3a8a;
	border: 1px solid #bfdbfe;
}
.alert--warning {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fde68a;
}
.alert i {
	flex-shrink: 0;
	font-size: 1.1rem;
	margin-top: 0.1rem;
}

/* ── CARD ────────────────────────────────────────────────────── */
.card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}

/* ── AUTH PAGES ──────────────────────────────────────────────── */
.auth-page {
	min-height: calc(100vh - var(--navbar-h));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem var(--container-pad);
	background: linear-gradient(135deg, #f8fafc, var(--clr-brand-light));
}
.auth-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	width: 100%;
	max-width: 460px;
	box-shadow: var(--shadow-lg);
}
.auth-card__header {
	text-align: center;
	margin-bottom: 2rem;
}
.auth-card__header .logo-icon {
	width: 3.2rem;
	height: 3.2rem;
	background: linear-gradient(135deg, var(--clr-brand), #60a5fa);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #fff;
	margin: 0 auto 1rem;
}

/* ── DASHBOARD KLIENTA ───────────────────────────────────────── */
.dashboard-wrapper {
	display: grid;
	grid-template-columns: 250px 1fr;
	min-height: calc(100vh - var(--navbar-h));
}
.sidebar {
	background: var(--clr-surface);
	border-right: 1px solid var(--clr-border);
	padding: 1.5rem 1rem;
	position: sticky;
	top: var(--navbar-h);
	height: calc(100vh - var(--navbar-h));
	overflow-y: auto;
}
.sidebar__section-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--clr-text-muted);
	padding: 0 0.75rem;
	margin-bottom: 0.4rem;
	margin-top: 1.25rem;
}
.sidebar__section-label:first-child {
	margin-top: 0;
}
.sidebar__link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.58rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--clr-text-muted);
	transition: all var(--transition);
	margin-bottom: 0.15rem;
}
.sidebar__link i {
	font-size: 1rem;
	width: 1.2rem;
	text-align: center;
}
.sidebar__link:hover,
.sidebar__link.active {
	color: var(--clr-brand);
	background: var(--clr-brand-light);
}
.sidebar__link.active {
	font-weight: 600;
}
.main-content {
	padding: 2rem;
	background: var(--clr-bg);
}

/* Stat cards */
.stat-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.1rem;
	margin-bottom: 2rem;
}
.stat-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition);
}
.stat-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.stat-card__icon {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.stat-card__icon--blue {
	background: var(--clr-brand-light);
	color: var(--clr-brand);
}
.stat-card__icon--green {
	background: #dcfce7;
	color: #16a34a;
}
.stat-card__icon--yellow {
	background: #fef3c7;
	color: #d97706;
}
.stat-card__value {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--clr-text);
	line-height: 1;
}
.stat-card__label {
	font-size: 0.78rem;
	margin-top: 0.2rem;
}

/* Table */
.table-wrapper {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	overflow-x: auto;
	box-shadow: var(--shadow-sm);
}
table {
	width: 100%;
	border-collapse: collapse;
}
thead th {
	padding: 0.8rem 1rem;
	text-align: left;
	font-family: var(--font-display);
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--clr-text-muted);
	background: var(--clr-bg);
	border-bottom: 1px solid var(--clr-border);
}
tbody td {
	padding: 0.8rem 1rem;
	font-size: 0.88rem;
	border-bottom: 1px solid var(--clr-border);
	vertical-align: middle;
}
tbody tr:last-child td {
	border-bottom: none;
}
tbody tr:hover {
	background: var(--clr-bg);
}

/* Status badges */
.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.2rem 0.65rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	font-weight: 600;
}
.status-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.status--pending {
	background: #fef3c7;
	color: #92400e;
}
.status--confirmed {
	background: var(--clr-brand-light);
	color: #1e3a8a;
}
.status--in_progress {
	background: #ede9fe;
	color: #5b21b6;
}
.status--done {
	background: #dcfce7;
	color: #166534;
}
.status--cancelled {
	background: #f3f4f6;
	color: #374151;
}

/* Review status badges */
.review-badge--pending {
	background: #fef3c7;
	color: #92400e;
	padding: 0.18rem 0.6rem;
	border-radius: var(--radius-full);
	font-size: 0.73rem;
	font-weight: 600;
}
.review-badge--approved {
	background: #dcfce7;
	color: #166534;
	padding: 0.18rem 0.6rem;
	border-radius: var(--radius-full);
	font-size: 0.73rem;
	font-weight: 600;
}
.review-badge--hidden {
	background: #f3f4f6;
	color: #374151;
	padding: 0.18rem 0.6rem;
	border-radius: var(--radius-full);
	font-size: 0.73rem;
	font-weight: 600;
}

/* ── LOADER na przycisku ─────────────────────────────────────── */
.btn .loader {
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	display: none;
}
.btn.loading .btn-text {
	display: none;
}
.btn.loading .loader {
	display: inline-block;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Fade-in animacja */
.fade-in {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}
.fade-in.visible {
	opacity: 1;
	transform: none;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
	background: #0f172a;
	color: #94a3b8;
}
.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	padding-block: 4rem;
}
.footer .navbar__logo {
	margin-bottom: 1rem;
}
.footer .navbar__logo-text {
	color: #fff;
}
.footer .navbar__logo-text strong {
	color: var(--clr-brand);
}
.footer__tagline {
	font-size: 0.88rem;
	margin-bottom: 1.2rem;
}
.footer__social {
	display: flex;
	gap: 0.65rem;
}
.footer__social a {
	width: 2.1rem;
	height: 2.1rem;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	font-size: 0.95rem;
	transition: all var(--transition);
}
.footer__social a:hover {
	background: var(--clr-brand);
	color: #fff;
}
.footer__heading {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 1.1rem;
}
.footer__links ul li {
	margin-bottom: 0.55rem;
}
.footer__links ul li a {
	color: #64748b;
	font-size: 0.88rem;
	transition: color var(--transition);
}
.footer__links ul li a:hover {
	color: var(--clr-brand);
}
.footer__contact ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.7rem;
	font-size: 0.88rem;
}
.footer__contact ul li i {
	color: var(--clr-brand);
	font-size: 0.95rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.footer__contact ul li a {
	color: #64748b;
}
.footer__contact ul li a:hover {
	color: var(--clr-brand);
}
.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-block: 1.4rem;
}
.footer__bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.footer__bottom p {
	font-size: 0.82rem;
	color: #475569;
}
.footer__bottom a {
	color: #64748b;
	transition: color var(--transition);
}
.footer__bottom a:hover {
	color: var(--clr-brand);
}

/* ── BOOKING PAGE ────────────────────────────────────────────── */
.booking-wrapper {
	background: var(--clr-bg-alt);
	min-height: calc(100vh - var(--navbar-h));
	padding-bottom: 2rem;
}
.bk-header {
	text-align: center;
}
.bk-steps {
	display: flex;
	align-items: center;
	justify-content: center;
}
.bk-step {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #94a3b8;
}
.bk-step.active {
	color: var(--clr-brand);
}
.bk-step span {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 50%;
	background: #e2e8f0;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.73rem;
	font-weight: 700;
}
.bk-step.active span {
	background: var(--clr-brand);
	color: #fff;
}
.bk-step-line {
	flex: 1;
	max-width: 2.5rem;
	height: 2px;
	background: #e2e8f0;
	margin: 0 0.4rem;
}
.bk-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}
.bk-section {
	padding: 1.75rem 2rem;
	border-bottom: 1px solid #f1f5f9;
}
.bk-section:last-of-type {
	border-bottom: none;
}
.bk-section-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.bk-section-title i {
	color: var(--clr-brand);
}
.service-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
	gap: 0.75rem;
}
.service-pick-card {
	position: relative;
	cursor: pointer;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s ease;
	background: #f8fafc;
}
.service-pick-card input[type="radio"] {
	position: absolute;
	opacity: 0;
}
.service-pick-card.selected,
.service-pick-card:has(input:checked) {
	border-color: var(--clr-brand);
	background: #eff6ff;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}
.spc-inner {
	padding: 1rem 0.85rem;
	text-align: center;
}
.spc-icon {
	font-size: 1.5rem;
	color: var(--clr-brand);
	margin-bottom: 0.4rem;
}
.spc-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 0.25rem;
}
.spc-price {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--clr-brand);
}
.spc-check {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	color: var(--clr-brand);
	font-size: 1.1rem;
	opacity: 0;
	transition: opacity 0.2s;
}
.service-pick-card.selected .spc-check,
.service-pick-card:has(input:checked) .spc-check {
	opacity: 1;
}
.bk-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.4rem;
	display: block;
}
.bk-input {
	width: 100%;
	padding: 0.65rem 1rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 9px;
	font-size: 0.9rem;
	color: #0f172a;
	background: #fff;
	outline: none;
	transition: all 0.2s;
	font-family: inherit;
}
.bk-input:focus {
	border-color: var(--clr-brand);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
textarea.bk-input {
	resize: vertical;
	min-height: 80px;
}
.bk-submit-area {
	padding: 1.5rem 2rem;
	background: #f8fafc;
	border-top: 1px solid #f1f5f9;
	text-align: center;
}
.bk-submit-btn {
	width: 100%;
	padding: 0.9rem;
	background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-dark));
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}
.bk-submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.bk-submit-note {
	font-size: 0.76rem;
	color: #94a3b8;
	margin-top: 0.7rem;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}
.bk-alert {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.1rem 1.25rem;
	border-radius: 12px;
	font-size: 0.9rem;
}
.bk-alert--success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #bbf7d0;
}
.bk-alert--error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.bk-alert i {
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.bk-alert a {
	color: inherit;
	font-weight: 600;
}

/* ── LEGAL PAGES (regulamin, polityka) ───────────────────────── */
.legal-page {
	background: var(--clr-bg);
	padding-block: 3rem;
}
.legal-content {
	max-width: 800px;
	margin: 0 auto;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-sm);
}
.legal-content h1 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}
.legal-content .legal-meta {
	color: var(--clr-text-muted);
	font-size: 0.85rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--clr-border);
}
.legal-content h2 {
	font-size: 1.15rem;
	margin: 2rem 0 0.75rem;
	color: var(--clr-text);
}
.legal-content p {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	line-height: 1.7;
}
.legal-content ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
.legal-content ul li {
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
	list-style: disc;
	color: var(--clr-text-muted);
}
.legal-content a {
	color: var(--clr-brand);
}

/* ── 404 PAGE ────────────────────────────────────────────────── */
.error-page {
	min-height: calc(100vh - var(--navbar-h));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
}
.error-page__code {
	font-size: 7rem;
	font-weight: 800;
	color: var(--clr-brand);
	opacity: 0.15;
	line-height: 1;
	margin-bottom: 0.5rem;
	font-family: var(--font-display);
}
.error-page__title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

/* ── MEDIA QUERIES ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.footer__grid {
		grid-template-columns: 1fr 1fr;
	}
	.hero__inner {
		grid-template-columns: 1fr;
	}
	.hero__visual {
		display: none;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.dashboard-wrapper {
		grid-template-columns: 1fr;
	}
	.sidebar {
		display: none;
	}
}
@media (max-width: 768px) {
	.navbar__nav,
	.navbar__actions {
		display: none;
	}
	.navbar__hamburger {
		display: flex;
	}
	.navbar__nav.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: var(--navbar-h);
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--clr-border);
		padding: 1rem;
		z-index: 999;
		box-shadow: var(--shadow-lg);
	}
	.navbar__actions.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1px solid var(--clr-border);
		padding: 1rem;
		z-index: 998;
	}
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-block: 2.5rem;
	}
	.footer__bottom .container {
		flex-direction: column;
		text-align: center;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.hero__stats {
		flex-direction: column;
		gap: 1rem;
	}
	.cta-actions {
		flex-direction: column;
		align-items: center;
	}
	.auth-card {
		padding: 2rem 1.25rem;
	}
	.stat-cards {
		grid-template-columns: 1fr 1fr;
	}
	.main-content {
		padding: 1rem;
	}
	.bk-section {
		padding: 1.25rem 1rem;
	}
	.bk-submit-area {
		padding: 1.25rem 1rem;
	}
	.service-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pricing-table thead {
		display: none;
	}
	.pricing-table td {
		display: block;
		padding: 0.5rem 1rem;
	}
	.pricing-table td:first-child {
		padding-top: 1rem;
		font-weight: 600;
	}
	.pricing-table td:last-child {
		padding-bottom: 1rem;
	}
}
@media (max-width: 480px) {
	.stat-cards {
		grid-template-columns: 1fr;
	}
	h1 {
		font-size: 1.8rem;
	}
	.legal-content {
		padding: 1.5rem;
	}
}
