:root {
	--primary-yellow: #f4c430;
	--dark-yellow: #ffd700;
	--text-dark: #2c2c2c;
	--text-grey: #ccc;
	--light-gray: #f8f9fa;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
}
.color-white {
	color: #ffffff;
}
.color-grey {
	color: var(--text-grey);
}
.color-dark {
	color: var(--text-dark);
}
.color-yellow {
	color: var(--primary-yellow);
}
.messenger-links a:nth-child(1) {
	color: #665cac;
}
.messenger-links a:nth-child(2) {
	color: #0088cc;
}
.messenger-links a:nth-child(3) {
	color: #25d366;
}
.brd-y {
	border-right: 4px dashed var(--primary-yellow);
}
/* Header */
.navbar {
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}
.navbar-nav {
	align-items: center;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-weight: 700;
	color: var(--text-dark) !important;
	font-size: 1.25rem;
}
.factor-price {
	font-weight: 600;
	color: var(--text-dark);
	background: var(--light-gray);
	padding: 8px 16px;
	border-radius: 20px;
}
.logo-icon {
	width: 50px;
	height: 50px;
	background: var(--dark-yellow);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 24px;
}

.navbar-nav .nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	margin: 0 10px;
	padding: 8px 16px !important;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
	background: var(--dark-yellow);
}
.navbar-nav li {
	text-align: center;
}
.btn-order {
	background: var(--dark-yellow);
	color: var(--text-dark);
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-order:hover {
	background: var(--primary-yellow);
	transform: translateY(-2px);
	color: var(--light-gray);
}
.logotype {
	width: 80px;
	height: 80px;
	background: var(--dark-yellow);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 24px;
}
/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	/* background: linear-gradient(135deg, #bbbbbb 0%, #e3e3e3 100%);  */
	padding: 80px 0 0px;
	position: relative;
	overflow: hidden;
}

/* Brand variant (uses theme yellows) */
.hero-section--brand {
	background: radial-gradient(
		1200px 400px at 50% -100px,
		var(--dark-yellow) 0%,
		var(--primary-yellow) 60%,
		#ffef9a 100%
	);
}

/* Small translucent feature cards in hero */
.hero-feature-card {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 16px;
	padding: 16px 18px;
	backdrop-filter: blur(4px);
}

.hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 24px;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.25rem;
	color: #666;
	margin-bottom: 32px;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: end;
	align-items: end;
}

.hero-bg-shape {
	position: absolute;
	right: -50px;
	top: -50px;
	width: 400px;
	height: 400px;
	background: var(--dark-yellow);
	border-radius: 50% 20% 50% 20%;
	z-index: 1;
}

.hero-worker {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
}
.like-header {
	color: var(--text-dark);
	font-size: 21px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: initial;
}
.like-big-header {
	color: var(--text-dark);
	font-size: 26px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: initial;
}
.features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
}

.feature-item {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 0.95rem;
}

.feature-item i {
	color: var(--dark-yellow);
	margin-right: 8px;
}

/* Services Categories */
.services-categories {
	padding: 80px 0;
	background: white;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: var(--text-dark);
	position: relative;
}
.content-section {
	padding: 80px 0;
}

.service-card {
	background: white;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	height: 100%;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--dark-yellow);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--dark-yellow);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 36px;
	color: var(--text-dark);
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text-dark);
}

.service-card p {
	color: #666;
	margin-bottom: 20px;
}

.price-tag {
	background: var(--light-gray);
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 600;
	color: var(--text-dark);
	display: inline-block;
}

/* Services Table */
.services-table {
	padding: 80px 0;
	background: var(--light-gray);
}

.table-responsive {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-pricing-table {
	margin: 0;
}
.services-pricing-table tbody tr td:last-child,
.services-pricing-table thead tr th:last-child {
	display: flex;
	border: 0;
	justify-content: flex-end;
}
.services-pricing-table thead {
	color: white;
}

.services-pricing-table th {
	font-weight: 600;
	padding: 20px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 18px;
}

.services-pricing-table td {
	padding: 16px 20px;
	border: 0;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.services-pricing-table tbody tr {
	transition: all 0.3s ease;
	cursor: pointer;
	border-left: 4px solid transparent;
	position: relative;
	overflow: hidden;
}

/* Додаткові стилі для клікабельних рядків */
.services-pricing-table .price-row-clickable {
	cursor: pointer;
}

.services-pricing-table tbody tr::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 215, 0, 0.1),
		transparent
	);
	transition: left 0.6s ease;
}

