* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #f9fafb;
	color: #111827;
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in-out;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: inherit;
	border: none;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 1rem;
}

/* ========================================
   2. TYPOGRAPHY
======================================== */

.bcl-h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.bcl-h2 {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	letter-spacing: -0.01em;
}

.bcl-h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.bcl-h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.bcl-h5 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.bcl-body-large {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #6b7280;
}

.bcl-body {
	font-size: 1rem;
	line-height: 1.7;
	color: #6b7280;
}

.bcl-body-small {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #6b7280;
}

.bcl-text-accent {
	color: #2563eb;
}

.bcl-text-gold {
	color: #facc15;
}

.bcl-text-dark {
	color: #111827;
}

/* ========================================
   3. LAYOUT UTILITIES
======================================== */

.bcl-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bcl-container-wide {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bcl-container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bcl-section {
	padding: 6rem 0;
}

.bcl-section-small {
	padding: 4rem 0;
}

.bcl-section-large {
	padding: 8rem 0;
}

.bcl-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 2rem;
}

.bcl-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
}

.bcl-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.bcl-flex {
	display: flex;
}

.bcl-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bcl-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bcl-flex-column {
	display: flex;
	flex-direction: column;
}

.bcl-gap-1 {
	gap: 0.5rem;
}
.bcl-gap-2 {
	gap: 1rem;
}
.bcl-gap-3 {
	gap: 1.5rem;
}
.bcl-gap-4 {
	gap: 2rem;
}

/* ========================================
   4. BUTTONS
======================================== */

.bcl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: all 0.25s ease-in-out;
	cursor: pointer;
	text-align: center;
	gap: 0.5rem;
}

.bcl-btn-primary {
	background: #2563eb;
	color: #ffffff;
	border: 2px solid #2563eb;
}

.bcl-btn-primary:hover {
	background: #1e40af;
	border-color: #1e40af;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.bcl-btn-secondary {
	background: transparent;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.bcl-btn-secondary:hover {
	background: #2563eb;
	color: #ffffff;
	transform: translateY(-2px);
}

.bcl-btn-gold {
	background: #facc15;
	color: #111827;
	border: 2px solid #facc15;
}

.bcl-btn-gold:hover {
	background: #eab308;
	border-color: #eab308;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(250, 204, 21, 0.3);
}

.bcl-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
}

.bcl-btn-small {
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
}

/* ========================================
   5. HEADER
======================================== */

.bcl-header {
	background: #ffffff;
	padding: 1.25rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.bcl-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bcl-header-logo {
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
}

.bcl-header-logo i {
	font-size: 2rem;
	color: #2563eb;
}

.bcl-header-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.bcl-header-nav a {
	font-size: 1rem;
	font-weight: 500;
	color: #6b7280;
	position: relative;
}

.bcl-header-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2563eb;
	transition: width 0.25s ease;
}

.bcl-header-nav a:hover,
.bcl-header-nav a.bcl-active {
	color: #2563eb;
}

.bcl-header-nav a:hover::after,
.bcl-header-nav a.bcl-active::after {
	width: 100%;
}

.bcl-header-social {
	display: flex;
	gap: 1rem;
}

.bcl-header-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f3f4f6;
	color: #6b7280;
	transition: all 0.25s ease;
}

.bcl-header-social a:hover {
	background: #2563eb;
	color: #ffffff;
	transform: translateY(-2px);
}

.bcl-mobile-menu-toggle {
	display: none;
	font-size: 1.5rem;
	background: none;
	color: #111827;
	cursor: pointer;
}

/* ========================================
   6. HERO SECTION
======================================== */

.bcl-hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(250, 204, 21, 0.05) 100%
	);
	overflow: hidden;
}

.bcl-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/bcl-hero.webp') center/cover;
	opacity: 0.3;
}

.bcl-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.bcl-hero h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #111827;
	animation: bcl-fade-up 0.8s ease-out;
}

.bcl-hero-subtitle {
	font-size: 1.5rem;
	color: #6b7280;
	margin-bottom: 2.5rem;
	animation: bcl-fade-up 0.8s ease-out 0.2s backwards;
}

.bcl-hero-buttons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: center;
	animation: bcl-fade-up 0.8s ease-out 0.4s backwards;
}

/* ========================================
   7. CARDS
======================================== */

.bcl-card {
	background: #ffffff;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.25s ease-in-out;
}

.bcl-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bcl-card-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	color: #ffffff;
	border-radius: 1rem;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}