.services-pricing-table tbody tr:hover::after {
	left: 100%;
}

.services-pricing-table tbody tr:hover {
	background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	border-left: 4px solid var(--dark-yellow);

	position: relative;
}

@keyframes slideIn {
	from {
		transform: scaleY(0);
	}
	to {
		transform: scaleY(1);
	}
}

.services-pricing-table tbody tr:hover td {
	color: var(--text-dark);
	/* font-weight: 500; */
}

.services-pricing-table tbody tr:hover .factor-price {
	background: var(--dark-yellow);
	transform: scale(1.05);
	box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Додаткові стилі для кращої інтерактивності */
.services-pricing-table tbody tr:active {
	transform: translateY(-1px) scale(0.98);
}

.services-pricing-table tbody tr:focus-within {
	outline: 2px solid var(--dark-yellow);
	outline-offset: -2px;
}

/* Стилі для кращої доступності */
.services-pricing-table tbody tr:hover .price-cell {
	color: var(--text-dark);
}

/* Мобільна адаптація для hover-ефектів */
@media (hover: none) and (pointer: coarse) {
	.services-pricing-table tbody tr:hover {
		transform: none;
		box-shadow: none;
		border-left: none;
	}

	.services-pricing-table tbody tr:active {
		background: var(--light-gray);
		transform: scale(0.98);
	}
}

/* Додаткові стилі для кращого відображення на різних пристроях */
@media (max-width: 768px) {
	.services-pricing-table tbody tr:hover {
		transform: translateY(-1px);
	}

	.services-pricing-table tbody tr:hover .factor-price {
		transform: scale(1.02);
	}
}

.price-cell {
	font-weight: 600;
	color: var(--text-dark);
}

.factor-price {
	font-weight: 600;
	color: var(--text-dark);
	background: var(--light-gray);
	padding: 8px 16px;
	border-radius: 20px;
	transition: all 0.3s ease;
	display: inline-block;
}

.table-cta {
	text-align: center;
	margin-top: 40px;
}

/* Why Choose Us */
.why-choose {
	padding: 80px 0;
	background: white;
}

/* Dark section for highlight blocks */
.section-dark {
	background: var(--text-dark);
}
.section-dark .section-title {
	color: var(--light-gray);
}
.bg-dark-tile {
	background: #2b2b2b;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.why-risk-section {
	position: relative;
	overflow: hidden;
}
.why-risk-intro {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 28px;
}
.why-risk-alert {
	width: 70px;
	height: 70px;
	background: var(--dark-yellow);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
	border-radius: 20px;
}
.why-risk-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 28px;
	transition: transform 0.3s ease, background 0.3s ease;
}
.why-risk-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.08);
}
.why-risk-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	font-size: 28px;
	color: var(--dark-yellow);
}

.advantage-item {
	text-align: center;
	padding: 40px 20px;
}

.advantage-icon {
	width: 100px;
	height: 100px;
	background: var(--dark-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 48px;
	color: var(--text-dark);
}

.advantage-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text-dark);
}

.advantage-item p {
	color: #666;
	line-height: 1.6;
}

/* Video Section */
.video-section {
	padding: 80px 0;
	background: var(--light-gray);
}

.video-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	height: 300px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: none;
	padding: 0;
	width: 100%;
	display: block;
}

button.video-card {
	background: transparent;
}

button.video-card:hover,
button.video-card:focus {
	transform: scale(1.02);
	outline: 2px solid var(--dark-yellow);
	outline-offset: 2px;
}

.video-card:hover {
	transform: scale(1.02);
}

.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: var(--dark-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--text-dark);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Steps */
.steps-section {
	background: var(--light-gray);
}
.step-item {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.step-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--dark-yellow);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Price cards */
.price-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
	transition: 0.2s ease;
}
.price-card:hover {
	transform: translateY(-6px);
	border-color: var(--dark-yellow);
}
.price-accent {
	color: var(--text-dark);
}

/* Note card with checklist */
.note-card {
	background: linear-gradient(
		180deg,
		rgba(255, 215, 0, 0.1),
		rgba(255, 215, 0, 0.05)
	);
	border: 1px solid rgba(255, 215, 0, 0.35);
	border-radius: 14px;
	padding: 18px 20px;
}
.check-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: var(--dark-yellow);
	border-radius: 50%;
	margin-right: 8px;
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.25);
}

/* Quick form card */
.quick-form-card {
	max-width: 760px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.quick-form-header {
	background: linear-gradient(
		135deg,
		var(--dark-yellow),
		var(--primary-yellow)
	);
	color: #fff;
	padding: 24px 16px;
}
.quick-form-header i {
	font-size: 36px;
	display: block;
	margin-bottom: 8px;
}

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

.like-h5 {
	color: var(--dark-yellow);
	margin-bottom: 20px;
}

.footer a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--dark-yellow);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-link {
	width: 50px;
	height: 50px;

	color: var(--text-dark);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 27px;
	transition: all 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
}

/* Modal */
.modal-content {
	border-radius: 16px;
	border: none;
}

.modal-header {
	background: var(--dark-yellow);
	border-radius: 16px 16px 0 0;
}

.form-control:focus {
	border-color: var(--dark-yellow);
	box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Pricing Table */
.pricing-factors {
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.factor-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #e9ecef;
}

.factor-item:last-child {
	border-bottom: none;
}

.factor-name {
	font-weight: 500;
	color: var(--text-dark);
}

.factor-price {
	font-weight: 600;
	color: var(--text-dark);
	background: var(--light-gray);
	padding: 8px 16px;
	border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		padding: 60px 0 40px;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-bg-shape {
		display: none;
	}

	.services-categories,
	.services-table,
	.why-choose,
	.video-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}
}

.services-pricing-table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 16px;
}

.services-pricing-table tbody tr:last-child td:last-child {
	border-radius: 0 0 16px 0;
}

/* Додаткові стилі для кращого відображення цін */
.services-pricing-table .factor-price {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.services-pricing-table tbody tr:hover .factor-price,
.factor-item:hover .factor-price {
	background: var(--dark-yellow);
	transform: scale(1.05);
	box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.factor-item:hover {
	border-bottom: 1px solid var(--dark-yellow);
	font-weight: 600;
}
.services-pricing-table tbody tr:hover .factor-price::before {
	left: 100%;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background: var(--light-gray);
}

.testimonial-card {
	background: white;
	border-radius: 16px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--dark-yellow), var(--primary-yellow));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	border-color: var(--dark-yellow);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
	transform: scaleX(1);
}

.quote-icon {
	width: 50px;
	height: 50px;
	background: var(--dark-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 20px;
	color: var(--text-dark);
}

.testimonial-rating {
	margin-bottom: 20px;
}

.star {
	color: var(--dark-yellow);
	font-size: 16px;
	margin-right: 2px;
}

.testimonial-text {
	color: #666;
	line-height: 1.6;
	margin-bottom: 25px;
	font-style: italic;
	font-size: 0.95rem;
}

.client-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.client-avatar {
	width: 50px;
	height: 50px;
	background: var(--light-gray);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 18px;
	border: 2px solid var(--dark-yellow);
}

.client-details h5 {
	margin: 0 0 5px 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
}

.company {
	color: var(--dark-yellow);
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 2px;
}

.location {
	color: #888;
	font-size: 0.85rem;
}
.form-card {
	border-radius: 16px;
	position: relative;
	padding: 25px 35px;
	border: 2px solid;
	border-color: var(--dark-yellow);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 215, 0, 0.05),
		transparent
	);
	transition: left 0.6s ease;
}

/* Додаткові ефекти для карток */
.testimonial-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 215, 0, 0.05),
		transparent
	);
	transition: left 0.6s ease;
}

.testimonial-card:hover::after {
	left: 100%;
}

/* Анімація для зірок */
.testimonial-rating .star {
	transition: all 0.3s ease;
}