.bcl-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111827;
}

.bcl-card-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #6b7280;
}

.bcl-card-highlight {
	border: 2px solid #2563eb;
	position: relative;
	overflow: hidden;
}

.bcl-card-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
}

.bcl-card-team {
	text-align: center;
}

.bcl-card-team-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #2563eb;
}

.bcl-card-team-image img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.bcl-card-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #111827;
}

.bcl-card-team-role {
	font-size: 1rem;
	color: #6b7280;
	margin-bottom: 1rem;
}

/* ========================================
   8. BUSINESS SOLUTION SECTION
======================================== */

.bcl-business-solution {
	background: #ffffff;
	border-radius: 1.5rem;
	padding: 3rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border: 2px solid #e5e7eb;
}

.bcl-business-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.bcl-business-header h2 {
	color: #111827;
	margin-bottom: 1rem;
}

.bcl-business-header p {
	font-size: 1.25rem;
	color: #6b7280;
}

.bcl-business-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.bcl-business-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bcl-business-feature {
	display: flex;
	align-items: start;
	gap: 1rem;
}

.bcl-business-feature i {
	color: #2563eb;
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.bcl-business-feature-text h4 {
	color: #111827;
	margin-bottom: 0.5rem;
}

.bcl-business-feature-text p {
	color: #6b7280;
}

.bcl-business-cta {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(250, 204, 21, 0.05) 100%
	);
	border-radius: 1rem;
}

.bcl-business-price {
	font-size: 3rem;
	font-weight: 800;
	color: #2563eb;
	margin-bottom: 1rem;
}

.bcl-business-price span {
	font-size: 1.25rem;
	color: #6b7280;
}

.bcl-business-cta p {
	margin-bottom: 1.5rem;
	color: #6b7280;
}

/* ========================================
   9. FORM STYLES
======================================== */

.bcl-form-section {
	background: #ffffff;
	padding: 4rem 0;
}

.bcl-form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.bcl-form-header {
	margin-bottom: 2rem;
}

.bcl-form-header h2 {
	margin-bottom: 1rem;
}

.bcl-form-header p {
	color: #6b7280;
	font-size: 1.125rem;
}

.bcl-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bcl-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bcl-form-label {
	font-weight: 600;
	color: #111827;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bcl-form-input,
.bcl-form-textarea {
	padding: 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 0.5rem;
	font-size: 1rem;
	color: #111827;
	transition: all 0.25s ease;
	background: #ffffff;
}

.bcl-form-input:focus,
.bcl-form-textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bcl-form-input.bcl-error,
.bcl-form-textarea.bcl-error {
	border-color: #ef4444;
}

.bcl-form-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.bcl-form-error-message.bcl-show {
	display: block;
}

.bcl-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.bcl-form-submit {
	width: 100%;
}

.bcl-map-container {
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
	background: #e5e7eb;
}

.bcl-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.bcl-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.bcl-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.bcl-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ========================================
   10. FOOTER
======================================== */

.bcl-footer {
	background: #f3f4f6;
	padding: 4rem 0 2rem;
	border-top: 1px solid #e5e7eb;
}

.bcl-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.bcl-footer-column h4 {
	margin-bottom: 1.5rem;
	color: #111827;
	font-size: 1.125rem;
}

.bcl-footer-column p {
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.bcl-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bcl-footer-nav a {
	color: #6b7280;
	font-size: 0.9375rem;
	transition: color 0.25s ease;
}

.bcl-footer-nav a:hover {
	color: #2563eb;
}

.bcl-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bcl-footer-contact-item {
	display: flex;
	align-items: start;
	gap: 0.75rem;
	color: #6b7280;
	font-size: 0.9375rem;
}

.bcl-footer-contact-item i {
	color: #2563eb;
	margin-top: 0.25rem;
}

.bcl-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
	text-align: center;
	color: #6b7280;
	font-size: 0.875rem;
}

/* ========================================
   11. COOKIE BANNER
======================================== */

.bcl-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	padding: 1.5rem;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.bcl-cookie-banner.bcl-show {
	transform: translateY(0);
}

.bcl-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	gap: 2rem;
}

.bcl-cookie-text {
	flex: 1;
}

.bcl-cookie-text p {
	color: #6b7280;
	margin-bottom: 0.5rem;
}

.bcl-cookie-text a {
	color: #2563eb;
	text-decoration: underline;
}

.bcl-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* ========================================
   12. ANIMATIONS
======================================== */