.testimonial-card:hover .star {
	transform: scale(1.1);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Анімація появи карток */
.testimonial-card {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.testimonial-card:nth-child(1) {
	animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
	animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
	animation-delay: 0.3s;
}
.testimonial-card:nth-child(4) {
	animation-delay: 0.4s;
}
.testimonial-card:nth-child(5) {
	animation-delay: 0.5s;
}
.testimonial-card:nth-child(6) {
	animation-delay: 0.6s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Додаткові ефекти для інтерактивності */
.testimonial-card:active {
	transform: translateY(-4px) scale(0.98);
}

.testimonial-card:focus-within {
	outline: 2px solid var(--dark-yellow);
	outline-offset: 2px;
}

/* Стилі для кращого відображення тексту */
.testimonial-text::before {
	content: '"';
	font-size: 2rem;
	color: var(--dark-yellow);
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0.3;
	font-family: serif;
}

/* Покращені стилі для аватарок */
.client-avatar {
	transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar {
	background: var(--dark-yellow);
	color: var(--text-dark);
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Додаткові стилі для заголовка секції */
.testimonials-section .section-title {
	position: relative;
	margin-bottom: 60px;
}

.testimonials-section .section-title::after,
.section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--dark-yellow), var(--primary-yellow));
	border-radius: 2px;
}

/* Стилі для кращого відображення на великих екранах */
@media (min-width: 1200px) {
	.testimonial-card {
		padding: 35px;
	}

	.testimonial-text {
		font-size: 1rem;
	}

	.client-details h5 {
		font-size: 1.2rem;
	}
}

/* Стилі для планшетів */
@media (min-width: 768px) and (max-width: 1199px) {
	.testimonial-card {
		padding: 28px;
	}

	.quote-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.client-avatar {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}
}

/* Додаткові ефекти для кращої інтерактивності */
.testimonial-card:hover .quote-icon {
	background: var(--primary-yellow);
	transform: rotate(5deg);
}

.testimonial-card:hover .company {
	color: var(--primary-yellow);
}

/* Стилі для кращої доступності */
.testimonial-card:focus {
	outline: none;
}

.testimonial-card:focus-visible {
	outline: 2px solid var(--dark-yellow);
	outline-offset: 2px;
}
@media (max-width: 991px) {
	.hero-image {
		display: none;
	}
}

/* Адаптивність таблиці на мобільних */
@media (max-width: 768px) {
	.services-pricing-table {
		display: block;
		width: 100%;
	}
	
	.services-pricing-table thead {
		display: none;
	}
	
	.services-pricing-table tbody,
	.services-pricing-table tr {
		display: block;
		width: 100%;
	}
	
	.services-pricing-table tr {
		margin-bottom: 1rem;
		border: 1px solid #dee2e6;
		border-radius: 8px;
		padding: 0.75rem;
		background: white;
	}
	
	.services-pricing-table td {
		display: block;
		width: 100%;
		padding: 0.5rem 0;
		text-align: left;
		border: none;
	}
	
	.services-pricing-table td::before {
		content: attr(data-label);
		font-weight: 600;
		display: block;
		margin-bottom: 0.5rem;
		color: var(--text-dark);
	}
	
	.services-pricing-table .factor-price {
		text-align: left;
		display: inline-block;
	}
	
	.services-pricing-table th {
		padding: 10px;
	}

	.testimonials-section {
		padding: 60px 0;
	}

	.testimonial-card {
		padding: 25px;
		margin-bottom: 20px;
	}

	.testimonial-card:hover {
		transform: translateY(-4px);
	}

	.client-info {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.testimonial-text::before {
		display: none;
	}

	.testimonials-section .section-title::after {
		width: 60px;
		height: 2px;
	}
}

/* FAQ Section */
.gray {
	background: var(--light-gray);
}

.content-section.gray .section-title {
	position: relative;
	margin-bottom: 60px;
}

.content-section.gray .section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--dark-yellow), var(--primary-yellow));
	border-radius: 2px;
}

.faq-item {
	background: white;
	border-radius: 16px;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
}

.faq-item:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-color: var(--dark-yellow);
	transform: translateY(-2px);
}

.faq-header {
	width: 100%;
	background: white;
	border: none;
	padding: 25px 30px;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
}

.faq-header:hover {
	background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
}

.faq-header span {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.4;
}

.faq-icon {
	font-size: 20px;
	color: var(--dark-yellow);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
	display: inline-block;
}

.faq-header.active .faq-icon {
	transform: rotate(180deg);
	color: var(--primary-yellow);
}

.faq-header.active .fallback-icon {
	transform: rotate(180deg);
	color: var(--primary-yellow);
}
.fallback-icon {
	font-size: 16px;
	color: #ffd700;
	margin-left: 15px;
	transition: all 0.3s ease;
}
.faq-content {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	background: white;
	transform: translateY(-10px);
}

.faq-content.active {
	padding: 0 30px 30px;
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
}

.faq-content p {
	margin: 0;
	color: #666;
	line-height: 1.6;
	padding-top: 10px;
	font-size: 0.95rem;
}

/* Додаткові ефекти для FAQ */
.faq-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--dark-yellow);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.faq-item:hover::before {
	transform: scaleY(1);
}

.faq-header:focus {
	outline: none;
}

.faq-header:focus-visible {
	outline: 2px solid var(--dark-yellow);
	outline-offset: -2px;
}

/* Стилі для активного стану */
.faq-item.active {
	border-color: var(--dark-yellow);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-header.active {
	background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
	border-bottom: 1px solid #e9ecef;
}

/* Додаткові стилі для кращої роботи */
.faq-content {
	will-change: max-height, opacity, transform;
}

.faq-content.active {
	will-change: auto;
}

/* СТРІЧКА */

.tape {
	--size: 28px;
	--yellow: #ffd84d;
	--black: #2b2b2b;
	width: 100%;
	height: 14px;
	margin: auto;
	border-radius: 2px;
	position: relative;
	background: repeating-linear-gradient(
		45deg,
		var(--yellow) 0 calc(var(--size) * 0.5),
		var(--black) calc(var(--size) * 0.5) var(--size)
	);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -1px 0 rgba(0, 0, 0, 0.25), 0 14px 22px -16px rgba(0, 0, 0, 0.45),
		0 -14px 22px -16px rgba(0, 0, 0, 0.45);
}

/*  */

/* Стилі для кращого відображення на мобільних */
@media (max-width: 768px) {
	nav .container {
		justify-content: center !important;
		flex-direction: column;
	}
	.modal-header .like-header {
		font-size: 16px;
	}
	.modal-body .text-muted {
		font-size: 15px;
	}
	.advantage-item {
		padding: 15px;
	}
	.testimonials-section,
	.services-categories,
	.services-table,
	.why-choose,
	.video-section {
		padding: 20px 0;
	}
	.faq-header {
		padding: 20px 25px;
	}

	.faq-content.active {
		padding: 0 25px 25px;
	}

	.faq-header span {
		font-size: 1rem;
	}

	.faq-icon {
		font-size: 18px;
	}

	.fallback-icon {
		font-size: 14px;
	}
}

/* Стилі для великих екранів */
@media (min-width: 1200px) {
	.faq-header {
		padding: 30px 35px;
	}

	.faq-content.active {
		padding: 0 35px 35px;
	}

	.faq-header span {
		font-size: 1.2rem;
	}
}

/* Додаткові ефекти для кращої інтерактивності */
.faq-item:active {
	transform: translateY(0) scale(0.98);
}

.faq-header:active {
	background: var(--light-gray);
}

/* Анімація появи FAQ елементів */
.faq-item {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.faq-item:nth-child(1) {
	animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
	animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
	animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
	animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
	animation-delay: 0.5s;
}

/* Стилі для кращого відображення заголовка */
.faq-section .section-title {
	position: relative;
	margin-bottom: 60px;
}

.faq-section .section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--dark-yellow), var(--primary-yellow));
	border-radius: 2px;
}