@keyframes bcl-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bcl-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bcl-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bcl-slide-right {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.bcl-animate-fade-up {
	animation: bcl-fade-up 0.8s ease-out;
}

.bcl-animate-fade-in {
	animation: bcl-fade-in 0.6s ease-out;
}

.bcl-animate-zoom {
	animation: bcl-zoom-in 0.6s ease-out;
}

.bcl-animate-slide-right {
	animation: bcl-slide-right 0.8s ease-out;
}

.bcl-animate-delay-1 {
	animation-delay: 0.1s;
	animation-fill-mode: backwards;
}

.bcl-animate-delay-2 {
	animation-delay: 0.2s;
	animation-fill-mode: backwards;
}

.bcl-animate-delay-3 {
	animation-delay: 0.3s;
	animation-fill-mode: backwards;
}

.bcl-animate-delay-4 {
	animation-delay: 0.4s;
	animation-fill-mode: backwards;
}

/* ========================================
   13. UTILITY CLASSES
======================================== */

.bcl-text-center {
	text-align: center;
}

.bcl-text-left {
	text-align: left;
}

.bcl-text-right {
	text-align: right;
}

.bcl-mb-1 {
	margin-bottom: 0.5rem;
}
.bcl-mb-2 {
	margin-bottom: 1rem;
}
.bcl-mb-3 {
	margin-bottom: 1.5rem;
}
.bcl-mb-4 {
	margin-bottom: 2rem;
}
.bcl-mb-5 {
	margin-bottom: 3rem;
}

.bcl-mt-1 {
	margin-top: 0.5rem;
}
.bcl-mt-2 {
	margin-top: 1rem;
}
.bcl-mt-3 {
	margin-top: 1.5rem;
}
.bcl-mt-4 {
	margin-top: 2rem;
}
.bcl-mt-5 {
	margin-top: 3rem;
}

.bcl-hidden {
	display: none;
}

.bcl-visible {
	display: block;
}

/* ========================================
   14. PRIVACY & TERMS PAGES
======================================== */

.bcl-page-header {
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(250, 204, 21, 0.05) 100%
	);
	padding: 4rem 0;
	text-align: center;
}

.bcl-page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.bcl-page-header p {
	font-size: 1.25rem;
	color: #6b7280;
}

.bcl-page-content {
	padding: 4rem 0;
}

.bcl-content-section {
	margin-bottom: 3rem;
}

.bcl-content-section h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #111827;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #e5e7eb;
}

.bcl-content-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 2rem;
	color: #111827;
}

.bcl-content-section p {
	margin-bottom: 1rem;
	color: #6b7280;
	line-height: 1.8;
}