/* Стилі для кращої доступності */
.faq-header[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-content[aria-hidden="false"] {
	max-height: 500px;
	opacity: 1;
	padding: 0 30px 30px;
}

/* Додаткові стилі для планшетів */
@media (min-width: 768px) and (max-width: 1199px) {
	.faq-header {
		padding: 28px 32px;
	}

	.faq-content.active {
		padding: 0 32px 32px;
	}

	.faq-header span {
		font-size: 1.05rem;
	}

	.faq-icon {
		font-size: 19px;
	}
}

/* Стилі для кращого відображення на мобільних */
@media (max-width: 480px) {
	.faq-header {
		padding: 18px 20px;
	}

	.faq-content.active {
		padding: 0 20px 20px;
	}

	.faq-header span {
		font-size: 0.95rem;
		line-height: 1.3;
	}

	.faq-icon {
		font-size: 16px;
		margin-left: 10px;
	}
}

/* Стилі для тестової секції */
.alert-info {
	background: var(--light-gray);
	border: 2px solid var(--dark-yellow);
	border-radius: 12px;
}

.alert-info h5 {
	color: var(--text-dark);
	margin-bottom: 15px;
}

.alert-info ul {
	margin-bottom: 0;
}

.alert-info li {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.alert-info .bi {
	font-size: 20px;
	color: var(--dark-yellow);
}

/* ============================================
   Gallery Section Styles
   ============================================ */

.gallery-section {
	padding: 80px 0;
	background: var(--light-gray);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card {
	position: relative;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	border-radius: 16px;
	display: block;
}

.gallery-card:focus {
	outline: 2px solid var(--dark-yellow);
	outline-offset: 2px;
}

.gallery-thumbnail {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-thumbnail {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 16px;
}

.gallery-card:hover .gallery-overlay {
	opacity: 1;
}

.gallery-icon {
	width: 60px;
	height: 60px;
	background: var(--dark-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--text-dark);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-icon {
	transform: scale(1);
}

.gallery-video .play-button {
	width: 80px;
	height: 80px;
	background: var(--dark-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--text-dark);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.gallery-video:hover .play-button {
	transform: scale(1);
}

.gallery-caption {
	padding: 16px 20px;
	background: #fff;
}

.gallery-caption a,
.gallery-caption span {
	display: block;
	font-weight: 600;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.gallery-caption a:hover {
	color: var(--dark-yellow);
}

/* Lightbox Styles */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(10px);
}

.gallery-lightbox.active {
	display: flex;
	opacity: 1;
}

.gallery-lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox-image {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
	animation: galleryFadeIn 0.3s ease;
}

@keyframes galleryFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.gallery-lightbox-caption {
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	max-width: 800px;
	padding: 0 20px;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10001;
	backdrop-filter: blur(10px);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
	background: var(--dark-yellow);
	border-color: var(--dark-yellow);
	color: var(--text-dark);
	transform: scale(1.1);
}

.gallery-lightbox-close {
	top: 20px;
	right: 20px;
}

.gallery-lightbox-prev {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.gallery-lightbox-next {
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.gallery-lightbox-close:focus,
.gallery-lightbox-prev:focus,
.gallery-lightbox-next:focus {
	outline: 2px solid var(--dark-yellow);
	outline-offset: 2px;
}

/* Адаптивні стилі для галереї */
@media (max-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 24px;
	}
	
	.gallery-thumbnail {
		height: 320px;
	}
}

@media (max-width: 768px) {
	.gallery-section {
		padding: 40px 0;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 20px;
	}
	
	.gallery-thumbnail {
		height: 280px;
	}
	
	.gallery-lightbox-image {
		max-height: 75vh;
	}
	
	.gallery-lightbox-close,
	.gallery-lightbox-prev,
	.gallery-lightbox-next {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.gallery-lightbox-close {
		top: 10px;
		right: 10px;
	}
	
	.gallery-lightbox-prev {
		left: 10px;
	}
	
	.gallery-lightbox-next {
		right: 10px;
	}
	
	.gallery-caption {
		padding: 12px 16px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.gallery-thumbnail {
		height: 300px;
	}
	
	.gallery-lightbox-caption {
		font-size: 16px;
		margin-top: 15px;
	}
}

/* CSS Fallback для Bootstrap Icons - працює тільки якщо Bootstrap Icons не завантажились */
.bi-no-icons .bi::before {
	content: attr(data-icon);
}

.bi-no-icons .bi.bi-chevron-down::before {
	content: "▼";
}

.bi-no-icons .bi.bi-chevron-up::before {
	content: "▲";
}

.bi-no-icons .bi.bi-chevron-left::before {
	content: "◀";
}

/* Accessibility utilities */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Breadcrumb styles */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: var(--light-gray);
	border-radius: 8px;
}

.breadcrumb-item {
	display: flex;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "/";
	padding: 0 0.5rem;
	color: var(--text-grey);
}

.breadcrumb-item a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
	color: var(--dark-yellow);
}

.breadcrumb-item.active {
	color: var(--text-grey);
}

.bi-no-icons .bi.bi-chevron-right::before {
	content: "▶";
}

/* Тест fallback іконок */
.faq-header:not(.has-bootstrap-icons) .faq-icon {
	display: none !important;
}

.faq-header:not(.has-bootstrap-icons) .fallback-icon {
	display: inline-block !important;
}

/* Додаткові стилі для fallback іконок */
.fallback-icon {
	font-size: 16px;
	color: var(--dark-yellow);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 15px;
	display: inline-block; /* Змінено з none на inline-block */
	font-weight: bold;
	line-height: 1;
}

/* Стилі для fallback іконок в активному стані */
.faq-header.active .fallback-icon {
	transform: rotate(180deg);
	color: var(--primary-yellow);
}

/* Стилі для fallback іконок при hover */
.faq-header:hover .fallback-icon {
	color: var(--primary-yellow);
	transform: scale(1.1);
}