.bcl-content-section ul,
.bcl-content-section ol {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.bcl-content-section li {
	margin-bottom: 0.5rem;
	color: #6b7280;
	line-height: 1.7;
}

.bcl-content-section strong {
	color: #111827;
	font-weight: 600;
}

.bcl-content-section a {
	color: #2563eb;
	text-decoration: underline;
}

.bcl-content-section a:hover {
	color: #1e40af;
}

/* ========================================
   15. ACCORDION
======================================== */

.bcl-accordion {
	border-radius: 0.75rem;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bcl-accordion-item {
	border-bottom: 1px solid #e5e7eb;
}

.bcl-accordion-item:last-child {
	border-bottom: none;
}

.bcl-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	cursor: pointer;
	background: #ffffff;
	transition: background 0.25s ease;
}

.bcl-accordion-header:hover {
	background: #f9fafb;
}

.bcl-accordion-header h4 {
	font-size: 1.125rem;
	color: #111827;
	margin: 0;
}

.bcl-accordion-icon {
	color: #2563eb;
	font-size: 1.25rem;
	transition: transform 0.25s ease;
}

.bcl-accordion-item.bcl-active .bcl-accordion-icon {
	transform: rotate(180deg);
}

.bcl-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.bcl-accordion-item.bcl-active .bcl-accordion-content {
	max-height: 500px;
}

.bcl-accordion-body {
	padding: 0 1.5rem 1.5rem;
	color: #6b7280;
	line-height: 1.7;
}

/* ========================================
   16. BADGES & LABELS
======================================== */

.bcl-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bcl-badge-primary {
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.bcl-badge-gold {
	background: rgba(250, 204, 21, 0.2);
	color: #b45309;
}

.bcl-badge-success {
	background: rgba(16, 185, 129, 0.1);
	color: #059669;
}

/* ========================================
   17. SECTION BACKGROUNDS
======================================== */

.bcl-bg-white {
	background: #ffffff;
}

.bcl-bg-gray {
	background: #f9fafb;
}

.bcl-bg-gradient {
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(250, 204, 21, 0.05) 100%
	);
}

/* ========================================
   18. DIVIDERS
======================================== */

.bcl-divider {
	height: 1px;
	background: #e5e7eb;
	margin: 3rem 0;
}

.bcl-divider-thick {
	height: 2px;
	background: linear-gradient(90deg, #2563eb 0%, #facc15 100%);
	margin: 4rem 0;
}

/* ========================================
   19. LOADING STATE
======================================== */

.bcl-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(37, 99, 235, 0.3);
	border-radius: 50%;
	border-top-color: #2563eb;
	animation: bcl-spin 0.8s linear infinite;
}

@keyframes bcl-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ========================================
   23. ACCESSIBILITY
======================================== */

.bcl-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* ========================================
   24. SCROLL ANIMATIONS
======================================== */

[data-bcl-animate] {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-bcl-animate].bcl-in-view {
	opacity: 1;
}

[data-bcl-animate='fade-up'].bcl-in-view {
	transform: translateY(0);
}

[data-bcl-animate='fade-up'] {
	transform: translateY(30px);
}

[data-bcl-animate='zoom'].bcl-in-view {
	transform: scale(1);
}

[data-bcl-animate='zoom'] {
	transform: scale(0.95);
}

[data-bcl-animate='slide-right'].bcl-in-view {
	transform: translateX(0);
}

[data-bcl-animate='slide-right'] {
	transform: translateX(-30px);
}

/* ========================================
   25. ADDITIONAL COMPONENTS
======================================== */

.bcl-feature-icon-large {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	color: #ffffff;
	border-radius: 1.5rem;
	font-size: 2.5rem;
	margin: 0 auto 1.5rem;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bcl-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.bcl-stat-item {
	text-align: center;
	padding: 2rem;
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bcl-stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.bcl-stat-label {
	font-size: 1rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bcl-image-placeholder {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	font-size: 1rem;
}

/* ========================================
   20. RESPONSIVE - TABLET
======================================== */

@media (max-width: 1024px) {
	.bcl-h1 {
		font-size: 2.75rem;
	}

	.bcl-h2 {
		font-size: 2.25rem;
	}

	.bcl-hero h1 {
		font-size: 3rem;
	}

	.bcl-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.bcl-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bcl-business-content {
		grid-template-columns: 1fr;
	}

	.bcl-form-container {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   21. RESPONSIVE - MOBILE
======================================== */
@media (max-width: 900px) {
	.bcl-header-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		height: 100vh;
		background: #ffffff;
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 2rem 2rem;
		box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
		transition: left 0.3s ease;
		z-index: 999;
	}

	.bcl-header-nav.bcl-active {
		left: 0;
	}

	.bcl-header-nav a {
		font-size: 1.25rem;
		width: 100%;
		padding: 0.75rem 0;
	}

	.bcl-mobile-menu-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.bcl-container,
	.bcl-container-wide,
	.bcl-container-narrow {
		padding: 0 1rem;
	}

	.bcl-section {
		padding: 4rem 0;
	}

	.bcl-h1 {
		font-size: 2rem;
	}

	.bcl-h2 {
		font-size: 1.75rem;
	}

	.bcl-h3 {
		font-size: 1.5rem;
	}

	.bcl-hero h1 {
		font-size: 2.25rem;
	}

	.bcl-hero-subtitle {
		font-size: 1.125rem;
	}

	.bcl-hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.bcl-grid-2,
	.bcl-grid-3,
	.bcl-grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.bcl-footer-grid {
		grid-template-columns: 1fr;
	}

	.bcl-business-solution {
		padding: 2rem 1.5rem;
	}

	.bcl-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.bcl-cookie-actions {
		width: 100%;
		flex-direction: column;
	}

	.bcl-page-header h1 {
		font-size: 2rem;
	}

	.bcl-page-header p {
		font-size: 1rem;
	}

	.bcl-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.bcl-grid-2,
	.bcl-grid-3,
	.bcl-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.bcl-header-social {
		display: none;
	}

	.bcl-header-container {
		padding: 0 20px;
	}

	.bcl-card-title {
		font-size: 1.3rem;
	}

	.bcl-page-header h1 {
		font-size: 1.5rem;
	}

	.bcl-content-section h2 {
		font-size: 1.3rem;
	}
}
