/* Buttons */

.bf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	transition:
		transform var(--bf-duration) var(--bf-ease),
		box-shadow var(--bf-duration) var(--bf-ease),
		background var(--bf-duration) var(--bf-ease);
}

.bf-button:hover {
	transform: translateY(-3px);
}

.bf-button--primary {
	background: var(--bf-gradient);
	color: var(--bf-white);
	box-shadow: 0 12px 30px rgba(56, 103, 255, 0.24);
}

.bf-button--primary:hover {
	box-shadow: 0 18px 40px rgba(56, 103, 255, 0.32);
}

.bf-button--secondary {
	background: var(--bf-white);
	border: 1px solid var(--bf-border);
	color: var(--bf-text);
	box-shadow: var(--bf-shadow-sm);
}

/* Cards */

.bf-card {
	position: relative;
	padding: 32px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--bf-border);
	border-radius: var(--bf-radius-lg);
	box-shadow: var(--bf-shadow-sm);
	transition:
		transform var(--bf-duration) var(--bf-ease),
		box-shadow var(--bf-duration) var(--bf-ease),
		border-color var(--bf-duration) var(--bf-ease);
}

.bf-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--bf-shadow-md);
	border-color: rgba(56, 103, 255, 0.18);
}

.bf-card__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 24px;
	border-radius: 18px;
	background: var(--bf-gradient-soft);
	color: var(--bf-blue);
}

.bf-card__title {
	margin-bottom: 12px;
}

.bf-card__text {
	margin-bottom: 0;
}

/* Badge */

.bf-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border: 1px solid rgba(56, 103, 255, 0.12);
	border-radius: 999px;
	background: rgba(56, 103, 255, 0.06);
	color: var(--bf-blue);
	font-size: 0.78rem;
	font-weight: 700;
}

/* Visual surface */

.bf-visual {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--bf-radius-xl);
	background: var(--bf-gradient-soft);
	box-shadow: var(--bf-shadow-lg);
}
/* Header */

.bf-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	    box-shadow: 0 10px 30px rgba(20, 30, 80, 0.08);
}

.bf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 32px;
}

/* ==========================================================
   BREFECT HEADER — BRAND LOGO
   ========================================================== */

.bf-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}

.bf-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;

	width: fit-content;
	max-width: 200px;

	margin: 0;
	padding: 0;

	line-height: 0;
	text-decoration: none;

	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.bf-logo__image {
	display: block;

	width: auto;
	height: 48px;

	max-width: 190px;

	object-fit: contain;
	object-position: left center;
}

.bf-logo__text {
	display: block;

	color: var(--bf-navy);

	font-size: 32px;
	font-weight: 900;

	line-height: 1;
	letter-spacing: -0.06em;
}

.bf-logo:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

	.bf-logo__image {
		height: 44px;
		max-width: 175px;
	}

}

@media (max-width: 600px) {

	.bf-logo {
		max-width: 165px;
	}

	.bf-logo__image {
		height: 40px;
		max-width: 160px;
	}

	.bf-logo__text {
		font-size: 29px;
	}

}
.bf-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.bf-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-nav__list a {
	position: relative;
	color: var(--bf-text);
	font-size: 0.92rem;
	font-weight: 600;
	transition: color 250ms ease;
}

.bf-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--bf-gradient);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 300ms var(--bf-ease);
}

.bf-nav__list a:hover {
	color: var(--bf-blue);
}

.bf-nav__list a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.bf-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--bf-border);
	border-radius: 12px;
	background: var(--bf-white);
}

.bf-menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--bf-navy);
	border-radius: 10px;
}

.bf-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--bf-navy);
	color: var(--bf-white);
	transform: translateY(-150%);
	transition: transform 200ms ease;
}

.bf-skip-link:focus {
	transform: translateY(0);
}


/* Footer */

.bf-footer {
	padding: 80px 0 24px;
	background: var(--bf-navy);
	color: var(--bf-white);
}

.bf-footer__grid {
	display: grid;
	grid-template-columns: 1.7fr repeat(3, 1fr);
	gap: 50px;
	padding-bottom: 60px;
}

.bf-logo--footer {
	color: var(--bf-white);
}

.bf-footer__description {
	max-width: 380px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.68);
}

.bf-footer__title {
	margin-bottom: 20px;
	font-size: 0.9rem;
	color: var(--bf-white);
	letter-spacing: 0;
}

.bf-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-footer__links a {
	color: rgba(255, 255, 255, 0.68);
	transition: color 250ms ease;
}

.bf-footer__links a:hover {
	color: var(--bf-white);
}

.bf-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bf-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.bf-footer__legal {
	display: flex;
	gap: 20px;
}

.bf-footer__legal a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
}
/* ==========================================================
   BREFECT HERO
   ========================================================== */

.bf-hero {
	position: relative;
	min-height: calc(100vh - 78px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 42%, rgba(124, 77, 255, 0.10), transparent 30%),
		radial-gradient(circle at 65% 65%, rgba(56, 103, 255, 0.10), transparent 32%),
		var(--bf-bg);
	perspective: 1400px;
}

.bf-hero__container {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: clamp(50px, 7vw, 100px);
	padding-block: 90px;
}

.bf-hero__content {
	position: relative;
	z-index: 5;
	max-width: 680px;
}

.bf-hero__title {
	max-width: 700px;
	margin: 0 0 28px;
	color: var(--bf-navy);
	font-size: clamp(3.5rem, 6.8vw, 6.5rem);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.065em;
}

.bf-hero__title span {
	display: inline-block;
	background: var(--bf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.bf-hero__description {
	max-width: 620px;
	margin-bottom: 34px;
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.7;
}

.bf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.bf-hero__mini-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 42px;
}

.bf-hero__mini-proof span {
	padding: 8px 13px;
	border: 1px solid var(--bf-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--bf-text-soft);
	font-size: 0.75rem;
	font-weight: 600;
}

/* Visual */

.bf-hero__visual {
	position: relative;
	min-height: 570px;
	display: grid;
	place-items: center;
	transform-style: preserve-3d;
	will-change: transform;
}
.bf-dashboard {
	position: relative;
	z-index: 4;
	width: min(100%, 590px);
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 34px;
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.96),
			rgba(245, 246, 255, 0.91)
		);
	box-shadow:
		0 45px 100px rgba(40, 50, 100, 0.16),
		0 12px 30px rgba(56, 103, 255, 0.10);
	transform-style: preserve-3d;
	transition: transform 120ms ease-out;
}

.bf-dashboard__top,
.bf-dashboard__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.bf-dashboard__label {
	display: block;
	margin-bottom: 5px;
	color: var(--bf-text-muted);
	font-size: 0.72rem;
	font-weight: 600;
}

.bf-dashboard__top strong {
	color: var(--bf-navy);
	font-size: 1.1rem;
}

.bf-dashboard__status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(50, 190, 120, 0.09);
	color: #22935e;
	font-size: 0.7rem;
	font-weight: 700;
}

.bf-dashboard__status span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #28b66d;
}

.bf-dashboard__main {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 14px;
	margin-top: 24px;
}

.bf-dashboard__chart,
.bf-dashboard__metrics {
	padding: 20px;
	border: 1px solid var(--bf-border);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.72);
}

.bf-chart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.bf-chart__header span {
	color: var(--bf-text-soft);
	font-size: 0.75rem;
}

.bf-chart__header strong {
	color: var(--bf-blue);
	font-size: 1rem;
}

.bf-chart {
	position: relative;
	height: 180px;
	overflow: hidden;
	border-radius: 16px;
	background:
		linear-gradient(rgba(56, 103, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 103, 255, 0.05) 1px, transparent 1px);
	background-size: 36px 36px;
}

.bf-chart__line {
	position: absolute;
	inset: 25% 5% 15% 5%;
	background: linear-gradient(145deg, transparent 0 18%, #3867ff 18% 20%, transparent 20% 33%, #7c4dff 33% 35%, transparent 35% 52%, #3867ff 52% 54%, transparent 54% 69%, #7c4dff 69% 71%, transparent 71%);
	clip-path: polygon(
		0 80%,
		15% 67%,
		28% 73%,
		42% 42%,
		57% 58%,
		70% 28%,
		84% 38%,
		100% 5%,
		100% 100%,
		0 100%
	);
	opacity: 0.12;
}

.bf-chart__dot {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 3px solid white;
	border-radius: 50%;
	background: var(--bf-blue);
	box-shadow: 0 0 0 5px rgba(56, 103, 255, 0.12);
}

.bf-chart__dot--one {
	left: 42%;
	top: 42%;
}

.bf-chart__dot--two {
	left: 70%;
	top: 28%;
}

.bf-chart__dot--three {
	right: 5%;
	top: 5%;
}

.bf-dashboard__metrics {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bf-metric {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 15px;
	background: var(--bf-bg-soft);
}

.bf-metric__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 10px;
	background: var(--bf-gradient-soft);
	color: var(--bf-blue);
	font-size: 0.7rem;
	font-weight: 800;
}

.bf-metric small,
.bf-metric strong {
	display: block;
}

.bf-metric small {
	color: var(--bf-text-muted);
	font-size: 0.62rem;
}

.bf-metric strong {
	color: var(--bf-text);
	font-size: 0.72rem;
}

.bf-dashboard__bottom {
	margin-top: 14px;
	padding: 15px 18px;
	border-radius: 18px;
	background: var(--bf-navy);
}

.bf-dashboard__bottom span {
	display: block;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.65rem;
}

.bf-dashboard__bottom strong {
	color: white;
	font-size: 0.82rem;
}

.bf-progress {
	width: 130px;
	height: 6px;
	overflow: hidden;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.12);
}

.bf-progress span {
	display: block;
	width: 82%;
	height: 100%;
	border-radius: inherit;
	background: var(--bf-gradient);
}

/* Floating elements */

.bf-floating-card {
	position: absolute;
	z-index: 6;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--bf-shadow-md);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	transform: translateZ(70px);
}

.bf-floating-card span {
	display: block;
	color: var(--bf-blue);
	font-size: 0.62rem;
	font-weight: 700;
}

.bf-floating-card strong {
	color: var(--bf-navy);
	font-size: 0.9rem;
}

.bf-floating-card--top {
	top: 12%;
	right: 3%;
}

.bf-floating-card--bottom {
	bottom: 13%;
	left: 1%;
}

.bf-hero__orb {
	position: absolute;
	z-index: 1;
	border-radius: 50%;
	transform: translateZ(0);
}

.bf-hero__orb--one {
	width: 180px;
	height: 180px;
	top: 7%;
	right: 5%;
	background: radial-gradient(circle at 30% 30%, #ffffff, #b8c7ff 45%, #3867ff);
	box-shadow: 20px 30px 70px rgba(56, 103, 255, 0.20);
}

.bf-hero__orb--two {
	width: 90px;
	height: 90px;
	bottom: 10%;
	right: 18%;
	background: radial-gradient(circle at 30% 30%, #ffffff, #d3c4ff 50%, #7c4dff);
	box-shadow: 15px 20px 45px rgba(124, 77, 255, 0.20);
}

.bf-hero__shape {
	position: absolute;
	z-index: 2;
	color: var(--bf-purple);
	font-size: 2rem;
	text-shadow: 0 10px 30px rgba(124, 77, 255, 0.25);
}

.bf-hero__shape--diamond {
	top: 15%;
	left: 5%;
}

.bf-hero__glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}

.bf-hero__glow--one {
	top: 15%;
	right: 20%;
	background: rgba(56, 103, 255, 0.08);
}

.bf-hero__glow--two {
	right: -10%;
	bottom: -20%;
	background: rgba(124, 77, 255, 0.08);
}

.bf-hero__scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--bf-text-muted);
	font-size: 0.68rem;
	font-weight: 600;
	transform: translateX(-50%);
}

.bf-hero__scroll-line {
	width: 45px;
	height: 1px;
	background: var(--bf-text-muted);
}

/* ==========================================================
   FINAL PRODUCTION POLISH
   ========================================================== */

/* Prevent accidental horizontal overflow from interactive visuals. */
html,
body {
	overflow-x: hidden;
}

/* Keep the WordPress admin bar from covering the sticky header
   while logged in during local development. */
body.admin-bar .bf-header {
	top: 32px;
}

/* Footer WordPress menu fallback / footer navigation. */
.bf-footer .bf-nav__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-footer .bf-nav__list li {
	margin: 0;
	padding: 0;
}

.bf-footer .bf-nav__list a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.bf-footer .bf-nav__list a:hover,
.bf-footer .bf-nav__list a:focus-visible {
	color: #ffffff;
}

.bf-footer .bf-nav__list a::after {
	display: none;
}

/* Make the mobile navigation sit cleanly above hero content. */
@media (max-width: 900px) {
	body.admin-bar .bf-header {
		top: 46px;
	}

	.bf-navigation {
		z-index: 20;
	}

	.bf-menu-toggle {
		position: relative;
		z-index: 30;
	}
}

/* Final mobile hero tuning. */
@media (max-width: 600px) {
	.bf-hero__visual {
		min-height: 360px;
		margin-top: 10px;
	}

	.bf-dashboard {
		padding: 14px;
		border-radius: 22px;
	}

	.bf-dashboard__main {
		grid-template-columns: 1fr;
	}

	.bf-dashboard__metrics {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.bf-metric {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 10px 6px;
	}

	.bf-metric__icon {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.bf-floating-card--top {
		top: 3%;
		right: 0;
	}

	.bf-floating-card--bottom {
		bottom: 4%;
		left: 0;
	}
}

/* Extra-small screens: protect the dashboard from cramped content. */
@media (max-width: 420px) {
	.bf-hero__container {
		padding-inline: 2px;
	}

	.bf-dashboard__chart,
	.bf-dashboard__metrics {
		padding: 14px;
	}

	.bf-chart {
		height: 150px;
	}

	.bf-dashboard__bottom {
		padding: 13px 14px;
	}

	.bf-progress {
		width: 95px;
	}
}
/* ==========================================================
   BREFECT — SERVICES OVERVIEW
   ========================================================== */

.bf-services-overview {
	position: relative;
	padding: clamp(90px, 10vw, 150px) 0;
	overflow: hidden;
	background: var(--bf-white);
}

.bf-services-overview::before {
	position: absolute;
	top: 20%;
	right: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(124, 77, 255, 0.045);
	filter: blur(80px);
	content: "";
	pointer-events: none;
}

.bf-services-overview__intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 70px;
}

.bf-services-overview__heading {
	max-width: 760px;
}

.bf-services-overview__title {
	margin: 0;
	color: var(--bf-navy);
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.065em;
}

.bf-services-overview__title span {
	display: block;
	background: var(--bf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.bf-services-overview__description {
	max-width: 480px;
	margin: 0;
	color: var(--bf-text-soft);
	font-size: 1rem;
	line-height: 1.75;
}

.bf-services-list {
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--bf-border);
}

.bf-service-row {
	position: relative;
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr) 60px;
	align-items: center;
	gap: 30px;
	min-height: 145px;
	padding: 28px 10px;
	border-bottom: 1px solid var(--bf-border);
	color: inherit;
	transition:
		padding 350ms var(--bf-ease),
		background 350ms ease,
		border-color 350ms ease;
}

.bf-service-row::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			90deg,
			rgba(56, 103, 255, 0.055),
			rgba(124, 77, 255, 0.035),
			transparent
		);
	content: "";
	opacity: 0;
	transform: scaleX(0.94);
	transform-origin: left;
	transition:
		opacity 350ms ease,
		transform 450ms var(--bf-ease);
}

.bf-service-row:hover {
	padding-right: 24px;
	padding-left: 24px;
	border-color: rgba(56, 103, 255, 0.18);
}

.bf-service-row:hover::before {
	opacity: 1;
	transform: scaleX(1);
}

.bf-service-row__number {
	align-self: start;
	padding-top: 6px;
	color: var(--bf-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.bf-service-row__content {
	max-width: 760px;
}

.bf-service-row__content h3 {
	margin: 0 0 9px;
	color: var(--bf-navy);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 750;
	line-height: 1.1;
	letter-spacing: -0.035em;
	transition: transform 350ms var(--bf-ease);
}

.bf-service-row__content p {
	max-width: 650px;
	margin: 0;
	color: var(--bf-text-muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.bf-service-row:hover .bf-service-row__content h3 {
	transform: translateX(6px);
}

.bf-service-row__arrow {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	justify-self: end;
	border: 1px solid var(--bf-border);
	border-radius: 50%;
	background: var(--bf-white);
	color: var(--bf-navy);
	font-size: 1.2rem;
	box-shadow: 0 8px 25px rgba(30, 40, 80, 0.06);
	transition:
		transform 350ms var(--bf-ease),
		background 350ms ease,
		color 350ms ease,
		border-color 350ms ease;
}

.bf-service-row:hover .bf-service-row__arrow {
	border-color: transparent;
	background: var(--bf-navy);
	color: var(--bf-white);
	transform: translate(4px, -4px) rotate(3deg);
}

.bf-services-overview__footer {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 30px;
}

.bf-services-overview__footer p {
	margin: 0;
	color: var(--bf-text-muted);
	font-size: 0.85rem;
}

.bf-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--bf-navy);
	font-size: 0.88rem;
	font-weight: 700;
}

.bf-text-link span {
	transition: transform 250ms ease;
}

.bf-text-link:hover span {
	transform: translateX(5px);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-services-overview {
		padding: 78px 0 90px;
	}

	.bf-services-overview__intro {
		display: block;
		margin-bottom: 45px;
	}

	.bf-services-overview__title {
		margin-top: 8px;
		font-size: clamp(2.65rem, 12vw, 4rem);
		line-height: 0.96;
	}

	.bf-services-overview__description {
		max-width: 360px;
		margin-top: 22px;
		font-size: 0.92rem;
		line-height: 1.7;
	}

	.bf-service-row {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		gap: 12px;
		min-height: 125px;
		padding: 22px 0;
	}

	.bf-service-row:hover {
		padding-right: 0;
		padding-left: 0;
	}

	.bf-service-row::before {
		display: none;
	}

	.bf-service-row__number {
		padding-top: 3px;
		font-size: 0.68rem;
	}

	.bf-service-row__content h3 {
		margin-bottom: 7px;
		font-size: 1.15rem;
	}

	.bf-service-row__content p {
		font-size: 0.78rem;
		line-height: 1.55;
	}

	.bf-service-row__arrow {
		width: 38px;
		height: 38px;
		font-size: 0.95rem;
	}

	.bf-service-row:hover .bf-service-row__content h3 {
		transform: none;
	}

	.bf-services-overview__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding-top: 24px;
	}

}
/* ==========================================================
   BREFECT — HOW IT WORKS
   ========================================================== */

.bf-process {
	position: relative;
	padding: 60px 0 45px;
	overflow: hidden;
	background: var(--bf-bg-soft);
}

.bf-process::before {
	position: absolute;
	top: -180px;
	left: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(56, 103, 255, 0.055);
	filter: blur(90px);
	content: "";
	pointer-events: none;
}

.bf-process__intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 45px;
}
.bf-process__title {
	margin: 0;
	color: var(--bf-navy);
	font-size: clamp(3rem, 5.5vw, 5.5rem);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.065em;
}

.bf-process__title span {
	display: block;
	background: var(--bf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.bf-process__description {
	max-width: 470px;
	margin: 0;
	color: var(--bf-text-soft);
	font-size: 1rem;
	line-height: 1.75;
}

.bf-process__timeline {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.bf-process__line {
	position: absolute;
	top: 25px;
	right: 12.5%;
	left: 12.5%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--bf-border),
		var(--bf-border),
		transparent
	);
}

.bf-process-step {
	position: relative;
	z-index: 2;
	padding: 0 8px;
}

.bf-process-step__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 38px;
}

.bf-process-step__number {
	color: var(--bf-blue);
	font-size: 0.75rem;
	font-weight: 800;
}

.bf-process-step__dot {
	width: 15px;
	height: 15px;
	border: 4px solid var(--bf-bg-soft);
	border-radius: 50%;
	background: var(--bf-blue);
	box-shadow: 0 0 0 1px rgba(56, 103, 255, 0.18);
}

.bf-process-step__content {
	max-width: 270px;
}

.bf-process-step__content h3 {
	margin: 0 0 10px;
	color: var(--bf-navy);
	font-size: 1.3rem;
	font-weight: 750;
	letter-spacing: -0.03em;
}

.bf-process-step__content p {
	margin: 0;
	color: var(--bf-text-muted);
	font-size: 0.85rem;
	line-height: 1.7;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-process {
		padding: 78px 0 90px;
	}

	.bf-process__intro {
		display: block;
		margin-bottom: 55px;
	}

	.bf-process__title {
		margin-top: 8px;
		font-size: clamp(2.65rem, 12vw, 4rem);
	}

	.bf-process__description {
		max-width: 360px;
		margin-top: 22px;
		font-size: 0.92rem;
	}

	.bf-process__timeline {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.bf-process__line {
		top: 0;
		right: auto;
		bottom: 0;
		left: 20px;
		width: 1px;
		height: auto;
		background: linear-gradient(
			180deg,
			transparent,
			var(--bf-border) 10%,
			var(--bf-border) 90%,
			transparent
		);
	}

	.bf-process-step {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 18px;
		padding: 0 0 48px;
	}

	.bf-process-step:last-child {
		padding-bottom: 0;
	}

	.bf-process-step__top {
		display: contents;
	}

	.bf-process-step__number {
		grid-column: 1;
		grid-row: 1;
		padding-top: 1px;
		font-size: 0.65rem;
	}

	.bf-process-step__dot {
		position: absolute;
		top: 3px;
		left: 14px;
		width: 13px;
		height: 13px;
		border-width: 3px;
	}

	.bf-process-step__content {
		grid-column: 2;
		max-width: none;
	}

	.bf-process-step__content h3 {
		font-size: 1.2rem;
	}

	.bf-process-step__content p {
		font-size: 0.8rem;
		line-height: 1.65;
	}

}
/* ==========================================================
   BREFECT — HOW IT WORKS
   PREMIUM MOTION OVERRIDES
   ========================================================== */

.bf-process {
	position: relative;
	padding-top: clamp(65px, 7vw, 95px);
	padding-bottom: 45px;
    	overflow: hidden;
	background:
		radial-gradient(
			circle at 15% 20%,
			rgba(76, 105, 255, 0.08),
			transparent 32%
		),
		radial-gradient(
			circle at 85% 80%,
			rgba(126, 92, 255, 0.07),
			transparent 30%
		),
		var(--bf-bg-soft);
}

/* Soft decorative glow */

.bf-process::after {
	position: absolute;
	right: -180px;
	bottom: -220px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: rgba(92, 91, 255, 0.055);
	filter: blur(100px);
	content: "";
	pointer-events: none;
}

/* Intro */

.bf-process__intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
	align-items: end;
	gap: clamp(40px, 8vw, 120px);
	margin-bottom: clamp(55px, 7vw, 85px);
}

/* Heading */

.bf-process__title {
	margin: 0;
	font-size: clamp(3.2rem, 6vw, 6rem);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.065em;
}

.bf-process__title span {
	display: block;
	background: var(--bf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.bf-process__description {
	max-width: 430px;
	margin: 0;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--bf-text-soft);
}


/* ==========================================================
   PROCESS TIMELINE
   ========================================================== */

.bf-process__timeline {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

/* Animated connecting line */

.bf-process__line {
	position: absolute;
	top: 26px;
	right: 12.5%;
	left: 12.5%;
	height: 2px;

	transform: scaleX(0);
	transform-origin: left center;

	background: linear-gradient(
		90deg,
		rgba(67, 98, 255, 0.2),
		rgba(88, 82, 255, 0.9),
		rgba(129, 92, 255, 0.35)
	);

	transition:
		transform 1.4s cubic-bezier(.22, 1, .36, 1);

	transition-delay: 350ms;
}

/* Draw line after section enters */

.bf-process.is-visible .bf-process__line {
	transform: scaleX(1);
}


/* ==========================================================
   PROCESS STEP
   ========================================================== */

.bf-process-step {
	position: relative;
	z-index: 3;

	min-width: 0;
	padding: 0 8px;

	opacity: 0;
	transform: translate3d(0, 35px, 0);

	transition:
		opacity 750ms cubic-bezier(.22, 1, .36, 1),
		transform 750ms cubic-bezier(.22, 1, .36, 1);
}

/* Stagger */

.bf-process-step:nth-of-type(2) {
	transition-delay: 120ms;
}

.bf-process-step:nth-of-type(3) {
	transition-delay: 240ms;
}

.bf-process-step:nth-of-type(4) {
	transition-delay: 360ms;
}

.bf-process-step:nth-of-type(5) {
	transition-delay: 480ms;
}


/* When JS reveals the step */

.bf-process-step.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* Top row */

.bf-process-step__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	margin-bottom: 32px;
}


/* Number */

.bf-process-step__number {
	position: relative;
	z-index: 4;

	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.05em;

	color: var(--bf-blue);

	transition:
		transform 350ms ease,
		color 350ms ease;
}


/* Dot */

.bf-process-step__dot {
	position: relative;
	z-index: 5;

	display: block;

	width: 15px;
	height: 15px;

	border: 4px solid var(--bf-bg-soft);
	border-radius: 50%;

	background: var(--bf-blue);

	box-shadow:
		0 0 0 1px rgba(68, 99, 255, 0.2),
		0 0 0 0 rgba(68, 99, 255, 0.25);

	transition:
		transform 350ms ease,
		box-shadow 350ms ease;
}


/* Dot pulse */

.bf-process-step.is-visible .bf-process-step__dot {
	animation: bfProcessPulse 2.8s ease-in-out infinite;
}

@keyframes bfProcessPulse {

	0%,
	100% {
		box-shadow:
			0 0 0 1px rgba(68, 99, 255, 0.2),
			0 0 0 0 rgba(68, 99, 255, 0);
	}

	50% {
		box-shadow:
			0 0 0 1px rgba(68, 99, 255, 0.2),
			0 0 0 8px rgba(68, 99, 255, 0.07);
	}

}


/* Content */

.bf-process-step__content {
	max-width: 285px;
}

.bf-process-step__content h3 {
	margin: 0 0 11px;

	font-size: 1.3rem;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.035em;

	color: var(--bf-navy);

	transition:
		transform 350ms ease,
		color 350ms ease;
}

.bf-process-step__content p {
	margin: 0;

	font-size: 0.87rem;
	line-height: 1.75;

	color: var(--bf-text-muted);

	transition: color 350ms ease;
}


/* ==========================================================
   HOVER — DESKTOP
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

	.bf-process-step:hover
	.bf-process-step__dot {
		transform: scale(1.22);
		box-shadow:
			0 0 0 1px rgba(68, 99, 255, 0.25),
			0 0 0 9px rgba(68, 99, 255, 0.08);
	}

	.bf-process-step:hover
	.bf-process-step__number {
		transform: translateY(-2px);
	}

	.bf-process-step:hover
	.bf-process-step__content h3 {
		transform: translateX(4px);
		color: var(--bf-blue);
	}

}


/* ==========================================================
   SECTION 02 → SECTION 03 GAP
   ========================================================== */

/*
 * The services section previously left too much empty space
 * before How It Works.
 */

.bf-services-overview {
	padding-bottom: clamp(45px, 5vw, 70px);
}

.bf-services-overview__footer {
	margin-bottom: 0;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-process {
		padding-top: 65px;
		padding-bottom: 80px;
	}

	.bf-process__intro {
		display: block;
		margin-bottom: 52px;
	}

	.bf-process__title {
		margin-top: 8px;
		font-size: clamp(2.8rem, 13vw, 4rem);
		line-height: 0.94;
	}

	.bf-process__description {
		max-width: 350px;
		margin-top: 22px;
		font-size: 0.9rem;
		line-height: 1.7;
	}


	/* Vertical timeline */

	.bf-process__timeline {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding-left: 0;
	}

	.bf-process__line {
		top: 18px;
		right: auto;
		bottom: 35px;
		left: 19px;

		width: 2px;
		height: auto;

		transform: scaleY(0);
		transform-origin: top center;

		background: linear-gradient(
			180deg,
			rgba(67, 98, 255, 0.85),
			rgba(129, 92, 255, 0.2)
		);

		transition:
			transform 1.3s cubic-bezier(.22, 1, .36, 1);

		transition-delay: 300ms;
	}

	.bf-process.is-visible .bf-process__line {
		transform: scaleY(1);
	}


	.bf-process-step {
		display: grid;
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 18px;

		padding: 0 0 48px;

		opacity: 0;
		transform: translate3d(0, 28px, 0);
	}

	.bf-process-step:last-child {
		padding-bottom: 0;
	}


	.bf-process-step__top {
		display: block;
		grid-column: 1;
		grid-row: 1;

		height: auto;
		margin: 0;
	}


	.bf-process-step__number {
		display: block;
		padding-top: 0;

		font-size: 0.68rem;
	}


	.bf-process-step__dot {
		position: absolute;

		top: 1px;
		left: 13px;

		width: 13px;
		height: 13px;

		border-width: 3px;
	}


	.bf-process-step__content {
		grid-column: 2;
		max-width: none;
	}


	.bf-process-step__content h3 {
		margin-bottom: 8px;
		font-size: 1.18rem;
	}


	.bf-process-step__content p {
		font-size: 0.82rem;
		line-height: 1.7;
	}


	.bf-services-overview {
		padding-bottom: 45px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-process__line {
		transform: none !important;
		transition: none !important;
	}

	.bf-process-step {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.bf-process-step__dot {
		animation: none !important;
	}

}
/* ==========================================================
   SECTION 04 — SELECTED WORK
   ========================================================== */

.bf-work {
	position: relative;
	padding: 55px 0 70px;
    	overflow: hidden;
	background: #f7f8ff;
}

.bf-work::before {
	position: absolute;
	top: -180px;
	right: -140px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(75, 105, 255, 0.08);
	filter: blur(100px);
	content: "";
	pointer-events: none;
}

.bf-work__intro {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
	align-items: end;
	gap: 70px;

	margin-bottom: 60px;
}

.bf-work__title {
	margin: 0;

	color: var(--bf-navy);

	font-size: clamp(3rem, 5.5vw, 5.6rem);
	font-weight: 800;
	line-height: .94;
	letter-spacing: -.065em;
}

.bf-work__title span {
	display: block;

	background: var(--bf-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.bf-work__description {
	max-width: 480px;
	margin: 0;

	color: var(--bf-text-soft);
	font-size: 1rem;
	line-height: 1.8;
}


/* ==========================================================
   GRID
   ========================================================== */

.bf-work__grid {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}


/* ==========================================================
   CARD
   ========================================================== */

.bf-work-card {
	position: relative;

	overflow: hidden;

	border: 1px solid rgba(18, 28, 65, .08);
	border-radius: 28px;

	background: rgba(255,255,255,.88);

	box-shadow:
		0 25px 70px rgba(20,30,75,.07);

	opacity: 0;
	transform: translate3d(0, 45px, 0);

	transition:
		opacity 800ms cubic-bezier(.22,1,.36,1),
		transform 800ms cubic-bezier(.22,1,.36,1),
		box-shadow 400ms ease,
		border-color 400ms ease;
}

.bf-work-card.is-visible {
	opacity: 1;
	transform: translate3d(0,0,0);
}

.bf-work-card:nth-child(2) {
	transition-delay: 120ms;
}

.bf-work-card:nth-child(3) {
	transition-delay: 240ms;
}

.bf-work-card--featured {
	grid-column: 1 / -1;
}


/* ==========================================================
   BROWSER FRAME
   ========================================================== */

.bf-work-card__browser {
	margin: 16px;

	overflow: hidden;

	border: 1px solid rgba(15,25,60,.08);
	border-radius: 20px;

	background: #fff;

	box-shadow:
		0 15px 45px rgba(20,30,75,.08);
}

.bf-work-card__browser-bar {
	display: flex;
	align-items: center;
	gap: 18px;

	height: 42px;
	padding: 0 15px;

	border-bottom: 1px solid rgba(15,25,60,.07);

	background: #f8f9fd;
}

.bf-work-card__dots {
	display: flex;
	gap: 5px;
}

.bf-work-card__dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(15,25,60,.18);
}

.bf-work-card__url {
	flex: 1;

	padding: 6px 12px;

	border: 1px solid rgba(15,25,60,.06);
	border-radius: 8px;

	color: #8991a8;

	font-size: .62rem;
}

.bf-work-card__image {
	position: relative;

	aspect-ratio: 16 / 8;

	overflow: hidden;

	background:
		linear-gradient(
			135deg,
			#eef1ff,
			#ffffff
		);
}

.bf-work-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform 700ms cubic-bezier(.22,1,.36,1);
}


/* ==========================================================
   INFO
   ========================================================== */

.bf-work-card__info {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;

	padding: 5px 28px 30px;
}

.bf-work-card__category {
	display: block;

	margin-bottom: 8px;

	color: var(--bf-blue);

	font-size: .65rem;
	font-weight: 800;

	letter-spacing: .08em;
	text-transform: uppercase;
}

.bf-work-card__info h3 {
	margin: 0 0 8px;

	color: var(--bf-navy);

	font-size: 1.45rem;
	font-weight: 750;

	letter-spacing: -.035em;
}

.bf-work-card__info p {
	max-width: 600px;
	margin: 0;

	color: var(--bf-text-muted);

	font-size: .84rem;
	line-height: 1.7;
}

.bf-work-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	flex-shrink: 0;

	color: var(--bf-navy);

	font-size: .82rem;
	font-weight: 700;

	text-decoration: none;

	transition:
		color 250ms ease,
		transform 250ms ease;
}


/* ==========================================================
   HOVER
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

	.bf-work-card:hover {
		border-color: rgba(65,95,255,.18);

		box-shadow:
			0 35px 90px rgba(20,30,75,.12);

		transform: translate3d(0,-7px);
	}

	.bf-work-card:hover
	.bf-work-card__image img {
		transform: scale(1.035);
	}

	.bf-work-card:hover
	.bf-work-card__link {
		color: var(--bf-blue);
		transform: translateX(4px);
	}

}


/* ==========================================================
   FOOTER BUTTON
   ========================================================== */

.bf-work__footer {
	position: relative;
	z-index: 2;

	display: flex;
	justify-content: center;

	margin-top: 45px;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-work {
		padding: 75px 0 85px;
	}

	.bf-work__intro {
		display: block;

		margin-bottom: 40px;
	}

	.bf-work__title {
		margin-top: 8px;

		font-size: clamp(2.7rem, 12vw, 4rem);
	}

	.bf-work__description {
		margin-top: 22px;

		font-size: .9rem;
		line-height: 1.7;
	}

	.bf-work__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.bf-work-card--featured {
		grid-column: auto;
	}

	.bf-work-card {
		border-radius: 22px;
	}

	.bf-work-card__browser {
		margin: 10px;
		border-radius: 16px;
	}

	.bf-work-card__browser-bar {
		height: 36px;
		padding: 0 11px;
	}

	.bf-work-card__image {
		aspect-ratio: 16 / 10;
	}

	.bf-work-card__info {
		display: block;

		padding: 5px 20px 22px;
	}

	.bf-work-card__info h3 {
		font-size: 1.2rem;
	}

	.bf-work-card__link {
		margin-top: 18px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-work-card {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.bf-work-card__image img {
		transition: none;
	}

}
/* ==========================================================
   SELECTED WORK — SPACING FIX
   ========================================================== */

.bf-work {
	padding-top: 55px;
	padding-bottom: 65px;
}

.bf-work__intro {
	margin-bottom: 35px;
}

.bf-work__title {
	line-height: 0.95;
}

.bf-work__grid {
	gap: 16px;
}

.bf-work-card__browser {
	margin: 10px;
}

.bf-work-card__info {
	padding-top: 0;
	padding-bottom: 20px;
}

/* Keep project previews compact */
.bf-work-card__image {
	aspect-ratio: 16 / 7;
}

.bf-work__footer {
	margin-top: 28px;
}


/* Mobile */
@media (max-width: 767px) {

	.bf-work {
		padding-top: 55px;
		padding-bottom: 60px;
	}

	.bf-work__intro {
		margin-bottom: 28px;
	}

	.bf-work__grid {
		gap: 14px;
	}

	.bf-work-card__image {
		aspect-ratio: 16 / 9;
	}

}/* ==========================================================
   BREFECT — SECTION GAP CONTROL
   ========================================================== */

/* Previous sections ko unnecessarily tall hone se rokna */
.bf-services-overview {
	padding-bottom: 70px !important;
}

.bf-process {
	padding-top: 75px !important;
	padding-bottom: 75px !important;
}


/* Selected Work ko previous section ke close lao */
.bf-work {
	margin-top: 0 !important;
	padding-top: 70px !important;
	padding-bottom: 70px !important;
}


/* Intro ke andar extra space remove */
.bf-work__intro {
	margin-top: 0 !important;
	margin-bottom: 35px !important;
}


/* Mobile */
@media (max-width: 767px) {

	.bf-services-overview {
		padding-bottom: 50px !important;
	}

	.bf-process {
		padding-top: 55px !important;
		padding-bottom: 55px !important;
	}

	.bf-work {
		margin-top: 0 !important;
		padding-top: 55px !important;
		padding-bottom: 60px !important;
	}

	.bf-work__intro {
		margin-bottom: 28px !important;
	}
}
/* ==========================================================
   BREFECT — PORTFOLIO ARCHIVE
   ========================================================== */

.bf-portfolio-archive {
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

.bf-portfolio-hero {
	padding: clamp(80px, 10vw, 150px) 0 70px;
}

.bf-portfolio-hero__title {
	max-width: 1100px;
	margin: 18px 0 34px;
	font-size: clamp(3.8rem, 7vw, 7rem);
	line-height: .94;
	letter-spacing: -0.055em;
	color: var(--bf-navy);
}

.bf-portfolio-hero__title span {
	display: block;
}

.bf-portfolio-hero__description {
	max-width: 760px;
	margin: 0;
	color: var(--bf-text-muted);
	font-size: 1.05rem;
	line-height: 1.75;
}
/* ==========================================================
   PORTFOLIO SERVICE FILTERS
   ========================================================== */

.bf-portfolio-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 38px;
}

.bf-portfolio-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;
	padding: 0 22px;

	border: 1px solid rgba(20, 30, 70, 0.12);
	border-radius: 999px;

	background: #ffffff;
	color: #111936;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;

	box-shadow: 0 6px 20px rgba(20, 30, 70, 0.04);

	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-portfolio-filter:hover {
	transform: translateY(-2px);
	border-color: rgba(70, 80, 255, 0.3);
	color: #4255ff;
	box-shadow: 0 12px 28px rgba(40, 50, 100, 0.10);
}

.bf-portfolio-filter.is-active {
	border-color: transparent;
	background: linear-gradient(135deg, #315cff 0%, #694cff 100%);
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(70, 80, 255, 0.22);
}

.bf-portfolio-filter.is-active:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

@media (max-width: 767px) {

	.bf-portfolio-filters {
		gap: 7px;
		margin-bottom: 28px;
	}

	.bf-portfolio-filter {
		min-height: 36px;
		padding: 0 13px;
		font-size: 12px;
		font-weight: 700;
	}

}

/* ==========================================================
   PORTFOLIO GRID
   ========================================================== */

.bf-portfolio-grid-section {
	padding: 30px 0 120px;
}

.bf-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 34px;
}


/* ==========================================================
   PORTFOLIO CARD
   ========================================================== */

.bf-portfolio-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(18, 28, 65, .08);
	border-radius: 30px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 25px 70px rgba(20, 30, 75, .07);
	transition:
		transform 400ms cubic-bezier(.22, 1, .36, 1),
		box-shadow 400ms ease,
		border-color 400ms ease;
}

.bf-portfolio-card:hover {
	transform: translateY(-8px);
	border-color: rgba(56, 103, 255, .18);
	box-shadow: 0 35px 90px rgba(20, 30, 75, .12);
}


/* ==========================================================
   BROWSER FRAME
   ========================================================== */

.bf-portfolio-card__browser {
	margin: 16px;
	overflow: hidden;
	border: 1px solid rgba(15, 25, 60, .08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 15px 45px rgba(20, 30, 75, .08);
}

.bf-portfolio-card__browser-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 42px;
	padding: 0 15px;
	border-bottom: 1px solid rgba(15, 25, 60, .07);
	background: #f8f9fd;
}

.bf-portfolio-card__dots {
	display: flex;
	flex: 0 0 auto;
	gap: 5px;
}

.bf-portfolio-card__dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(15, 25, 60, .18);
}

.bf-portfolio-card__url {
	flex: 1;
	overflow: hidden;
	padding: 6px 12px;
	border: 1px solid rgba(15, 25, 60, .06);
	border-radius: 8px;
	color: #8991a8;
	font-size: .65rem;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bf-portfolio-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #eef1ff, #ffffff);
}

.bf-portfolio-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.bf-portfolio-card:hover .bf-portfolio-card__image img {
	transform: scale(1.035);
}

.bf-portfolio-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--bf-gradient-soft);
	color: var(--bf-navy);
	font-size: 1.5rem;
	font-weight: 700;
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.bf-portfolio-card__content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding: 8px 28px 30px;
}

.bf-portfolio-card__details {
	min-width: 0;
}

.bf-portfolio-card__category {
	display: block;
	margin-bottom: 9px;
	color: var(--bf-blue);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.bf-portfolio-card__title {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.05;
	letter-spacing: -.035em;
}

.bf-portfolio-card__title a {
	color: var(--bf-navy);
}

.bf-portfolio-card__title a:hover {
	color: var(--bf-blue);
}

.bf-portfolio-card__description {
	max-width: 620px;
	margin: 0;
	color: var(--bf-text-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.bf-portfolio-card__actions {
	flex: 0 0 auto;
}

.bf-portfolio-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--bf-navy);
	font-size: .88rem;
	font-weight: 700;
	white-space: nowrap;
	transition:
		color 250ms ease,
		transform 250ms ease;
}

.bf-portfolio-card__link:hover {
	color: var(--bf-blue);
	transform: translateX(3px);
}


/* ==========================================================
   PAGINATION
   ========================================================== */

.bf-portfolio-archive .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 60px;
}

.bf-portfolio-archive .nav-links a,
.bf-portfolio-archive .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--bf-border);
	border-radius: 999px;
	background: #fff;
	color: var(--bf-navy);
	font-size: .85rem;
	font-weight: 700;
}

.bf-portfolio-archive .nav-links .current {
	background: var(--bf-gradient);
	border-color: transparent;
	color: #fff;
}


/* ==========================================================
   EMPTY PORTFOLIO
   ========================================================== */

.bf-portfolio-empty {
	max-width: 760px;
	padding: 80px 0;
}

.bf-portfolio-empty h2 {
	margin: 15px 0;
	color: var(--bf-navy);
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -.04em;
}

.bf-portfolio-empty p {
	margin: 0;
	color: var(--bf-text-muted);
}


/* ==========================================================
   SINGLE PORTFOLIO
   ========================================================== */

.bf-single-portfolio {
	overflow: hidden;
	background: #fff;
}

.bf-single-portfolio__hero {
	padding: clamp(70px, 9vw, 130px) 0 60px;
}

.bf-single-portfolio__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 50px;
	color: var(--bf-text-muted);
	font-size: .9rem;
	font-weight: 700;
	transition:
		color 250ms ease,
		transform 250ms ease;
}

.bf-single-portfolio__back:hover {
	color: var(--bf-blue);
	transform: translateX(-3px);
}

.bf-single-portfolio__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
	align-items: end;
	gap: 60px;
}

.bf-single-portfolio__title {
	margin: 15px 0 0;
	color: var(--bf-navy);
	font-size: clamp(4rem, 8vw, 8rem);
	line-height: .9;
	letter-spacing: -.065em;
}

.bf-single-portfolio__description {
	max-width: 520px;
	margin: 0 0 10px;
	color: var(--bf-text-muted);
	font-size: 1rem;
	line-height: 1.75;
}


/* ==========================================================
   SINGLE PORTFOLIO PREVIEW
   ========================================================== */

.bf-single-portfolio__preview {
	padding: 20px 0 100px;
}

.bf-single-portfolio__browser {
	overflow: hidden;
	border: 1px solid rgba(15, 25, 60, .08);
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(20, 30, 75, .10);
}

.bf-single-portfolio__browser-bar {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 50px;
	padding: 0 18px;
	border-bottom: 1px solid rgba(15, 25, 60, .07);
	background: #f8f9fd;
}

.bf-single-portfolio__dots {
	display: flex;
	gap: 6px;
}

.bf-single-portfolio__dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(15, 25, 60, .18);
}

.bf-single-portfolio__url {
	flex: 1;
	padding: 8px 14px;
	border: 1px solid rgba(15, 25, 60, .06);
	border-radius: 9px;
	color: #8991a8;
	font-size: .72rem;
}

.bf-single-portfolio__image {
	overflow: hidden;
	background: #f8f9fd;
}

.bf-single-portfolio__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 780px;
	object-fit: cover;
	object-position: top center;
}

.bf-single-portfolio__placeholder {
	display: grid;
	place-items: center;
	min-height: 500px;
	background: var(--bf-gradient-soft);
	color: var(--bf-navy);
	font-size: 2rem;
	font-weight: 800;
}


/* ==========================================================
   SINGLE PORTFOLIO DETAILS
   ========================================================== */

.bf-single-portfolio__details {
	padding: 80px 0 110px;
}

.bf-single-portfolio__content {
	display: grid;
	grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
	gap: 80px;
	padding-bottom: 55px;
	border-bottom: 1px solid var(--bf-border);
}

.bf-single-portfolio__content h2 {
	margin: 14px 0 0;
	color: var(--bf-navy);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: .95;
	letter-spacing: -.05em;
}

.bf-single-portfolio__body {
	color: var(--bf-text-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.bf-single-portfolio__body p:first-child {
	margin-top: 0;
}

.bf-single-portfolio__body p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   SINGLE PORTFOLIO ACTIONS
   ========================================================== */

.bf-single-portfolio__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 35px;
}

.bf-single-portfolio__footer {
	padding: 0 0 100px;
}

.bf-single-portfolio__footer a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bf-text-muted);
	font-size: .9rem;
	font-weight: 700;
}

.bf-single-portfolio__footer a:hover {
	color: var(--bf-blue);
}


/* ==========================================================
   PORTFOLIO RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

	.bf-portfolio-grid {
		grid-template-columns: 1fr;
	}

	.bf-single-portfolio__heading {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.bf-single-portfolio__content {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(3.5rem, 12vw, 6rem);
	}

}


@media (max-width: 600px) {

	.bf-portfolio-hero {
		padding: 65px 0 45px;
	}

	.bf-portfolio-hero__title {
		font-size: clamp(3rem, 14vw, 4.5rem);
	}

	.bf-portfolio-hero__description {
		font-size: .95rem;
	}

	.bf-portfolio-grid-section {
		padding-bottom: 75px;
	}

	.bf-portfolio-card__browser {
		margin: 10px;
		border-radius: 17px;
	}

	.bf-portfolio-card__content {
		display: block;
		padding: 5px 20px 24px;
	}

	.bf-portfolio-card__actions {
		margin-top: 20px;
	}

	.bf-single-portfolio__hero {
		padding: 55px 0 40px;
	}

	.bf-single-portfolio__back {
		margin-bottom: 35px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(3rem, 15vw, 4.5rem);
	}

	.bf-single-portfolio__preview {
		padding-bottom: 65px;
	}

	.bf-single-portfolio__browser {
		border-radius: 20px;
	}

	.bf-single-portfolio__browser-bar {
		height: 42px;
		padding: 0 12px;
	}

	.bf-single-portfolio__image img {
		max-height: none;
	}

	.bf-single-portfolio__details {
		padding: 60px 0 75px;
	}

	.bf-single-portfolio__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.bf-single-portfolio__actions .bf-button {
		width: 100%;
	}

	.bf-single-portfolio__footer {
		padding-bottom: 70px;
	}

}
/* ==========================================================
   BREFECT PORTFOLIO SYSTEM
   Archive + Single Project
   ========================================================== */


/* ==========================================================
   1. PORTFOLIO ARCHIVE
   ========================================================== */

.bf-portfolio-archive {
	width: 100%;
	overflow: hidden;
}


/* ----------------------------------------------------------
   PORTFOLIO HERO
   ---------------------------------------------------------- */

.bf-portfolio-hero {
	padding-top: 55px;
	padding-bottom: 45px;
}

.bf-portfolio-hero .bf-container {
	padding-top: 0;
	padding-bottom: 0;
}


/* Small label */

.bf-portfolio-hero .bf-eyebrow {
	display: block;
	margin: 0 0 22px;
	color: #2563ff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


/* Main heading */

.bf-portfolio-hero__title {
	max-width: 1050px;
	margin: 0 0 22px;
	color: #000000;
	font-size: clamp(48px, 6vw, 88px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.bf-portfolio-hero__title span {
	color: #000000;
}


/* Description */

.bf-portfolio-hero__description {
	max-width: 780px;
	margin: 0;
	color: #000000;
	font-size: 18px;
	line-height: 1.65;
}


/* ==========================================================
   2. PORTFOLIO GRID
   ========================================================== */

.bf-portfolio-grid-section {
	padding-top: 20px;
	padding-bottom: 80px;
}

.bf-portfolio-grid-section .bf-container {
	padding-top: 0;
}


/* Grid */

.bf-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}


/* ==========================================================
   3. PORTFOLIO CARD
   ========================================================== */

.bf-portfolio-card {
	width: 100%;
	margin: 0;
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 24px;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-portfolio-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}


/* ----------------------------------------------------------
   Browser preview
   ---------------------------------------------------------- */

.bf-portfolio-card__browser {
	width: 100%;
	background: #ffffff;
}


/* Browser top bar */

.bf-portfolio-card__browser-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 46px;
	padding: 0 16px;
	background: #f7f7f7;
	border-bottom: 1px solid #ededed;
}


/* Browser dots */

.bf-portfolio-card__dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.bf-portfolio-card__dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c7c7c7;
}


/* URL */

.bf-portfolio-card__url {
	min-width: 0;
	overflow: hidden;
	color: #777777;
	font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* ----------------------------------------------------------
   Project image
   ---------------------------------------------------------- */

.bf-portfolio-card__image {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #f7f7f7;
	text-decoration: none;
}

.bf-portfolio-card__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bf-portfolio-card:hover .bf-portfolio-card__image img {
	transform: scale(1.02);
}


/* Placeholder */

.bf-portfolio-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	background: #f5f5f5;
	color: #000000;
	font-size: 24px;
	font-weight: 700;
}


/* ==========================================================
   4. PORTFOLIO CARD CONTENT
   ========================================================== */

.bf-portfolio-card__content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	padding: 24px 26px 26px;
}


/* Details */

.bf-portfolio-card__details {
	min-width: 0;
}


/* Category */

.bf-portfolio-card__category {
	display: block;
	margin: 0 0 8px;
	color: #2563ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}


/* Title */

.bf-portfolio-card__title {
	margin: 0;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.bf-portfolio-card__title a {
	color: #000000;
	text-decoration: none;
}


/* Description */

.bf-portfolio-card__description {
	max-width: 560px;
	margin: 10px 0 0;
	color: #000000;
	font-size: 15px;
	line-height: 1.55;
}


/* Actions */

.bf-portfolio-card__actions {
	flex-shrink: 0;
}

.bf-portfolio-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000000;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.bf-portfolio-card__link span {
	transition: transform 0.2s ease;
}

.bf-portfolio-card__link:hover span {
	transform: translate(3px, -3px);
}


/* ==========================================================
   5. SINGLE PORTFOLIO PROJECT
   ========================================================== */

.bf-single-portfolio {
	width: 100%;
	overflow: hidden;
}


/* ----------------------------------------------------------
   Single Hero
   ---------------------------------------------------------- */

.bf-single-portfolio__hero {
	padding-top: 55px;
	padding-bottom: 40px;
}

.bf-single-portfolio__hero .bf-container {
	padding-top: 0;
	padding-bottom: 0;
}


/* Back link */

.bf-single-portfolio__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 30px;
	color: #000000;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.bf-single-portfolio__back:hover {
	color: #2563ff;
}


/* Heading */

.bf-single-portfolio__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	align-items: end;
	gap: 50px;
}


/* Category */

.bf-single-portfolio__heading .bf-eyebrow {
	display: block;
	margin: 0 0 18px;
	color: #2563ff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


/* Project title */

.bf-single-portfolio__title {
	margin: 0;
	color: #000000;
	font-size: clamp(52px, 7vw, 100px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.06em;
}


/* Description */

.bf-single-portfolio__description {
	max-width: 520px;
	margin: 0 0 5px;
	color: #000000;
	font-size: 17px;
	line-height: 1.6;
}


/* ==========================================================
   6. SINGLE PROJECT PREVIEW
   ========================================================== */

.bf-single-portfolio__preview {
	padding-top: 20px;
	padding-bottom: 65px;
}

.bf-single-portfolio__preview .bf-container {
	padding-top: 0;
}


/* Browser */

.bf-single-portfolio__browser {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 24px;
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}


/* Browser bar */

.bf-single-portfolio__browser-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 48px;
	padding: 0 18px;
	background: #f7f7f7;
	border-bottom: 1px solid #e9e9e9;
}


/* Dots */

.bf-single-portfolio__dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.bf-single-portfolio__dots span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #c7c7c7;
}


/* URL */

.bf-single-portfolio__url {
	flex: 1;
	min-width: 0;
	padding: 7px 14px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 8px;
	color: #777777;
	font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* Preview image */

.bf-single-portfolio__image {
	width: 100%;
	background: #ffffff;
}

.bf-single-portfolio__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 780px;
	object-fit: cover;
	object-position: top center;
}


/* Placeholder */

.bf-single-portfolio__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	background: #f5f5f5;
	color: #000000;
	font-size: 32px;
	font-weight: 700;
}


/* ==========================================================
   7. SINGLE PROJECT DETAILS
   ========================================================== */

.bf-single-portfolio__details {
	padding-top: 45px;
	padding-bottom: 70px;
}

.bf-single-portfolio__details .bf-container {
	padding-top: 0;
}


/* Content */

.bf-single-portfolio__content {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 70px;
}


/* About label */

.bf-single-portfolio__content .bf-eyebrow {
	display: block;
	margin-bottom: 16px;
	color: #2563ff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}


/* About title */

.bf-single-portfolio__content h2 {
	margin: 0;
	color: #000000;
	font-size: clamp(38px, 4vw, 60px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
}


/* Body */

.bf-single-portfolio__body {
	color: #000000;
	font-size: 17px;
	line-height: 1.75;
}

.bf-single-portfolio__body p {
	margin-top: 0;
	margin-bottom: 20px;
}

.bf-single-portfolio__body p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   8. SINGLE PROJECT BUTTONS
   ========================================================== */

.bf-single-portfolio__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
}


/* Generic buttons */

.bf-single-portfolio .bf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}


/* Primary */

.bf-single-portfolio .bf-button--primary {
	background: #4f46ff;
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(79, 70, 255, 0.2);
}

.bf-single-portfolio .bf-button--primary:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 16px 35px rgba(79, 70, 255, 0.25);
}


/* Secondary */

.bf-single-portfolio .bf-button--secondary {
	background: #ffffff;
	color: #000000;
	border: 1px solid #dddddd;
}

.bf-single-portfolio .bf-button--secondary:hover {
	color: #000000;
	transform: translateY(-2px);
	border-color: #000000;
}


/* ==========================================================
   9. SINGLE PORTFOLIO FOOTER LINK
   ========================================================== */

.bf-single-portfolio__footer {
	padding-top: 25px;
	padding-bottom: 70px;
	border-top: 1px solid #eeeeee;
}

.bf-single-portfolio__footer .bf-container {
	padding-top: 0;
	padding-bottom: 0;
}

.bf-single-portfolio__footer a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000000;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.bf-single-portfolio__footer a:hover {
	color: #2563ff;
}


/* ==========================================================
   10. RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

	.bf-portfolio-hero {
		padding-top: 40px;
		padding-bottom: 35px;
	}

	.bf-portfolio-hero__title {
		font-size: clamp(44px, 9vw, 70px);
	}

	.bf-portfolio-grid {
		grid-template-columns: 1fr;
	}

	.bf-single-portfolio__hero {
		padding-top: 40px;
		padding-bottom: 30px;
	}

	.bf-single-portfolio__heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(48px, 10vw, 80px);
	}

	.bf-single-portfolio__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bf-single-portfolio__preview {
		padding-bottom: 45px;
	}

	.bf-single-portfolio__details {
		padding-top: 30px;
	}

}


@media (max-width: 600px) {

	.bf-portfolio-hero {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.bf-portfolio-hero .bf-eyebrow {
		margin-bottom: 16px;
		font-size: 12px;
	}

	.bf-portfolio-hero__title {
		font-size: clamp(40px, 12vw, 58px);
		line-height: 1;
		letter-spacing: -0.05em;
	}

	.bf-portfolio-hero__description {
		font-size: 16px;
		line-height: 1.55;
	}

	.bf-portfolio-grid-section {
		padding-top: 10px;
		padding-bottom: 50px;
	}

	.bf-portfolio-card {
		border-radius: 18px;
	}

	.bf-portfolio-card__content {
		display: block;
		padding: 20px;
	}

	.bf-portfolio-card__title {
		font-size: 26px;
	}

	.bf-portfolio-card__actions {
		margin-top: 18px;
	}

	.bf-single-portfolio__hero {
		padding-top: 30px;
		padding-bottom: 25px;
	}

	.bf-single-portfolio__back {
		margin-bottom: 24px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(42px, 13vw, 64px);
	}

	.bf-single-portfolio__description {
		font-size: 16px;
	}

	.bf-single-portfolio__browser {
		border-radius: 16px;
	}

	.bf-single-portfolio__browser-bar {
		min-height: 42px;
		padding: 0 12px;
	}

	.bf-single-portfolio__url {
		padding: 5px 9px;
	}

	.bf-single-portfolio__preview {
		padding-bottom: 35px;
	}

	.bf-single-portfolio__details {
		padding-bottom: 45px;
	}

	.bf-single-portfolio__content h2 {
		font-size: 38px;
	}

	.bf-single-portfolio__body {
		font-size: 16px;
	}

	.bf-single-portfolio__actions {
		margin-top: 28px;
	}

	.bf-single-portfolio .bf-button {
		width: 100%;
	}

	.bf-single-portfolio__footer {
		padding-bottom: 45px;
	}

}
/* ==========================================================
   BREFECT PORTFOLIO — FINAL VISUAL REFINEMENT
   ========================================================== */

/* ----------------------------------------------------------
   ARCHIVE HERO
   ---------------------------------------------------------- */

.bf-portfolio-hero {
	padding-top: 85px;
	padding-bottom: 55px;
}

.bf-portfolio-hero__title {
	max-width: 1000px;
	margin-top: 14px;
	margin-bottom: 28px;
	font-size: clamp(3.5rem, 6.2vw, 6.3rem);
	line-height: .94;
}

.bf-portfolio-hero__description {
	max-width: 720px;
	font-size: 1rem;
	line-height: 1.7;
}


/* ----------------------------------------------------------
   ARCHIVE GRID
   ---------------------------------------------------------- */

.bf-portfolio-grid-section {
	padding-top: 10px;
	padding-bottom: 90px;
}

.bf-portfolio-grid {
	gap: 28px;
}


/* ----------------------------------------------------------
   ARCHIVE CARD
   ---------------------------------------------------------- */

.bf-portfolio-card {
	border-radius: 26px;
}

.bf-portfolio-card__browser {
	margin: 12px;
	border-radius: 19px;
}

.bf-portfolio-card__browser-bar {
	height: 38px;
}

.bf-portfolio-card__image {
	aspect-ratio: 16 / 9;
}

.bf-portfolio-card__content {
	padding: 7px 24px 24px;
}

.bf-portfolio-card__category {
	margin-bottom: 7px;
	font-size: .64rem;
}

.bf-portfolio-card__title {
	margin-bottom: 6px;
	font-size: 1.55rem;
}

.bf-portfolio-card__description {
	font-size: .85rem;
	line-height: 1.5;
}

.bf-portfolio-card__link {
	font-size: .82rem;
}


/* ==========================================================
   SINGLE PORTFOLIO
   ========================================================== */

.bf-single-portfolio__hero {
	padding-top: 55px;
	padding-bottom: 40px;
}

.bf-single-portfolio__back {
	margin-bottom: 35px;
	font-size: .82rem;
}

.bf-single-portfolio__heading {
	grid-template-columns: minmax(0, 1.15fr) minmax(240px, .5fr);
	gap: 45px;
}

.bf-single-portfolio__title {
	margin-top: 10px;
	font-size: clamp(3.5rem, 6.5vw, 6.5rem);
	line-height: .88;
}

.bf-single-portfolio__description {
	font-size: .92rem;
	line-height: 1.65;
}


/* ----------------------------------------------------------
   SINGLE PREVIEW
   ---------------------------------------------------------- */

.bf-single-portfolio__preview {
	padding-top: 5px;
	padding-bottom: 70px;
}

.bf-single-portfolio__browser {
	border-radius: 25px;
}

.bf-single-portfolio__browser-bar {
	height: 44px;
}

.bf-single-portfolio__image img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	object-position: top center;
}


/* ----------------------------------------------------------
   SINGLE DETAILS
   ---------------------------------------------------------- */

.bf-single-portfolio__details {
	padding-top: 55px;
	padding-bottom: 65px;
}

.bf-single-portfolio__content {
	grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
	gap: 55px;
	padding-bottom: 35px;
}

.bf-single-portfolio__content h2 {
	margin-top: 10px;
	font-size: clamp(2.3rem, 4vw, 4rem);
}

.bf-single-portfolio__body {
	font-size: .95rem;
	line-height: 1.7;
}


/* ----------------------------------------------------------
   SINGLE BUTTONS
   ---------------------------------------------------------- */

.bf-single-portfolio__actions {
	gap: 10px;
	padding-top: 25px;
}


/* ----------------------------------------------------------
   BACK TO PORTFOLIO
   ---------------------------------------------------------- */

.bf-single-portfolio__footer {
	padding-bottom: 65px;
}

.bf-single-portfolio__footer a {
	font-size: .82rem;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-portfolio-hero {
		padding-top: 70px;
		padding-bottom: 45px;
	}

	.bf-portfolio-hero__title {
		font-size: clamp(3.2rem, 9vw, 5.5rem);
	}

	.bf-single-portfolio__heading {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(3.5rem, 11vw, 6rem);
	}

	.bf-single-portfolio__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-portfolio-hero {
		padding-top: 55px;
		padding-bottom: 35px;
	}

	.bf-portfolio-hero__title {
		font-size: clamp(2.8rem, 14vw, 4rem);
	}

	.bf-portfolio-grid-section {
		padding-bottom: 65px;
	}

	.bf-portfolio-card__browser {
		margin: 9px;
	}

	.bf-portfolio-card__content {
		padding: 5px 18px 20px;
	}

	.bf-portfolio-card__title {
		font-size: 1.4rem;
	}

	.bf-single-portfolio__hero {
		padding-top: 45px;
		padding-bottom: 30px;
	}

	.bf-single-portfolio__title {
		font-size: clamp(2.8rem, 15vw, 4.2rem);
	}

	.bf-single-portfolio__preview {
		padding-bottom: 50px;
	}

	.bf-single-portfolio__browser {
		border-radius: 18px;
	}

	.bf-single-portfolio__details {
		padding-top: 45px;
		padding-bottom: 55px;
	}

	.bf-single-portfolio__content h2 {
		font-size: 2.4rem;
	}

	.bf-single-portfolio__actions {
		flex-direction: column;
	}

	.bf-single-portfolio__actions .bf-button {
		width: 100%;
		justify-content: center;
	}

}
/* ==========================================================
   BREFECT GLOBAL FLOATING HEADER
   ========================================================== */

.bf-header {
	width: calc(100% - 48px);
	max-width: 1280px;
	margin: 18px auto 0;

	background: rgba(255, 255, 255, 0.96);

	border: 1px solid rgba(20, 30, 60, 0.08);
	border-radius: 24px;

	box-shadow: 0 10px 30px rgba(20, 30, 60, 0.10);

	position: relative;
	z-index: 9999;

	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.bf-header__inner {
	min-height: 76px;
	padding-left: 28px;
	padding-right: 28px;
}
.bf-logo__text {
	color: #000000;
}

.bf-nav__list a {
	color: #000000;
}

.bf-header__cta {
	border-radius: 999px;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

	.bf-header {
		width: calc(100% - 28px);
		margin-top: 12px;
		border-radius: 18px;
	}

	.bf-header__inner {
		min-height: 64px;
		padding-left: 18px;
		padding-right: 18px;
	}
}
/* ==========================================================
   BREFECT — TESTIMONIALS
   FINAL PREMIUM + RESPONSIVE VERSION
   ========================================================== */


/* ==========================================================
   SECTION
   ========================================================== */

.bf-testimonials {
	position: relative;

	width: 100%;

	padding: 72px 0 88px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 78% 20%,
			rgba(66, 99, 255, 0.10),
			transparent 30%
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f8f8ff 100%
		);
}


/* ==========================================================
   CONTAINER — IMPORTANT WIDTH FIX
   ========================================================== */

.bf-testimonials .bf-container {
	width: min(
		calc(100% - 80px),
		1240px
	);

	max-width: 1240px;

	margin-left: auto;
	margin-right: auto;

	padding-left: 0;
	padding-right: 0;
}


/* ==========================================================
   INTRO
   ========================================================== */

.bf-testimonials__intro {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(260px, 0.55fr);

	grid-template-areas:
		"eyebrow eyebrow"
		"title description";

	column-gap: 70px;

	row-gap: 14px;

	align-items: end;

	margin: 0 0 42px;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.bf-testimonials__eyebrow {
	grid-area: eyebrow;

	display: block;

	margin: 0;

	font-size: 10px;

	font-weight: 800;

	line-height: 1.2;

	letter-spacing: 0.18em;

	text-transform: uppercase;

	color: #4263ff;
}


/* ==========================================================
   TITLE
   ========================================================== */

.bf-testimonials__title {
	grid-area: title;

	max-width: 700px;

	margin: 0;

	font-size: clamp(
		46px,
		5vw,
		68px
	);

	font-weight: 800;

	line-height: 0.96;

	letter-spacing: -0.055em;

	color: #0b1233;
}

.bf-testimonials__title span {
	color: #4263ff;
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.bf-testimonials__description {
	grid-area: description;

	max-width: 390px;

	margin: 0 0 4px auto;

	font-size: 14px;

	font-weight: 400;

	line-height: 1.7;

	color: #68708c;
}


/* ==========================================================
   SLIDER
   ========================================================== */

.bf-testimonials__slider {
	display: flex;

	align-items: flex-start;

	gap: 22px;

	width: 100%;

	max-width: 100%;

	margin: 0;

	padding: 4px 4px 28px;

	overflow-x: auto;

	overflow-y: hidden;

	scroll-behavior: smooth;

	scroll-snap-type: x mandatory;

	scrollbar-width: none;

	-webkit-overflow-scrolling: touch;

	touch-action: pan-x;

	cursor: grab;
}

.bf-testimonials__slider::-webkit-scrollbar {
	display: none;
}

.bf-testimonials__slider:active {
	cursor: grabbing;
}


/* ==========================================================
   TESTIMONIAL CARD
   ========================================================== */

.bf-testimonial-card {
	position: relative;

	flex: 0 0 290px;

	width: 290px;

	max-width: 290px;

	margin: 0;

	overflow: hidden;

	scroll-snap-align: start;

	background: #ffffff;

	border: 1px solid rgba(
		20,
		30,
		80,
		0.08
	);

	border-radius: 24px;

	box-shadow:
		0 16px 45px
		rgba(
			20,
			30,
			80,
			0.08
		);

	opacity: 1;

	transform: translateY(0);

	transition:
		transform 0.4s
		cubic-bezier(
			0.2,
			0.8,
			0.2,
			1
		),

		box-shadow 0.4s
		cubic-bezier(
			0.2,
			0.8,
			0.2,
			1
		);
}

.bf-testimonial-card:hover {
	transform: translateY(-7px);

	box-shadow:
		0 28px 65px
		rgba(
			20,
			30,
			80,
			0.14
		);
}


/* ==========================================================
   VIDEO
   ========================================================== */

.bf-testimonial-card__video {
	position: relative;

	width: 100%;

	aspect-ratio: 9 / 16;

	overflow: hidden;

	background: #10152f;
}

.bf-testimonial-card__video video {
	display: block;

	width: 100%;

	height: 100%;

	object-fit: cover;

	background: #10152f;
}


/* ==========================================================
   VIDEO OVERLAY
   ========================================================== */

.bf-testimonial-card__video::after {
	content: "";

	position: absolute;

	inset: 0;

	z-index: 2;

	pointer-events: none;

	background:
		linear-gradient(
			180deg,
			transparent 55%,
			rgba(
				8,
				12,
				35,
				0.12
			) 75%,
			rgba(
				8,
				12,
				35,
				0.38
			) 100%
		);
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.bf-testimonial-card__content {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 15px;

	min-height: 88px;

	padding: 16px 18px 18px;

	background: #ffffff;
}


/* ==========================================================
   NUMBER
   ========================================================== */

.bf-testimonial-card__number {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	flex: 0 0 auto;

	width: 34px;

	height: 34px;

	border:
		1px solid
		rgba(
			66,
			99,
			255,
			0.20
		);

	border-radius: 50%;

	font-size: 10px;

	font-weight: 800;

	line-height: 1;

	color: #4263ff;
}


/* ==========================================================
   CLIENT NAME
   ========================================================== */

.bf-testimonial-card__content h3 {
	margin: 0 0 4px;

	font-size: 18px;

	font-weight: 800;

	line-height: 1.2;

	letter-spacing: -0.02em;

	color: #0b1233;
}


/* ==========================================================
   BUSINESS
   ========================================================== */

.bf-testimonial-card__content p {
	margin: 0;

	font-size: 12px;

	font-weight: 500;

	line-height: 1.4;

	color: #737b96;
}


/* ==========================================================
   EXTRA SLIDER SPACE
   ========================================================== */

.bf-testimonials__slider::after {
	content: "";

	flex: 0 0 15px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-testimonials {
		padding: 62px 0 76px;
	}

	.bf-testimonials .bf-container {
		width: min(
			calc(100% - 48px),
			700px
		);

		max-width: 700px;
	}

	.bf-testimonials__intro {
		grid-template-columns: 1fr;

		grid-template-areas:
			"eyebrow"
			"title"
			"description";

		gap: 12px;

		margin-bottom: 34px;
	}

	.bf-testimonials__title {
		max-width: 650px;

		font-size: clamp(
			42px,
			7vw,
			62px
		);
	}

	.bf-testimonials__description {
		max-width: 520px;

		margin: 0;
	}

	.bf-testimonials__slider {
		gap: 18px;
	}

	.bf-testimonial-card {
		flex-basis: 285px;

		width: 285px;

		max-width: 285px;
	}

}


/* ==========================================================
   BREFECT TESTIMONIALS — MOBILE FINAL
   ========================================================== */

@media (max-width: 600px) {

	.bf-testimonials {
		padding: 52px 0 65px;
		overflow: hidden;
	}

	/* ----------------------------------------
	   MOBILE CONTAINER
	   ---------------------------------------- */

	.bf-testimonials .bf-container {
		width: calc(100% - 32px);
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding: 0;
	}


	/* ----------------------------------------
	   INTRO
	   ---------------------------------------- */

	.bf-testimonials__intro {
		display: grid;

		grid-template-columns: 1fr;

		grid-template-areas:
			"eyebrow"
			"title"
			"description";

		gap: 11px;

		margin-bottom: 28px;
	}

	.bf-testimonials__eyebrow {
		grid-area: eyebrow;

		font-size: 9px;
		letter-spacing: 0.16em;
	}

	.bf-testimonials__title {
		grid-area: title;

		max-width: 100%;

		font-size: clamp(38px, 10vw, 52px);

		line-height: 0.96;

		letter-spacing: -0.05em;
	}

	.bf-testimonials__description {
		grid-area: description;

		max-width: 100%;

		margin: 0;

		font-size: 13px;

		line-height: 1.6;
	}


	/* ----------------------------------------
	   MOBILE SLIDER
	   ---------------------------------------- */

	.bf-testimonials__slider {

		display: flex;

		align-items: flex-start;

		gap: 14px;

		width: 100%;

		margin: 0;

		padding:
			3px
			18px
			24px
			2px;

		overflow-x: auto;
		overflow-y: hidden;

		scroll-snap-type: x mandatory;

		scroll-behavior: smooth;

		scrollbar-width: none;

		-webkit-overflow-scrolling: touch;

		/*
		 * IMPORTANT:
		 * Do NOT use touch-action: pan-x here.
		 * Mobile vertical page scrolling must remain available.
		 */
		touch-action: auto;
	}

	.bf-testimonials__slider::-webkit-scrollbar {
		display: none;
	}


	/* ----------------------------------------
	   SMALLER MOBILE CARD
	   ---------------------------------------- */

	.bf-testimonial-card {

		flex: 0 0 min(
			66vw,
			270px
		);

		width: min(
			66vw,
			270px
		);

		max-width: 270px;

		margin: 0;

		border-radius: 21px;

		scroll-snap-align: start;

		box-shadow:
			0 14px 38px
			rgba(
				20,
				30,
				80,
				0.09
			);
	}


	/* ----------------------------------------
	   VIDEO SIZE
	   ---------------------------------------- */

	.bf-testimonial-card__video {

		width: 100%;

		aspect-ratio: 9 / 16;

		overflow: hidden;

		border-radius:
			21px 21px 0 0;
	}

	.bf-testimonial-card__video video {

		display: block;

		width: 100%;

		height: 100%;

		object-fit: cover;

	}


	/* ----------------------------------------
	   CARD CONTENT
	   ---------------------------------------- */

	.bf-testimonial-card__content {

		display: flex;

		align-items: center;

		justify-content: space-between;

		gap: 10px;

		min-height: 76px;

		padding:
			13px
			14px
			15px;
	}

	.bf-testimonial-card__content h3 {

		margin: 0 0 3px;

		font-size: 16px;

		line-height: 1.15;
	}

	.bf-testimonial-card__content p {

		margin: 0;

		font-size: 10px;

		line-height: 1.35;
	}

	.bf-testimonial-card__number {

		width: 30px;

		height: 30px;

		font-size: 9px;

		flex-shrink: 0;
	}

}

/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 380px) {

	.bf-testimonials .bf-container {
		width: calc(100% - 30px);
	}

	.bf-testimonial-card {
		flex-basis: 80vw;

		width: 80vw;

		max-width: 80vw;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-testimonials__slider {
		scroll-behavior: auto;
	}

	.bf-testimonial-card {
		transition: none;

		transform: none;
	}

}
/* ==========================================================
   SECTION 06 — PREMIUM DIGITAL GROWTH CTA
   ========================================================== */

.bf-growth-cta {
	position: relative;
	overflow: hidden;
	padding: 90px 0 70px;
	background:
		radial-gradient(
			circle at 72% 45%,
			rgba(92, 103, 255, 0.16),
			transparent 34%
		),
		linear-gradient(
			135deg,
			#f8f9ff 0%,
			#eef0ff 50%,
			#f8f9ff 100%
		);
	color: #11152f;
}

.bf-growth-cta__bg-glow {
	position: absolute;
	width: 700px;
	height: 700px;
	right: -180px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: rgba(74, 92, 255, 0.12);
	filter: blur(100px);
	pointer-events: none;
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.bf-growth-cta__container {
	position: relative;
	z-index: 2;

	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;

	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;

	gap: 40px;
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.bf-growth-cta__content {
	position: relative;
	z-index: 5;
}

.bf-growth-cta__eyebrow {
	display: inline-block;

	margin-bottom: 22px;

	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;

	color: #315cff;
}

.bf-growth-cta__title {
	max-width: 620px;

	margin: 0;

	font-size: clamp(52px, 6vw, 86px);
	line-height: 0.94;
	letter-spacing: -0.055em;
	font-weight: 900;
}

.bf-growth-cta__title span {
	display: block;

	background: linear-gradient(
		120deg,
		#315cff 0%,
		#6650ff 55%,
		#7b3ff2 100%
	);

	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bf-growth-cta__description {
	max-width: 650px;

	margin: 32px 0 30px;

	font-size: 17px;
	line-height: 1.7;
	color: #606a89;
}


/* ==========================================================
   SERVICES
   ========================================================== */

.bf-growth-cta__services {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	gap: 10px;

	max-width: 700px;

	margin-bottom: 30px;
}

.bf-growth-service {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	min-height: 105px;

	padding: 15px;

	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 18px;

	background: rgba(255, 255, 255, 0.72);

	box-shadow:
		0 10px 30px rgba(49, 92, 255, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);

	backdrop-filter: blur(12px);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-growth-service:hover {
	transform: translateY(-5px);

	box-shadow:
		0 18px 35px rgba(49, 92, 255, 0.12);
}

.bf-growth-service__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	margin-bottom: 10px;

	border-radius: 12px;

	background: linear-gradient(
		135deg,
		#eef2ff,
		#ffffff
	);

	color: #315cff;

	font-size: 20px;
	font-weight: 800;
}

.bf-growth-service strong {
	display: block;

	font-size: 13px;
	line-height: 1.2;
}

.bf-growth-service small {
	display: block;

	margin-top: 5px;

	font-size: 10px;
	line-height: 1.3;

	color: #7b849f;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.bf-growth-cta__buttons {
	display: flex;
	align-items: center;
	gap: 14px;

	margin-bottom: 32px;
}

.bf-growth-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	min-height: 58px;

	padding: 0 27px;

	border-radius: 999px;

	text-decoration: none;

	font-size: 15px;
	font-weight: 800;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-growth-cta__button:hover {
	transform: translateY(-3px);
}

.bf-growth-cta__button--primary {
	background: #11152f;
	color: #ffffff;

	box-shadow:
		0 15px 35px rgba(17, 21, 47, 0.22);
}

.bf-growth-cta__button--primary:hover {
	box-shadow:
		0 20px 42px rgba(17, 21, 47, 0.28);
}

.bf-growth-cta__button--call {
	background: rgba(255, 255, 255, 0.9);
	color: #11152f;

	border: 1px solid #e2e6f5;

	box-shadow:
		0 10px 25px rgba(49, 92, 255, 0.08);
}

.bf-growth-cta__call-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 32px;
	height: 32px;

	border-radius: 50%;

	background: #eef2ff;
	color: #315cff;
}


/* ==========================================================
   TRUST
   ========================================================== */

.bf-growth-cta__trust {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bf-growth-cta__avatars {
	display: flex;
	align-items: center;
}

.bf-growth-cta__avatars span {
	display: block;

	width: 35px;
	height: 35px;

	margin-left: -7px;

	border: 3px solid #f4f5ff;
	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#c8d0ff,
			#6978e8
		);
}

.bf-growth-cta__avatars span:first-child {
	margin-left: 0;
}

.bf-growth-cta__avatars span:nth-child(2) {
	background: linear-gradient(
		135deg,
		#ffd0c0,
		#9b6a60
	);
}

.bf-growth-cta__avatars span:nth-child(3) {
	background: linear-gradient(
		135deg,
		#d8c0ff,
		#7658b5
	);
}

.bf-growth-cta__avatars span:nth-child(4) {
	background: linear-gradient(
		135deg,
		#ffdca8,
		#c78345
	);
}

.bf-growth-cta__trust p {
	margin: 0;

	font-size: 12px;
	line-height: 1.45;

	color: #66708e;
}

.bf-growth-cta__trust strong {
	color: #315cff;
}


/* ==========================================================
   RIGHT VISUAL
   ========================================================== */

.bf-growth-visual {
	position: relative;

	min-height: 620px;

	display: flex;
	align-items: center;
	justify-content: center;

	perspective: 1200px;
}

.bf-growth-visual__glow {
	position: absolute;

	width: 430px;
	height: 430px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(78, 91, 255, 0.42),
			rgba(107, 76, 255, 0.12) 50%,
			transparent 72%
		);

	filter: blur(18px);

	animation: bf-growth-pulse 5s ease-in-out infinite;
}


/* ==========================================================
   ORBITS
   ========================================================== */

.bf-growth-orbit {
	position: absolute;

	width: 520px;
	height: 210px;

	border: 1px solid rgba(91, 106, 255, 0.25);

	border-radius: 50%;

	transform:
		rotate(-18deg)
		rotateX(65deg);

	animation: bf-growth-orbit 14s linear infinite;
}

.bf-growth-orbit--two {
	width: 460px;
	height: 180px;

	transform:
		rotate(35deg)
		rotateX(65deg);

	animation-duration: 18s;
	animation-direction: reverse;
}

.bf-growth-orbit--three {
	width: 580px;
	height: 240px;

	transform:
		rotate(82deg)
		rotateX(65deg);

	opacity: 0.55;

	animation-duration: 22s;
}


/* ==========================================================
   PARTICLES
   ========================================================== */

.bf-growth-particle {
	position: absolute;

	width: 9px;
	height: 9px;

	border-radius: 50%;

	background: #315cff;

	box-shadow:
		0 0 18px rgba(49, 92, 255, 0.65);

	animation: bf-growth-float 4s ease-in-out infinite;
}

.bf-growth-particle--one {
	top: 18%;
	right: 17%;
}

.bf-growth-particle--two {
	top: 35%;
	left: 8%;

	width: 6px;
	height: 6px;

	background: #754cff;

	animation-delay: -1s;
}

.bf-growth-particle--three {
	bottom: 20%;
	right: 10%;

	width: 7px;
	height: 7px;

	animation-delay: -2s;
}

.bf-growth-particle--four {
	bottom: 28%;
	left: 15%;

	width: 5px;
	height: 5px;

	background: #7e63ff;

	animation-delay: -3s;
}


/* ==========================================================
   PLATFORM
   ========================================================== */

.bf-growth-platform {
	position: absolute;

	bottom: 76px;

	width: 470px;
	height: 100px;

	border-radius: 50%;

	background:
		linear-gradient(
			180deg,
			#dce4ff,
			#9aa9e9
		);

	transform:
		perspective(500px)
		rotateX(65deg);

	box-shadow:
		0 30px 50px rgba(49, 92, 255, 0.22);
}

.bf-growth-platform__top {
	position: absolute;

	inset: 10px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#ffffff,
			#b8c5ff
		);
}

.bf-growth-platform__light {
	position: absolute;

	left: 12%;
	right: 12%;
	bottom: -18px;

	height: 18px;

	border-radius: 50%;

	background: #536cff;

	filter: blur(7px);

	opacity: 0.8;
}


/* ==========================================================
   CHARACTER
   ========================================================== */

.bf-growth-character {
	position: absolute;

	left: 50%;
	top: 43%;

	width: 230px;
	height: 330px;

	transform:
		translate(-50%, -50%)
		translateZ(20px);

	animation: bf-character-float 4s ease-in-out infinite;
}

.bf-character__head {
	position: absolute;

	left: 50%;
	top: 20px;

	width: 125px;
	height: 125px;

	transform: translateX(-50%);

	border-radius: 48% 48% 45% 45%;

	background:
		linear-gradient(
			135deg,
			#ffd4b2,
			#efad86
		);

	box-shadow:
		12px 15px 25px rgba(31, 35, 70, 0.14);
}

.bf-character__hair {
	position: absolute;

	left: -4px;
	top: -10px;

	width: 133px;
	height: 72px;

	border-radius: 65% 55% 40% 30%;

	background:
		linear-gradient(
			135deg,
			#24263c,
			#101225
		);
}

.bf-character__face {
	position: absolute;

	inset: 42px 20px 20px;
}

.bf-character__eye {
	position: absolute;

	top: 10px;

	width: 8px;
	height: 11px;

	border-radius: 50%;

	background: #15182a;
}

.bf-character__eye--left {
	left: 15px;
}

.bf-character__eye--right {
	right: 15px;
}

.bf-character__smile {
	position: absolute;

	left: 50%;
	bottom: 10px;

	width: 30px;
	height: 13px;

	border-bottom: 3px solid #a85d59;
	border-radius: 0 0 30px 30px;

	transform: translateX(-50%);
}


/* HEADPHONES */

.bf-character__headphones {
	position: absolute;

	left: 50%;
	top: 18px;

	width: 155px;
	height: 135px;

	transform: translateX(-50%);

	border: 12px solid #315cff;
	border-bottom-color: transparent;
	border-radius: 50%;
}

.bf-character__headphone-left,
.bf-character__headphone-right {
	position: absolute;

	top: 60px;

	width: 27px;
	height: 55px;

	border-radius: 14px;

	background: #315cff;
}

.bf-character__headphone-left {
	left: -20px;
}

.bf-character__headphone-right {
	right: -20px;
}


/* BODY */

.bf-character__body {
	position: absolute;

	left: 50%;
	top: 135px;

	width: 175px;
	height: 145px;

	transform: translateX(-50%);

	border-radius: 75px 75px 25px 25px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#4739c8
		);

	box-shadow:
		15px 20px 30px rgba(49, 92, 255, 0.2);
}

.bf-character__hood {
	position: absolute;

	left: 50%;
	top: 15px;

	width: 115px;
	height: 90px;

	transform: translateX(-50%);

	border-radius: 50%;

	border: 15px solid rgba(19, 23, 55, 0.35);
}


/* ARMS */

.bf-character__arm {
	position: absolute;

	top: 150px;

	width: 65px;
	height: 115px;

	border-radius: 35px;

	background: #315cff;
}

.bf-character__arm--left {
	left: 5px;

	transform: rotate(25deg);
}

.bf-character__arm--right {
	right: 5px;

	transform: rotate(-25deg);
}


/* ==========================================================
   LAPTOP
   ========================================================== */

.bf-growth-laptop {
	position: absolute;

	left: 50%;
	bottom: 145px;

	width: 260px;

	transform: translateX(-50%);

	z-index: 8;
}

.bf-growth-laptop__screen {
	position: relative;

	width: 100%;
	height: 150px;

	padding: 15px;

	border: 8px solid #252941;
	border-bottom-width: 10px;

	border-radius: 14px 14px 5px 5px;

	background:
		linear-gradient(
			135deg,
			#edf1ff,
			#b9c5ff
		);

	box-shadow:
		0 15px 25px rgba(17, 21, 47, 0.2);
}

.bf-growth-laptop__logo {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 28px;
	height: 28px;

	border-radius: 8px;

	background: #315cff;
	color: #ffffff;

	font-weight: 900;
}

.bf-growth-laptop__line {
	width: 65%;
	height: 8px;

	margin-top: 24px;

	border-radius: 10px;

	background: #667cff;
}

.bf-growth-laptop__line--small {
	width: 42%;

	margin-top: 10px;

	background: #aab5ed;
}

.bf-growth-laptop__base {
	position: absolute;

	left: -20px;
	right: -20px;

	bottom: -15px;

	height: 16px;

	border-radius: 0 0 18px 18px;

	background:
		linear-gradient(
			180deg,
			#aab3d0,
			#707a9e
		);
}


/* ==========================================================
   FLOATING CARDS
   ========================================================== */

.bf-growth-floating-card {
	position: absolute;

	z-index: 15;

	display: flex;
	align-items: center;
	gap: 10px;

	padding: 12px 15px;

	border: 1px solid rgba(255,255,255,0.9);
	border-radius: 14px;

	background: rgba(255,255,255,0.86);

	box-shadow:
		0 18px 40px rgba(42, 52, 120, 0.14);

	backdrop-filter: blur(15px);

	animation: bf-growth-float 5s ease-in-out infinite;
}

.bf-growth-floating-card strong {
	display: block;

	font-size: 11px;
	line-height: 1.2;
}

.bf-growth-floating-card small {
	display: block;

	margin-top: 3px;

	font-size: 9px;
	color: #7a829d;
}

.bf-floating-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 35px;
	height: 35px;

	border-radius: 10px;

	background: #eef2ff;
	color: #315cff;

	font-size: 12px;
	font-weight: 900;
}

.bf-floating-card__check {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 18px;
	height: 18px;

	margin-left: 5px;

	border-radius: 50%;

	background: #54c98a;
	color: #ffffff;

	font-size: 10px;
}

.bf-growth-floating-card--website {
	top: 19%;
	left: 5%;
}

.bf-growth-floating-card--google {
	top: 37%;
	left: 2%;

	animation-delay: -1.2s;
}

.bf-growth-floating-card--growth {
	right: 3%;
	bottom: 27%;

	display: block;

	min-width: 155px;

	animation-delay: -2s;
}

.bf-growth-floating-card--lead {
	top: 29%;
	right: 2%;

	animation-delay: -2.8s;
}

.bf-growth-floating-card--lead small,
.bf-growth-floating-card--lead strong {
	margin-left: 2px;
}

.bf-lead-avatar {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#ffc8c0,
			#8b6a75
		);

	color: #ffffff;
}

.bf-lead-phone {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 23px;
	height: 23px;

	margin-left: 4px;

	border-radius: 50%;

	background: #51c989;
	color: #ffffff;

	font-size: 11px;
}

.bf-growth-chart {
	height: 45px;

	margin-top: 7px;
}

.bf-growth-chart svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.bf-growth-chart polyline {
	fill: none;

	stroke: #315cff;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;

	stroke-dasharray: 300;
	stroke-dashoffset: 300;

	animation: bf-growth-chart 3s ease forwards infinite;
}


/* ==========================================================
   FLOATING ICONS
   ========================================================== */

.bf-growth-call-bubble,
.bf-growth-message-bubble,
.bf-growth-plane {
	position: absolute;

	z-index: 20;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 15px 35px rgba(49, 92, 255, 0.16);

	color: #315cff;
}

.bf-growth-call-bubble {
	left: 9%;
	bottom: 31%;

	width: 54px;
	height: 54px;

	font-size: 21px;

	animation:
		bf-growth-float 4s ease-in-out infinite,
		bf-growth-ring 2.5s ease-in-out infinite;
}

.bf-growth-message-bubble {
	top: 23%;
	right: 22%;

	width: 48px;
	height: 40px;

	border-radius: 18px;

	font-size: 18px;

	animation: bf-growth-float 4.5s ease-in-out infinite;
}

.bf-growth-plane {
	top: 9%;
	right: 5%;

	width: 55px;
	height: 55px;

	font-size: 24px;

	transform: rotate(-20deg);

	animation:
		bf-growth-plane 4s ease-in-out infinite;
}


/* ==========================================================
   PLANT
   ========================================================== */

.bf-growth-plant {
	position: absolute;

	right: 11%;
	bottom: 15%;

	width: 70px;
	height: 105px;

	z-index: 12;
}

.bf-plant-pot {
	position: absolute;

	bottom: 0;
	left: 50%;

	width: 55px;
	height: 45px;

	transform: translateX(-50%);

	border-radius: 8px 8px 20px 20px;

	background:
		linear-gradient(
			135deg,
			#68739d,
			#353b60
		);
}

.bf-plant-leaf {
	position: absolute;

	width: 35px;
	height: 55px;

	border-radius: 100% 0 100% 0;

	background:
		linear-gradient(
			135deg,
			#6f9f82,
			#315b48
		);

	transform-origin: bottom center;
}

.bf-plant-leaf--one {
	left: 10px;
	bottom: 35px;

	transform: rotate(-35deg);
}

.bf-plant-leaf--two {
	left: 30px;
	bottom: 40px;

	transform: rotate(25deg);
}

.bf-plant-leaf--three {
	left: 22px;
	bottom: 55px;

	transform: rotate(2deg) scale(0.8);
}


/* ==========================================================
   BOTTOM TRUST BAR
   ========================================================== */

.bf-growth-trust-bar {
	position: relative;
	z-index: 10;

	display: grid;
	grid-template-columns: repeat(4, 1fr);

	width: min(1200px, calc(100% - 48px));

	margin: 60px auto 0;

	padding: 25px 30px;

	border: 1px solid rgba(255,255,255,0.95);
	border-radius: 28px;

	background: rgba(255,255,255,0.78);

	box-shadow:
		0 20px 50px rgba(42, 52, 120, 0.08);

	backdrop-filter: blur(15px);
}

.bf-growth-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;

	padding: 0 24px;

	border-right: 1px solid #e7eaf5;
}

.bf-growth-trust-item:last-child {
	border-right: 0;
}

.bf-growth-trust-item > span {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	flex: 0 0 46px;

	border-radius: 50%;

	background: #eef1ff;

	color: #315cff;

	font-size: 19px;
}

.bf-growth-trust-item strong {
	display: block;

	font-size: 13px;
}

.bf-growth-trust-item small {
	display: block;

	margin-top: 4px;

	font-size: 10px;

	color: #7a829c;
}


/* ==========================================================
   ANIMATIONS
   ========================================================== */

@keyframes bf-growth-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes bf-character-float {

	0%,
	100% {
		transform:
			translate(-50%, -50%)
			translateY(0);
	}

	50% {
		transform:
			translate(-50%, -50%)
			translateY(-8px);
	}
}

@keyframes bf-growth-orbit {

	from {
		transform:
			rotate(-18deg)
			rotateX(65deg)
			rotateZ(0deg);
	}

	to {
		transform:
			rotate(-18deg)
			rotateX(65deg)
			rotateZ(360deg);
	}
}

@keyframes bf-growth-pulse {

	0%,
	100% {
		opacity: 0.65;
		transform: scale(0.95);
	}

	50% {
		opacity: 1;
		transform: scale(1.08);
	}
}

@keyframes bf-growth-chart {

	0% {
		stroke-dashoffset: 300;
	}

	70%,
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes bf-growth-ring {

	0%,
	100% {
		box-shadow:
			0 15px 35px rgba(49, 92, 255, 0.16);
	}

	50% {
		box-shadow:
			0 15px 35px rgba(49, 92, 255, 0.16),
			0 0 0 10px rgba(49, 92, 255, 0.07);
	}
}

@keyframes bf-growth-plane {

	0%,
	100% {
		transform:
			rotate(-20deg)
			translate(0, 0);
	}

	50% {
		transform:
			rotate(-15deg)
			translate(8px, -8px);
	}
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-growth-cta__container {
		grid-template-columns: 1fr;
	}

	.bf-growth-cta__content {
		text-align: center;
	}

	.bf-growth-cta__description {
		margin-left: auto;
		margin-right: auto;
	}

	.bf-growth-cta__services {
		margin-left: auto;
		margin-right: auto;
	}

	.bf-growth-cta__buttons,
	.bf-growth-cta__trust {
		justify-content: center;
	}

	.bf-growth-visual {
		min-height: 580px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.bf-growth-cta {
		padding: 65px 0 45px;
	}

	.bf-growth-cta__container {
		width: min(100% - 28px, 600px);

		gap: 15px;
	}

	.bf-growth-cta__title {
		font-size: clamp(45px, 13vw, 68px);
	}

	.bf-growth-cta__description {
		font-size: 15px;
		margin-top: 24px;
	}

	.bf-growth-cta__services {
		grid-template-columns: repeat(2, 1fr);

		gap: 8px;
	}

	.bf-growth-service {
		min-height: 95px;
	}

	.bf-growth-cta__buttons {
		flex-direction: column;

		align-items: stretch;
	}

	.bf-growth-cta__button {
		width: 100%;
	}

	.bf-growth-cta__trust {
		justify-content: flex-start;
		text-align: left;
	}

	.bf-growth-visual {
		min-height: 450px;

		transform: scale(0.82);
		transform-origin: top center;

		margin-bottom: -70px;
	}

	.bf-growth-floating-card--website {
		left: 0;
	}

	.bf-growth-floating-card--google {
		left: -5%;
	}

	.bf-growth-floating-card--lead {
		right: -3%;
	}

	.bf-growth-floating-card--growth {
		right: -4%;
	}

	.bf-growth-trust-bar {
		grid-template-columns: 1fr 1fr;

		width: min(100% - 28px, 600px);

		margin-top: 30px;

		padding: 15px;
	}

	.bf-growth-trust-item {
		padding: 14px;

		border-right: 0;
		border-bottom: 1px solid #e7eaf5;
	}

	.bf-growth-trust-item:nth-child(3),
	.bf-growth-trust-item:nth-child(4) {
		border-bottom: 0;
	}

	.bf-growth-trust-item > span {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 420px) {

	.bf-growth-visual {
		transform: scale(0.68);
		margin-bottom: -130px;
	}

	.bf-growth-cta__services {
		grid-template-columns: 1fr 1fr;
	}

	.bf-growth-trust-bar {
		grid-template-columns: 1fr;
	}

	.bf-growth-trust-item {
		border-bottom: 1px solid #e7eaf5 !important;
	}

	.bf-growth-trust-item:last-child {
		border-bottom: 0 !important;
	}

}
/* ==========================================================
   BREFECT — PREMIUM FOOTER
   ========================================================== */

.bf-footer {
	position: relative;
	overflow: hidden;

	padding: 80px 0 24px;

	background:
		radial-gradient(
			circle at 82% 20%,
			rgba(76, 92, 255, 0.20),
			transparent 30%
		),
		radial-gradient(
			circle at 15% 80%,
			rgba(123, 76, 255, 0.14),
			transparent 28%
		),
		#0c1026;

	color: #ffffff;
}


/* ==========================================================
   BACKGROUND GLOW
   ========================================================== */

.bf-footer__glow {
	position: absolute;

	border-radius: 50%;

	filter: blur(80px);

	pointer-events: none;

	opacity: 0.45;
}


.bf-footer__glow--one {
	width: 320px;
	height: 320px;

	top: -160px;
	right: 8%;

	background: #315cff;

	animation:
		bf-footer-glow-one 8s ease-in-out infinite;
}


.bf-footer__glow--two {
	width: 260px;
	height: 260px;

	bottom: -120px;
	left: 5%;

	background: #714cff;

	animation:
		bf-footer-glow-two 10s ease-in-out infinite;
}


@keyframes bf-footer-glow-one {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-30px, 25px);
	}
}


@keyframes bf-footer-glow-two {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(35px, -20px);
	}
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.bf-footer__container {
	position: relative;
	z-index: 2;
}


/* ==========================================================
   TOP AREA
   ========================================================== */

.bf-footer__top {
	display: grid;

	grid-template-columns:
		minmax(300px, 1fr)
		minmax(500px, 1.35fr);

	gap: 90px;

	padding-bottom: 55px;
}


/* ==========================================================
   BRAND
   ========================================================== */

.bf-footer__brand {
	max-width: 390px;
}


/* ==========================================================
   MAIN LOGO
   ========================================================== */

.bf-footer__logo {
	display: inline-flex;

	align-items: center;
	justify-content: flex-start;

	width: fit-content;

	margin: 0;
	padding: 0;

	color: #ffffff;

	text-decoration: none;

	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}


/* LOGO IMAGE */

.bf-footer__logo-image {
	display: block;

	width: auto;
	height: 52px;

	max-width: 200px;

	object-fit: contain;

	object-position: left center;
}


/* TEXT FALLBACK */

.bf-footer__logo-text {
	display: block;

	color: #ffffff;

	font-size: 42px;
	font-weight: 900;

	line-height: 1;

	letter-spacing: -0.065em;
}


/* LOGO HOVER */

.bf-footer__logo:hover {
	transform: translateY(-2px);

	opacity: 0.92;

	color: #ffffff;
}


/* ==========================================================
   TAGLINE
   ========================================================== */

.bf-footer__tagline {
	margin: 12px 0 0;

	color: #8e9ac4;

	font-size: 12px;
	font-weight: 700;

	letter-spacing: 0.15em;

	text-transform: uppercase;
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.bf-footer__description {
	max-width: 350px;

	margin: 22px 0 27px;

	color: #8992b1;

	font-size: 14px;

	line-height: 1.7;
}


/* ==========================================================
   SOCIALS
   ========================================================== */

.bf-footer__socials {
	display: flex;

	flex-wrap: wrap;

	gap: 9px;
}


.bf-footer__social {
	display: inline-flex;

	align-items: center;

	gap: 8px;

	padding: 9px 13px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.09
	);

	border-radius: 999px;

	background: rgba(
		255,
		255,
		255,
		0.035
	);

	color: #c9d0e8;

	font-size: 11px;
	font-weight: 700;

	text-decoration: none;

	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}


.bf-footer__social span {
	color: #7284ff;

	transition:
		transform 0.25s ease;
}


.bf-footer__social:hover {
	transform: translateY(-3px);

	border-color: rgba(
		105,
		124,
		255,
		0.5
	);

	background: rgba(
		69,
		89,
		255,
		0.12
	);

	color: #ffffff;
}


.bf-footer__social:hover span {
	transform: translate(3px, -3px);
}


/* ==========================================================
   LINKS GROUP
   ========================================================== */

.bf-footer__links-group {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 25px;
}


.bf-footer__links-column {
	display: flex;

	flex-direction: column;

	align-items: flex-start;

	gap: 13px;
}


.bf-footer__heading {
	margin-bottom: 8px;

	color: #ffffff;

	font-size: 11px;
	font-weight: 800;

	letter-spacing: 0.14em;

	text-transform: uppercase;
}


.bf-footer__links-column a,
.bf-footer__location {
	position: relative;

	display: inline-flex;

	align-items: center;

	color: #8992b1;

	font-size: 13px;

	line-height: 1.4;

	text-decoration: none;

	transition:
		color 0.25s ease,
		transform 0.25s ease;
}


.bf-footer__links-column a::before {
	content: "";

	position: absolute;

	left: -13px;

	width: 4px;
	height: 4px;

	border-radius: 50%;

	background: #5d72ff;

	opacity: 0;

	transform: scale(0);

	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}


.bf-footer__links-column a:hover {
	color: #ffffff;

	transform: translateX(5px);
}


.bf-footer__links-column a:hover::before {
	opacity: 1;

	transform: scale(1);
}


/* ==========================================================
   LARGE BREFECT WORDMARK
   ========================================================== */

.bf-footer__wordmark {
	position: relative;

	margin-top: 10px;

	padding-top: 20px;

	overflow: hidden;

	color: transparent;

	font-size: clamp(
		100px,
		18vw,
		245px
	);

	font-weight: 900;

	line-height: 0.75;

	letter-spacing: -0.075em;

	text-align: center;

	-webkit-text-stroke: 1px rgba(
		255,
		255,
		255,
		0.15
	);

	user-select: none;

	pointer-events: none;
}


.bf-footer__wordmark::after {
	content: "";

	position: absolute;

	left: 50%;
	bottom: 0;

	width: 50%;

	height: 1px;

	transform: translateX(-50%);

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(
				98,
				117,
				255,
				0.7
			),
			transparent
		);
}


/* ==========================================================
   BOTTOM BAR
   ========================================================== */

.bf-footer__bottom {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	padding-top: 23px;

	border-top: 1px solid rgba(
		255,
		255,
		255,
		0.08
	);
}


.bf-footer__bottom p {
	margin: 0;

	color: #6f7898;

	font-size: 11px;
}


.bf-footer__legal {
	display: flex;

	align-items: center;

	gap: 22px;
}


.bf-footer__legal a {
	color: #737c9d;

	font-size: 11px;

	text-decoration: none;

	transition:
		color 0.25s ease;
}


.bf-footer__legal a:hover {
	color: #ffffff;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-footer {
		padding-top: 70px;
	}


	.bf-footer__top {
		grid-template-columns: 1fr;

		gap: 50px;
	}


	.bf-footer__brand {
		max-width: 550px;
	}


	.bf-footer__description {
		max-width: 500px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-footer {
		padding: 60px 0 20px;
	}


	.bf-footer__top {
		gap: 42px;

		padding-bottom: 35px;
	}


	.bf-footer__logo-image {
		height: 40px;

		max-width: 165px;
	}


	.bf-footer__logo-text {
		font-size: 32px;
	}


	.bf-footer__description {
		margin-top: 18px;

		font-size: 13px;
	}


	.bf-footer__links-group {
		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);

		gap: 35px 20px;
	}


	.bf-footer__links-column:last-child {
		grid-column: 1 / -1;
	}


	.bf-footer__wordmark {
		margin-top: 10px;

		font-size: 25vw;

		line-height: 0.8;
	}


	.bf-footer__bottom {
		flex-direction: column;

		align-items: flex-start;

		gap: 14px;
	}


	.bf-footer__legal {
		gap: 16px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-footer__glow--one,
	.bf-footer__glow--two {
		animation: none;
	}


	.bf-footer__social,
	.bf-footer__links-column a,
	.bf-footer__logo {
		transition: none;
	}

}
/* ==========================================================
   BREFECT — FINAL HEADER LOGO FIX
   ========================================================== */

.bf-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}


/* LOGO WRAPPER */

.bf-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;

	width: auto;
	max-width: 220px;

	margin: 0;
	padding: 0;

	line-height: 0;
	text-decoration: none;

	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}


/* ACTUAL LOGO IMAGE */

.bf-header__logo-image {
	display: block;

	width: auto;
	height: 52px;

	max-width: 210px;

	object-fit: contain;
	object-position: left center;

	margin: 0;
	padding: 0;
}


/* FALLBACK TEXT */

.bf-header__logo-text {
	display: block;

	color: var(--bf-navy);

	font-size: 32px;
	font-weight: 900;

	line-height: 1;
	letter-spacing: -0.06em;
}


/* HOVER */

.bf-header__logo:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}


/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 901px) {

	.bf-header__logo-image {
		height: 52px;
		max-width: 210px;
	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-header__logo-image {
		height: 46px;
		max-width: 185px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-header__logo {
		max-width: 165px;
	}

	.bf-header__logo-image {
		height: 40px;
		max-width: 160px;
	}

	.bf-header__logo-text {
		font-size: 28px;
	}

}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 380px) {

	.bf-header__logo-image {
		height: 36px;
		max-width: 145px;
	}

}
/* ==========================================================
   BREFECT — PREMIUM INNER PAGE TITLE
   Header ke neeche — Home page par hidden
   ========================================================== */

.bf-page-title {
	position: relative;

	overflow: hidden;

	padding: 72px 0 68px;

	background:
		radial-gradient(
			circle at 88% 35%,
			rgba(76, 92, 255, 0.12),
			transparent 28%
		),
		radial-gradient(
			circle at 8% 80%,
			rgba(116, 76, 255, 0.08),
			transparent 25%
		),
		#ffffff;

	border-bottom: 1px solid rgba(
		15,
		23,
		60,
		0.06
	);
}


/* ==========================================================
   SOFT BACKGROUND GLOW
   ========================================================== */

.bf-page-title::before {
	content: "";

	position: absolute;

	width: 420px;
	height: 420px;

	top: -260px;
	right: 4%;

	border-radius: 50%;

	background: rgba(
		64,
		91,
		255,
		0.10
	);

	filter: blur(80px);

	pointer-events: none;
}


.bf-page-title::after {
	content: "";

	position: absolute;

	width: 300px;
	height: 300px;

	bottom: -220px;
	left: 12%;

	border-radius: 50%;

	background: rgba(
		126,
		76,
		255,
		0.08
	);

	filter: blur(80px);

	pointer-events: none;
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.bf-page-title__container {
	position: relative;

	z-index: 2;
}


/* ==========================================================
   SMALL BREFECT LABEL
   ========================================================== */

.bf-page-title__eyebrow {
	display: inline-flex;

	align-items: center;

	gap: 10px;

	margin-bottom: 18px;

	color: #315cff;

	font-size: 11px;
	font-weight: 800;

	letter-spacing: 0.20em;

	line-height: 1;

	text-transform: uppercase;
}


.bf-page-title__eyebrow::before {
	content: "";

	display: block;

	width: 28px;
	height: 2px;

	border-radius: 10px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#704cff
		);
}


/* ==========================================================
   MAIN PAGE TITLE
   ========================================================== */

.bf-page-title h1 {
	position: relative;

	margin: 0;

	color: #0d1230;

	font-size: clamp(
		56px,
		8vw,
		108px
	);

	font-weight: 900;

	line-height: 0.92;

	letter-spacing: -0.065em;

	text-transform: uppercase;
}


/* Gradient accent behind title */

.bf-page-title h1::after {
	content: "";

	position: absolute;

	left: 3px;
	bottom: -12px;

	width: 95px;
	height: 5px;

	border-radius: 999px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#704cff
		);

	opacity: 0.9;
}


/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 1101px) {

	.bf-page-title {
		padding-top: 78px;
		padding-bottom: 74px;
	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-page-title {
		padding: 58px 0 56px;
	}

	.bf-page-title h1 {
		font-size: clamp(
			50px,
			10vw,
			80px
		);
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-page-title {
		padding: 44px 0 48px;
	}

	.bf-page-title__eyebrow {
		margin-bottom: 14px;

		font-size: 9px;

		letter-spacing: 0.16em;
	}

	.bf-page-title__eyebrow::before {
		width: 20px;
	}

	.bf-page-title h1 {
		font-size: clamp(
			42px,
			13vw,
			62px
		);

		line-height: 0.95;

		letter-spacing: -0.055em;
	}

	.bf-page-title h1::after {
		left: 1px;

		bottom: -9px;

		width: 65px;

		height: 4px;
	}

}


/* ==========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-page-title::before,
	.bf-page-title::after {
		filter: none;
	}

}
/* ==========================================================
   BREFECT — ABOUT US
   01 — INTRODUCTION
   COMPLETE COMPONENT
   ========================================================== */

.bf-about01 {
	position: relative;

	overflow: hidden;

	padding: 55px 0 90px;

	background:
		radial-gradient(
			circle at 82% 25%,
			rgba(95, 108, 255, 0.14),
			transparent 30%
		),
		radial-gradient(
			circle at 8% 75%,
			rgba(115, 76, 255, 0.08),
			transparent 28%
		),
		#ffffff;
}


.bf-about01__container {
	width: min(
		1380px,
		calc(100% - 80px)
	);

	margin: 0 auto;
}


/* ==========================================================
   PAGE TITLE
   ========================================================== */

.bf-about01__page-title {
	display: flex;

	align-items: center;

	gap: 14px;

	margin-bottom: 55px;

	color: #0d1433;

	font-size: 14px;

	font-weight: 800;

	letter-spacing: 0.08em;
}


.bf-about01__page-title-line {
	display: block;

	width: 42px;
	height: 3px;

	border-radius: 99px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);
}


/* ==========================================================
   INTRO GRID
   ========================================================== */

.bf-about01__intro {
	display: grid;

	grid-template-columns:
		minmax(0, 0.95fr)
		minmax(420px, 0.9fr);

	gap: 70px;

	align-items: center;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-about01__content {
	max-width: 720px;
}


.bf-about01__label {
	display: flex;

	align-items: center;

	gap: 12px;

	margin-bottom: 22px;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about01__label span {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.18
	);

	border-radius: 13px;

	background:
		rgba(
			49,
			92,
			255,
			0.06
		);

	font-size: 11px;

	letter-spacing: 0;
}


.bf-about01__heading {
	max-width: 760px;

	margin: 0 0 28px;

	color: #0c1230;

	font-size: clamp(
		48px,
		5.2vw,
		78px
	);

	font-weight: 900;

	line-height: 0.94;

	letter-spacing: -0.065em;
}


.bf-about01__heading strong {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff 0%,
			#4e5dff 45%,
			#8b4cff 100%
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


.bf-about01__lead {
	max-width: 700px;

	margin: 0 0 20px;

	color: #202a4c;

	font-size: clamp(
		17px,
		1.65vw,
		21px
	);

	font-weight: 600;

	line-height: 1.65;
}


.bf-about01__text {
	max-width: 700px;

	margin: 0 0 15px;

	color: #6e7894;

	font-size: 13px;

	line-height: 1.85;
}


/* ==========================================================
   DIGITAL VISUAL
   ========================================================== */

.bf-about01__visual {
	position: relative;

	display: flex;

	align-items: center;
	justify-content: center;

	min-height: 500px;
}


.bf-about01__glow {
	position: absolute;

	width: 390px;
	height: 390px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	filter: blur(90px);

	opacity: 0.16;

	animation:
		bf-about01-glow 6s ease-in-out infinite;
}


/* ==========================================================
   ORBITS
   ========================================================== */

.bf-about01__orbit {
	position: absolute;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.16
	);

	border-radius: 50%;

	pointer-events: none;
}


.bf-about01__orbit--one {
	width: 520px;
	height: 210px;

	transform:
		rotateX(65deg)
		rotateZ(-15deg);

	animation:
		bf-about01-orbit-one 14s linear infinite;
}


.bf-about01__orbit--two {
	width: 430px;
	height: 170px;

	border-color: rgba(
		116,
		76,
		255,
		0.15
	);

	transform:
		rotateX(65deg)
		rotateZ(50deg);

	animation:
		bf-about01-orbit-two 18s linear infinite;
}


/* ==========================================================
   MAIN DIGITAL CARD
   ========================================================== */

.bf-about01__digital-card {
	position: relative;

	z-index: 3;

	width: min(
		470px,
		82%
	);

	padding: 24px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.9
	);

	border-radius: 30px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,0.96),
			rgba(235,240,255,0.88)
		);

	box-shadow:
		0 35px 90px rgba(
			49,
			92,
			255,
			0.16
		);

	backdrop-filter: blur(20px);

	transform:
		perspective(1000px)
		rotateX(6deg)
		rotateY(-8deg);

	animation:
		bf-about01-card-float 6s ease-in-out infinite;
}


.bf-about01__card-top {
	display: flex;

	align-items: center;
	justify-content: space-between;

	margin-bottom: 18px;

	color: #315cff;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.15em;
}


.bf-about01__screen {
	position: relative;

	height: 245px;

	overflow: hidden;

	border-radius: 24px;

	background:
		linear-gradient(
			145deg,
			#0d1538,
			#18255c
		);

	box-shadow:
		inset 0 1px 0 rgba(
			255,
			255,
			255,
			0.08
		);
}


.bf-about01__screen-grid {
	position: absolute;

	inset: 0;

	opacity: 0.12;

	background-image:
		linear-gradient(
			rgba(255,255,255,0.3) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(255,255,255,0.3) 1px,
			transparent 1px
		);

	background-size:
		45px 45px;
}


.bf-about01__bars {
	position: absolute;

	right: 35px;
	bottom: 30px;
	left: 35px;

	display: flex;

	align-items: flex-end;

	justify-content: space-between;

	height: 135px;
}


.bf-about01__bars span {
	display: block;

	width: 9%;

	border-radius:
		9px 9px 2px 2px;

	background:
		linear-gradient(
			180deg,
			#6f5cff,
			#315cff
		);

	opacity: 0.75;
}


.bf-about01__bars span:nth-child(1) {
	height: 38%;
}


.bf-about01__bars span:nth-child(2) {
	height: 55%;
}


.bf-about01__bars span:nth-child(3) {
	height: 46%;
}


.bf-about01__bars span:nth-child(4) {
	height: 78%;
}


.bf-about01__growth-line {
	position: absolute;

	z-index: 2;

	inset: 45px 25px 20px;

	width: calc(100% - 50px);

	height: calc(100% - 65px);
}


.bf-about01__screen-point {
	position: absolute;

	z-index: 4;

	right: 28px;
	top: 32px;

	width: 13px;
	height: 13px;

	border-radius: 50%;

	background: #ffffff;

	box-shadow:
		0 0 0 7px rgba(
			116,
			76,
			255,
			0.20
		),
		0 0 25px rgba(
			255,
			255,
			255,
			0.7
		);
}


.bf-about01__card-bottom {
	display: flex;

	align-items: center;
	justify-content: space-between;

	padding-top: 20px;

	color: #707995;

	font-size: 11px;

	font-weight: 700;
}


.bf-about01__card-bottom strong {
	color: #315cff;
}


/* ==========================================================
   PLATFORM ICONS
   ========================================================== */

.bf-about01__platform {
	position: absolute;

	z-index: 8;

	display: flex;

	align-items: center;
	justify-content: center;

	width: 68px;
	height: 68px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.9
	);

	border-radius: 20px;

	background:
		rgba(
			255,
			255,
			255,
			0.9
		);

	box-shadow:
		0 20px 45px rgba(
			35,
			49,
			120,
			0.15
		);

	backdrop-filter: blur(18px);

	animation:
		bf-about01-platform-float 5s ease-in-out infinite;
}


.bf-about01__platform svg {
	width: 37px;
	height: 37px;
}


.bf-about01__platform--wordpress {
	top: 8%;

	left: 2%;
}


.bf-about01__platform--google {
	top: 7%;

	right: 1%;

	animation-delay: -1.2s;
}


.bf-about01__platform--analytics {
	bottom: 10%;

	left: 7%;

	animation-delay: -2.5s;
}


.bf-about01__platform--meta {
	right: 5%;

	bottom: 9%;

	animation-delay: -3.7s;
}


/* ==========================================================
   THREE CARDS
   ========================================================== */

.bf-about01__cards {
	display: grid;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 18px;

	margin-top: 45px;
}


.bf-about01__card {
	position: relative;

	min-height: 205px;

	padding: 25px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.10
	);

	border-radius: 24px;

	background:
		linear-gradient(
			145deg,
			rgba(255,255,255,0.98),
			rgba(242,246,255,0.90)
		);

	box-shadow:
		0 20px 55px rgba(
			35,
			49,
			120,
			0.07
		);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}


.bf-about01__card:hover {
	transform: translateY(-8px);

	border-color: rgba(
		49,
		92,
		255,
		0.25
	);

	box-shadow:
		0 30px 70px rgba(
			35,
			49,
			120,
			0.13
		);
}


.bf-about01__card-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 55px;
	height: 55px;

	margin-bottom: 22px;

	border-radius: 16px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;

	box-shadow:
		0 14px 28px rgba(
			49,
			92,
			255,
			0.22
		);
}


.bf-about01__card-icon svg {
	width: 27px;
	height: 27px;
}


.bf-about01__card-number {
	position: absolute;

	top: 27px;
	right: 25px;

	color: rgba(
		49,
		92,
		255,
		0.25
	);

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.08em;
}


.bf-about01__card h3 {
	margin: 0 0 9px;

	color: #101631;

	font-size: 21px;

	font-weight: 900;

	letter-spacing: -0.03em;
}


.bf-about01__card p {
	max-width: 330px;

	margin: 0;

	color: #707a96;

	font-size: 12px;

	line-height: 1.75;
}


.bf-about01__card-arrow {
	position: absolute;

	right: 23px;
	bottom: 22px;

	display: flex;

	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.15
	);

	border-radius: 50%;

	background:
		rgba(
			49,
			92,
			255,
			0.06
		);

	color: #315cff;

	font-size: 17px;

	transition:
		transform 0.3s ease,
		background 0.3s ease;
}


.bf-about01__card:hover .bf-about01__card-arrow {
	transform: translate(3px, -3px);

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;
}


/* ==========================================================
   ANIMATIONS
   ========================================================== */

@keyframes bf-about01-card-float {

	0%,
	100% {
		transform:
			perspective(1000px)
			rotateX(6deg)
			rotateY(-8deg)
			translateY(0);
	}

	50% {
		transform:
			perspective(1000px)
			rotateX(8deg)
			rotateY(-5deg)
			translateY(-12px);
	}
}


@keyframes bf-about01-platform-float {

	0%,
	100% {
		transform:
			translateY(0)
			rotate(0deg);
	}

	50% {
		transform:
			translateY(-11px)
			rotate(2deg);
	}
}


@keyframes bf-about01-glow {

	0%,
	100% {
		transform: scale(1);

		opacity: 0.14;
	}

	50% {
		transform: scale(1.12);

		opacity: 0.22;
	}
}


@keyframes bf-about01-orbit-one {

	from {
		transform:
			rotateX(65deg)
			rotateZ(0deg);
	}

	to {
		transform:
			rotateX(65deg)
			rotateZ(360deg);
	}
}


@keyframes bf-about01-orbit-two {

	from {
		transform:
			rotateX(65deg)
			rotateZ(360deg);
	}

	to {
		transform:
			rotateX(65deg)
			rotateZ(0deg);
	}
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

	.bf-about01__intro {
		grid-template-columns: 1fr;

		gap: 45px;
	}

	.bf-about01__content {
		max-width: 850px;
	}

	.bf-about01__visual {
		min-height: 480px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

	.bf-about01 {
		padding: 45px 0 65px;
	}

	.bf-about01__container {
		width: min(
			100% - 34px,
			600px
		);
	}

	.bf-about01__page-title {
		margin-bottom: 40px;

		font-size: 13px;
	}

	.bf-about01__intro {
		gap: 25px;
	}

	.bf-about01__heading {
		font-size: clamp(
			43px,
			12vw,
			60px
		);
	}

	.bf-about01__lead {
		font-size: 17px;
	}

	.bf-about01__text {
		font-size: 12px;
	}

	.bf-about01__visual {
		min-height: 350px;
	}

	.bf-about01__digital-card {
		width: 290px;

		padding: 18px;

		border-radius: 23px;
	}

	.bf-about01__screen {
		height: 165px;

		border-radius: 17px;
	}

	.bf-about01__bars {
		height: 95px;

		right: 22px;
		bottom: 20px;
		left: 22px;
	}

	.bf-about01__growth-line {
		inset: 35px 15px 15px;

		width: calc(100% - 30px);

		height: calc(100% - 50px);
	}

	.bf-about01__platform {
		width: 48px;
		height: 48px;

		border-radius: 14px;
	}

	.bf-about01__platform svg {
		width: 26px;
		height: 26px;
	}

	.bf-about01__platform--wordpress {
		left: 0;
	}

	.bf-about01__platform--google {
		right: 0;
	}

	.bf-about01__platform--analytics {
		left: 4%;
		bottom: 4%;
	}

	.bf-about01__platform--meta {
		right: 4%;
		bottom: 4%;
	}

	.bf-about01__orbit--one {
		width: 340px;
		height: 135px;
	}

	.bf-about01__orbit--two {
		width: 285px;
		height: 110px;
	}

	.bf-about01__cards {
		grid-template-columns: 1fr;

		gap: 14px;

		margin-top: 35px;
	}

	.bf-about01__card {
		min-height: 185px;

		padding: 23px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-about01__digital-card,
	.bf-about01__platform,
	.bf-about01__glow,
	.bf-about01__orbit {
		animation: none;
	}

	.bf-about01__card {
		transition: none;
	}

}
/* ==========================================================
   BREFECT
   ABOUT PAGE — SECTION 02
   OUR STORY
   ========================================================== */

.bf-about-story {
	position: relative;

	overflow: hidden;

	padding: 105px 0 110px;

	background:
		radial-gradient(
			circle at 8% 35%,
			rgba(49, 92, 255, 0.055),
			transparent 30%
		),
		radial-gradient(
			circle at 92% 70%,
			rgba(116, 76, 255, 0.055),
			transparent 30%
		),
		#ffffff;
}


.bf-about-story__container {
	width: min(
		1360px,
		calc(100% - 90px)
	);

	margin: 0 auto;
}


/* ==========================================================
   SECTION LABEL
   ========================================================== */

.bf-about-story__label {
	display: flex;

	align-items: center;

	gap: 13px;

	margin-bottom: 55px;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about-story__number {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.16
	);

	border-radius: 12px;

	background:
		rgba(
			49,
			92,
			255,
			0.045
		);

	font-size: 11px;

	letter-spacing: 0;
}


.bf-about-story__line {
	width: 38px;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);
}


.bf-about-story__label-text {
	line-height: 1;
}


/* ==========================================================
   MAIN LAYOUT
   ========================================================== */

.bf-about-story__layout {
	display: grid;

	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(380px, 0.75fr);

	gap: 100px;

	align-items: start;
}


/* ==========================================================
   HEADING
   ========================================================== */

.bf-about-story__heading h2 {
	max-width: 780px;

	margin: 0;

	color: #101631;

	font-size: clamp(
		50px,
		6vw,
		86px
	);

	font-weight: 900;

	line-height: 0.94;

	letter-spacing: -0.065em;
}


.bf-about-story__heading h2 span {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


/* ==========================================================
   STORY CONTENT
   ========================================================== */

.bf-about-story__content {
	max-width: 600px;

	padding-top: 7px;
}


.bf-about-story__content p {
	margin: 0 0 22px;

	color: #6d7895;

	font-size: 15px;

	line-height: 1.9;
}


.bf-about-story__content p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   STATEMENT
   ========================================================== */

.bf-about-story__statement {
	display: grid;

	grid-template-columns: 65px 1fr;

	gap: 25px;

	align-items: center;

	margin-top: 80px;

	padding: 35px 40px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.13
	);

	border-radius: 24px;

	background:
		linear-gradient(
			120deg,
			rgba(241,245,255,0.95),
			rgba(249,247,255,0.95)
		);

	box-shadow:
		0 22px 55px rgba(
			49,
			92,
			255,
			0.055
		);
}


.bf-about-story__statement-mark {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	border-radius: 17px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;

	font-size: 30px;

	font-weight: 400;

	box-shadow:
		0 13px 28px rgba(
			49,
			92,
			255,
			0.18
		);
}


.bf-about-story__statement-content > span {
	display: block;

	margin-bottom: 9px;

	color: #315cff;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about-story__statement-content h3 {
	margin: 0;

	color: #101631;

	font-size: clamp(
		24px,
		3vw,
		38px
	);

	font-weight: 900;

	line-height: 1.08;

	letter-spacing: -0.045em;
}


.bf-about-story__statement-content h3 span {
	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


.bf-about-story__statement-content p {
	margin: 8px 0 0;

	color: #7b849c;

	font-size: 12px;

	font-weight: 700;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

	.bf-about-story {
		padding: 85px 0 90px;
	}


	.bf-about-story__container {
		width: calc(100% - 60px);
	}


	.bf-about-story__layout {
		grid-template-columns: 1fr;

		gap: 45px;
	}


	.bf-about-story__content {
		max-width: 750px;
	}


	.bf-about-story__statement {
		margin-top: 60px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-about-story {
		padding: 70px 0 75px;
	}


	.bf-about-story__container {
		width: calc(100% - 34px);
	}


	.bf-about-story__label {
		margin-bottom: 38px;
	}


	.bf-about-story__title {
		font-size: 11px;
	}


	.bf-about-story__heading h2 {
		font-size: clamp(
			45px,
			12vw,
			62px
		);
	}


	.bf-about-story__layout {
		gap: 32px;
	}


	.bf-about-story__content p {
		font-size: 13px;

		line-height: 1.8;

		margin-bottom: 18px;
	}


	.bf-about-story__statement {
		grid-template-columns: 1fr;

		gap: 18px;

		margin-top: 45px;

		padding: 25px 22px;
	}


	.bf-about-story__statement-mark {
		width: 48px;
		height: 48px;

		border-radius: 14px;

		font-size: 25px;
	}


	.bf-about-story__statement-content h3 {
		font-size: 25px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-about-story,
	.bf-about-story * {
		scroll-behavior: auto;
	}

}
/* ==========================================================
   BREFECT
   ABOUT PAGE — SECTION 03
   MISSION & VISION
   ========================================================== */

.bf-about-mv {
	position: relative;

	overflow: hidden;

	padding: 105px 0 110px;

	background:
		radial-gradient(
			circle at 8% 20%,
			rgba(49, 92, 255, 0.055),
			transparent 28%
		),
		radial-gradient(
			circle at 92% 80%,
			rgba(116, 76, 255, 0.065),
			transparent 30%
		),
		#ffffff;
}


.bf-about-mv__container {
	width: min(
		1360px,
		calc(100% - 90px)
	);

	margin: 0 auto;
}


/* ==========================================================
   LABEL
   ========================================================== */

.bf-about-mv__label {
	display: flex;

	align-items: center;

	gap: 13px;

	margin-bottom: 50px;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about-mv__number {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.16
	);

	border-radius: 12px;

	background:
		rgba(
			49,
			92,
			255,
			0.045
		);

	font-size: 11px;

	letter-spacing: 0;
}


.bf-about-mv__line {
	width: 38px;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);
}


/* ==========================================================
   INTRO
   ========================================================== */

.bf-about-mv__intro {
	max-width: 950px;

	margin-bottom: 75px;
}


.bf-about-mv__intro h2 {
	margin: 0;

	color: #101631;

	font-size: clamp(
		48px,
		6vw,
		82px
	);

	font-weight: 900;

	line-height: 0.94;

	letter-spacing: -0.065em;
}


.bf-about-mv__intro h2 span {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-about-mv__content {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		90px
		minmax(0, 1fr);

	align-items: stretch;
}


.bf-about-mv__item {
	padding: 38px 45px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.10
	);

	border-radius: 26px;

	background:
		linear-gradient(
			145deg,
			rgba(249,251,255,0.96),
			rgba(255,255,255,0.90)
		);

	box-shadow:
		0 22px 55px rgba(
			49,
			92,
			255,
			0.055
		);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}


.bf-about-mv__item:hover {
	transform: translateY(-6px);

	box-shadow:
		0 30px 70px rgba(
			49,
			92,
			255,
			0.09
		);
}


/* ==========================================================
   ITEM TOP
   ========================================================== */

.bf-about-mv__item-top {
	display: flex;

	align-items: center;

	justify-content: space-between;

	margin-bottom: 42px;
}


.bf-about-mv__item-number {
	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.12em;
}


.bf-about-mv__item-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 54px;
	height: 54px;

	border-radius: 16px;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	color: #ffffff;

	box-shadow:
		0 14px 30px rgba(
			49,
			92,
			255,
			0.18
		);
}


.bf-about-mv__item-icon svg {
	width: 25px;
	height: 25px;
}


/* ==========================================================
   ITEM CONTENT
   ========================================================== */

.bf-about-mv__item-label {
	display: block;

	margin-bottom: 14px;

	color: #315cff;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about-mv__item h3 {
	max-width: 500px;

	margin: 0 0 20px;

	color: #101631;

	font-size: clamp(
		32px,
		3.4vw,
		48px
	);

	font-weight: 900;

	line-height: 0.98;

	letter-spacing: -0.055em;
}


.bf-about-mv__item h3 span {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


.bf-about-mv__item p {
	max-width: 550px;

	margin: 0;

	color: #6e7996;

	font-size: 14px;

	line-height: 1.9;
}


/* ==========================================================
   CENTER DIVIDER
   ========================================================== */

.bf-about-mv__divider {
	position: relative;

	display: flex;

	align-items: center;
	justify-content: center;
}


.bf-about-mv__divider::before {
	content: "";

	position: absolute;

	top: 10%;

	bottom: 10%;

	width: 1px;

	background:
		linear-gradient(
			180deg,
			transparent,
			rgba(49,92,255,0.18),
			rgba(116,76,255,0.18),
			transparent
		);
}


.bf-about-mv__divider span {
	position: relative;

	z-index: 2;

	width: 13px;
	height: 13px;

	border: 2px solid #ffffff;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	box-shadow:
		0 0 0 7px rgba(
			49,
			92,
			255,
			0.07
		);
}


/* ==========================================================
   CLOSING
   ========================================================== */

.bf-about-mv__closing {
	display: grid;

	grid-template-columns:
		1fr
		auto
		1fr;

	align-items: center;

	gap: 25px;

	margin-top: 65px;
}


.bf-about-mv__closing-line {
	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(49,92,255,0.16)
		);
}


.bf-about-mv__closing-line:last-child {
	background:
		linear-gradient(
			90deg,
			rgba(116,76,255,0.16),
			transparent
		);
}


.bf-about-mv__closing p {
	margin: 0;

	color: #7a849e;

	font-size: 11px;

	font-weight: 700;

	text-align: center;

	white-space: nowrap;
}


.bf-about-mv__closing strong {
	color: #315cff;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

	.bf-about-mv {
		padding: 85px 0 90px;
	}


	.bf-about-mv__container {
		width: calc(100% - 60px);
	}


	.bf-about-mv__intro {
		margin-bottom: 55px;
	}


	.bf-about-mv__content {
		grid-template-columns: 1fr;

		gap: 25px;
	}


	.bf-about-mv__divider {
		display: none;
	}


	.bf-about-mv__item {
		padding: 32px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-about-mv {
		padding: 70px 0 75px;
	}


	.bf-about-mv__container {
		width: calc(100% - 34px);
	}


	.bf-about-mv__label {
		margin-bottom: 38px;
	}


	.bf-about-mv__intro {
		margin-bottom: 40px;
	}


	.bf-about-mv__intro h2 {
		font-size: clamp(
			45px,
			12vw,
			62px
		);
	}


	.bf-about-mv__item {
		padding: 25px 22px;

		border-radius: 21px;
	}


	.bf-about-mv__item-top {
		margin-bottom: 30px;
	}


	.bf-about-mv__item-icon {
		width: 48px;
		height: 48px;

		border-radius: 14px;
	}


	.bf-about-mv__item-icon svg {
		width: 22px;
		height: 22px;
	}


	.bf-about-mv__item h3 {
		font-size: 31px;
	}


	.bf-about-mv__item p {
		font-size: 13px;

		line-height: 1.8;
	}


	.bf-about-mv__closing {
		grid-template-columns: 1fr;

		gap: 15px;

		margin-top: 40px;
	}


	.bf-about-mv__closing-line {
		display: none;
	}


	.bf-about-mv__closing p {
		white-space: normal;

		line-height: 1.6;
	}

}
/* ==========================================================
   BREFECT
   ABOUT PAGE — SECTION 04
   FOUNDER
   ========================================================== */

.bf-about-founder {
	position: relative;

	overflow: hidden;

	padding: 110px 0 120px;

	background:
		radial-gradient(
			circle at 12% 55%,
			rgba(49, 92, 255, 0.065),
			transparent 28%
		),
		radial-gradient(
			circle at 88% 35%,
			rgba(116, 76, 255, 0.065),
			transparent 30%
		),
		#ffffff;
}


.bf-about-founder__container {
	width: min(
		1360px,
		calc(100% - 90px)
	);

	margin: 0 auto;
}


/* ==========================================================
   SECTION LABEL
   ========================================================== */

.bf-about-founder__label {
	display: flex;

	align-items: center;

	gap: 13px;

	margin-bottom: 60px;

	color: #315cff;

	font-size: 11px;

	font-weight: 900;

	letter-spacing: 0.17em;
}


.bf-about-founder__number {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.16
	);

	border-radius: 12px;

	background:
		rgba(
			49,
			92,
			255,
			0.045
		);

	font-size: 11px;

	letter-spacing: 0;
}


.bf-about-founder__line {
	width: 38px;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);
}


/* ==========================================================
   MAIN LAYOUT
   ========================================================== */

.bf-about-founder__layout {
	display: grid;

	grid-template-columns:
		minmax(420px, 0.9fr)
		minmax(0, 1fr);

	gap: 100px;

	align-items: center;
}


/* ==========================================================
   PHOTO AREA
   ========================================================== */

.bf-about-founder__visual {
	position: relative;

	max-width: 560px;

	margin: 0 auto;

	width: 100%;
}


.bf-about-founder__photo-wrap {
	position: relative;

	overflow: hidden;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.14
	);

	border-radius: 34px;

	background:
		linear-gradient(
			145deg,
			#f5f7ff,
			#ffffff
		);

	box-shadow:
		0 30px 80px rgba(
			49,
			92,
			255,
			0.12
		);

	isolation: isolate;
}


.bf-about-founder__photo {
	display: block;

	position: relative;

	z-index: 2;

	width: 100%;

	height: auto;

	aspect-ratio: 4 / 5;

	object-fit: cover;

	object-position: center top;

	transition:
		transform 0.6s ease;
}


.bf-about-founder__photo-wrap:hover
.bf-about-founder__photo {
	transform: scale(1.025);
}


.bf-about-founder__photo-glow {
	position: absolute;

	z-index: 1;

	width: 260px;
	height: 260px;

	right: -100px;
	bottom: -100px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(
				116,
				76,
				255,
				0.22
			),
			transparent 68%
		);

	filter: blur(12px);

	pointer-events: none;
}


/* ==========================================================
   PHOTO TAG
   ========================================================== */

.bf-about-founder__photo-tag {
	position: absolute;

	z-index: 5;

	right: -22px;
	bottom: 28px;

	display: flex;

	align-items: center;

	gap: 10px;

	padding: 13px 17px;

	border: 1px solid rgba(
		255,
		255,
		255,
		0.85
	);

	border-radius: 14px;

	background:
		rgba(
			255,
			255,
			255,
			0.90
		);

	box-shadow:
		0 16px 35px rgba(
			30,
			45,
			100,
			0.12
		);

	backdrop-filter: blur(15px);

	-webkit-backdrop-filter: blur(15px);

	color: #101631;

	font-size: 9px;

	font-weight: 900;

	letter-spacing: 0.12em;
}


.bf-about-founder__photo-dot {
	width: 7px;
	height: 7px;

	border-radius: 50%;

	background:
		linear-gradient(
			135deg,
			#315cff,
			#744cff
		);

	box-shadow:
		0 0 0 4px rgba(
			49,
			92,
			255,
			0.08
		);
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-about-founder__content {
	max-width: 650px;
}


.bf-about-founder__content h2 {
	margin: 0 0 28px;

	color: #101631;

	font-size: clamp(
		48px,
		5.5vw,
		78px
	);

	font-weight: 900;

	line-height: 0.96;

	letter-spacing: -0.065em;
}


.bf-about-founder__content h2 span {
	display: block;

	background:
		linear-gradient(
			90deg,
			#315cff,
			#744cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
}


/* ==========================================================
   IDENTITY
   ========================================================== */

.bf-about-founder__identity {
	display: flex;

	align-items: baseline;

	gap: 15px;

	margin-bottom: 32px;

	padding-bottom: 22px;

	border-bottom: 1px solid rgba(
		49,
		92,
		255,
		0.12
	);
}


.bf-about-founder__identity h3 {
	margin: 0;

	color: #101631;

	font-size: 22px;

	font-weight: 900;

	letter-spacing: -0.03em;
}


.bf-about-founder__identity span {
	color: #315cff;

	font-size: 10px;

	font-weight: 900;

	letter-spacing: 0.12em;
}


/* ==========================================================
   COPY
   ========================================================== */

.bf-about-founder__copy {
	max-width: 610px;
}


.bf-about-founder__copy p {
	margin: 0 0 21px;

	color: #6d7895;

	font-size: 15px;

	line-height: 1.9;
}


.bf-about-founder__copy p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   QUOTE
   ========================================================== */

.bf-about-founder__quote {
	position: relative;

	margin: 42px 0 0;

	padding: 28px 30px 28px 68px;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.13
	);

	border-radius: 22px;

	background:
		linear-gradient(
			135deg,
			rgba(244,247,255,0.95),
			rgba(250,248,255,0.95)
		);

	box-shadow:
		0 20px 50px rgba(
			49,
			92,
			255,
			0.05
		);
}


.bf-about-founder__quote-mark {
	position: absolute;

	top: 19px;
	left: 24px;

	color: #315cff;

	font-size: 48px;

	font-weight: 900;

	line-height: 1;
}


.bf-about-founder__quote p {
	margin: 0;

	color: #273253;

	font-size: 15px;

	font-weight: 700;

	line-height: 1.7;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-about-founder {
		padding: 90px 0 100px;
	}


	.bf-about-founder__container {
		width: calc(100% - 60px);
	}


	.bf-about-founder__layout {
		grid-template-columns: 1fr;

		gap: 60px;
	}


	.bf-about-founder__visual {
		max-width: 600px;
	}


	.bf-about-founder__content {
		max-width: 750px;
	}

}


/* ==========================================================
   MOBILE — FOUNDER
   ========================================================== */

@media (max-width: 600px) {

	.bf-about-founder {
		padding: 50px 0 60px;
	}

	.bf-about-founder__container {
		width: calc(100% - 34px);
	}

	.bf-about-founder__label {
		margin-bottom: 32px;
	}

	/* MAIN LAYOUT */

	.bf-about-founder__layout {
		display: flex;
		flex-direction: column;
		gap: 32px;
		width: 100%;
	}

	/* FOUNDER PHOTO */

	.bf-about-founder__visual {
		width: 100%;
		max-width: 100%;
	}

	.bf-about-founder__photo-wrap {
		width: 100%;
		height: 390px;
		aspect-ratio: auto;
		border-radius: 24px;
		overflow: hidden;
	}

	.bf-about-founder__photo {
		display: block;
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
		object-position: center top;
	}

	/* PHOTO TAG */

	.bf-about-founder__photo-tag {
		right: 12px;
		bottom: 12px;
		padding: 10px 12px;
		font-size: 8px;
	}

	/* CONTENT */

	.bf-about-founder__content {
		width: 100%;
		max-width: 100%;
	}

	.bf-about-founder__content h2 {
		margin-bottom: 22px;
		font-size: clamp(42px, 11vw, 58px);
		line-height: 0.96;
	}

	.bf-about-founder__identity {
		flex-wrap: wrap;
		gap: 8px;
		margin-bottom: 24px;
	}

	.bf-about-founder__copy p {
		font-size: 13px;
		line-height: 1.8;
	}

	/* FOUNDER QUOTE */

	.bf-about-founder__quote {
		margin-top: 28px;
		padding: 22px 18px 22px 50px;
		border-radius: 18px;
	}

	.bf-about-founder__quote-mark {
		left: 17px;
		font-size: 36px;
	}

	.bf-about-founder__quote p {
		font-size: 13px;
		line-height: 1.7;
	}

}
/* ==========================================================
   ABOUT PAGE — COMPACT SECTION SPACING
   ========================================================== */

.bf-about-page > section {
	margin: 0;
}

.bf-about-story,
.bf-about-mv,
.bf-about-founder {
	padding-top: 75px;
	padding-bottom: 75px;
}

@media (max-width: 900px) {

	.bf-about-page > section {
		margin: 0;
	}

	.bf-about-story,
	.bf-about-mv,
	.bf-about-founder {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media (max-width: 600px) {

	.bf-about-page > section {
		margin: 0;
	}

	.bf-about-story,
	.bf-about-mv,
	.bf-about-founder {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
/* ==========================================================
   BREFECT — FOUNDER CERTIFICATIONS
   ========================================================== */

.bf-about-founder__certifications {
	margin-top: 32px;
	width: 100%;
}


.bf-about-founder__cert-heading {
	display: flex;
	align-items: center;
	gap: 11px;

	margin-bottom: 12px;

	color: #315cff;

	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.15em;
}


.bf-about-founder__cert-heading i {
	display: block;

	width: 34px;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			#315cff,
			rgba(116, 76, 255, 0.15)
		);
}


/* ==========================================================
   HORIZONTAL CERTIFICATE STRIP
   ========================================================== */

.bf-about-founder__cert-scroll {
	display: flex;
	align-items: center;
	gap: 10px;

	width: 100%;

	overflow-x: auto;

	padding: 2px 2px 8px;

	scroll-behavior: smooth;

	-webkit-overflow-scrolling: touch;

	scrollbar-width: thin;

	scrollbar-color:
		rgba(49, 92, 255, 0.18)
		transparent;
}


.bf-about-founder__cert-scroll::-webkit-scrollbar {
	height: 3px;
}


.bf-about-founder__cert-scroll::-webkit-scrollbar-track {
	background: transparent;
}


.bf-about-founder__cert-scroll::-webkit-scrollbar-thumb {
	border-radius: 20px;

	background:
		rgba(49, 92, 255, 0.18);
}


/* ==========================================================
   CERTIFICATE
   ========================================================== */

.bf-about-founder__cert {
	flex: 0 0 105px;

	width: 105px;
	height: 70px;

	overflow: hidden;

	border: 1px solid rgba(
		49,
		92,
		255,
		0.12
	);

	border-radius: 10px;

	background: #ffffff;

	box-shadow:
		0 7px 20px rgba(
			49,
			92,
			255,
			0.06
		);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}


.bf-about-founder__cert:hover {
	transform: translateY(-3px);

	box-shadow:
		0 12px 28px rgba(
			49,
			92,
			255,
			0.12
		);
}


.bf-about-founder__cert a {
	display: block;

	width: 100%;
	height: 100%;
}


.bf-about-founder__cert img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	object-position: center;

	transition:
		transform 0.3s ease;
}


.bf-about-founder__cert:hover img {
	transform: scale(1.04);
}


/* ==========================================================
   MOBILE — SIDE SWIPE
   ========================================================== */

@media (max-width: 600px) {

	.bf-about-founder__certifications {
		margin-top: 27px;
	}


	.bf-about-founder__cert-heading {
		margin-bottom: 10px;

		font-size: 8px;
	}


	.bf-about-founder__cert-scroll {
		gap: 8px;

		margin-right: -17px;

		padding-right: 17px;

		scroll-snap-type: x proximity;

		scrollbar-width: none;
	}


	.bf-about-founder__cert-scroll::-webkit-scrollbar {
		display: none;
	}


	.bf-about-founder__cert {
		flex-basis: 105px;

		width: 105px;
		height: 72px;

		border-radius: 9px;

		scroll-snap-align: start;
	}

}
/* ==========================================================
   ABOUT PAGE — SECTION 05 — WHY BREFECT
   PREMIUM SCROLL SECTION
   ========================================================== */

.bf-about-why {
	position: relative;
	padding: 140px 0 130px;
	background:
		radial-gradient(
			circle at 82% 18%,
			rgba(49, 92, 255, 0.08),
			transparent 30%
		),
		radial-gradient(
			circle at 15% 82%,
			rgba(138, 77, 255, 0.06),
			transparent 28%
		),
		var(--bf-white);
	overflow: hidden;
}

.bf-about-why__container {
	position: relative;
	z-index: 2;
	width: min(
		calc(100% - (var(--bf-gutter) * 2)),
		var(--bf-container)
	);
	margin-inline: auto;
}


/* ==========================================================
   AMBIENT BACKGROUND
   ========================================================== */

.bf-about-why__ambient {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.bf-about-why__orb {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.45;
	will-change: transform;
}

.bf-about-why__orb--one {
	top: 12%;
	right: -130px;
	width: 330px;
	height: 330px;
	background:
		radial-gradient(
			circle at 35% 35%,
			rgba(49, 92, 255, 0.18),
			rgba(138, 77, 255, 0.06) 48%,
			transparent 72%
		);
	animation: bfWhyOrbOne 10s ease-in-out infinite alternate;
}

.bf-about-why__orb--two {
	bottom: 8%;
	left: -170px;
	width: 300px;
	height: 300px;
	background:
		radial-gradient(
			circle at 60% 40%,
			rgba(138, 77, 255, 0.13),
			rgba(49, 92, 255, 0.04) 48%,
			transparent 72%
		);
	animation: bfWhyOrbTwo 12s ease-in-out infinite alternate;
}

@keyframes bfWhyOrbOne {

	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(-35px, 25px, 0) scale(1.08);
	}
}

@keyframes bfWhyOrbTwo {

	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(35px, -20px, 0) scale(1.06);
	}
}


/* ==========================================================
   SECTION LABEL
   ========================================================== */

.bf-about-why__label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 64px;

	color: var(--bf-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.bf-about-why__number {
	color: var(--bf-blue);
	font-weight: 800;
}

.bf-about-why__line {
	width: 52px;
	height: 1px;
	background: var(--bf-border);
}


/* ==========================================================
   INTRO
   ========================================================== */

.bf-about-why__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 90px;
	align-items: end;
	margin-bottom: 105px;
}

.bf-about-why__heading {
	position: relative;
}

.bf-about-why__small-title {
	display: block;
	margin-bottom: 10px;

	color: var(--bf-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.bf-about-why__heading h2 {
	margin: 0;

	color: var(--bf-navy);
	font-size: clamp(58px, 8vw, 108px);
	font-weight: 700;
	line-height: 0.88;
	letter-spacing: -0.065em;
}

.bf-about-why__heading h2 span {
	display: inline-block;
	background: var(--bf-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bf-about-why__intro-copy {
	position: relative;
	max-width: 480px;
	padding: 30px 0 5px 30px;
	border-left: 1px solid var(--bf-border);
}

.bf-about-why__intro-mark {
	position: absolute;
	top: 22px;
	left: -8px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 16px;
	height: 16px;

	border-radius: 50%;
	background: var(--bf-gradient);

	color: var(--bf-white);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.bf-about-why__intro-copy p {
	margin: 0;

	color: var(--bf-text);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.75;
}


/* ==========================================================
   POINTS GRID
   ========================================================== */

.bf-about-why__points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	border-top: 1px solid var(--bf-border);
}

.bf-about-why__point {
	position: relative;

	display: grid;
	grid-template-columns: 55px minmax(0, 1fr);

	gap: 25px;

	min-height: 275px;

	padding: 44px 50px 48px 0;

	border-bottom: 1px solid var(--bf-border);

	transition:
		transform 400ms var(--bf-ease),
		background-color 400ms ease;
}

.bf-about-why__point:nth-child(odd) {
	padding-right: 60px;
	border-right: 1px solid var(--bf-border);
}

.bf-about-why__point:nth-child(even) {
	padding-left: 50px;
}

.bf-about-why__point::before {
	position: absolute;
	top: -1px;
	left: 0;

	width: 0;
	height: 2px;

	background: var(--bf-gradient);

	content: "";

	transition: width 500ms var(--bf-ease);
}

.bf-about-why__point:hover::before {
	width: 100%;
}

.bf-about-why__point:hover {
	transform: translateY(-5px);
}


/* ==========================================================
   NUMBER
   ========================================================== */

.bf-about-why__point-number {
	position: relative;

	padding-top: 4px;

	color: var(--bf-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.bf-about-why__point-number::after {
	position: absolute;
	top: 5px;
	right: 0;

	width: 7px;
	height: 7px;

	border-radius: 50%;

	background: var(--bf-gradient);

	content: "";

	opacity: 0;
	transform: scale(0.3);

	transition:
		opacity 300ms ease,
		transform 300ms ease;
}

.bf-about-why__point:hover .bf-about-why__point-number::after {
	opacity: 1;
	transform: scale(1);
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-about-why__point-content h3 {
	max-width: 480px;

	margin: 0 0 17px;

	color: var(--bf-navy);

	font-size: clamp(22px, 2vw, 29px);
	font-weight: 700;
	line-height: 1.15;

	letter-spacing: -0.03em;

	transition: color 300ms ease;
}

.bf-about-why__point:hover .bf-about-why__point-content h3 {
	color: var(--bf-blue);
}

.bf-about-why__point-content p {
	max-width: 500px;

	margin: 0;

	color: var(--bf-muted);

	font-size: 15px;
	line-height: 1.85;
}


/* ==========================================================
   ARROW
   ========================================================== */

.bf-about-why__point-arrow {
	position: absolute;
	right: 28px;
	bottom: 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	border: 1px solid var(--bf-border);
	border-radius: 50%;

	color: var(--bf-navy);
	font-size: 15px;

	opacity: 0;
	transform: translate(-8px, 8px);

	transition:
		opacity 300ms ease,
		transform 300ms ease,
		background-color 300ms ease,
		color 300ms ease;
}

.bf-about-why__point:hover .bf-about-why__point-arrow {
	opacity: 1;
	transform: translate(0, 0);
	background: var(--bf-navy);
	color: var(--bf-white);
}


/* ==========================================================
   BOTTOM STATEMENT
   ========================================================== */

.bf-about-why__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;

	margin-top: 72px;
}

.bf-about-why__bottom > span {
	display: block;
	height: 1px;
	background: var(--bf-border);
}

.bf-about-why__bottom p {
	max-width: 460px;
	margin: 0;

	color: var(--bf-muted);
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
}

.bf-about-why__bottom strong {
	color: var(--bf-navy);
}


/* ==========================================================
   SCROLL REVEAL
   ========================================================== */

.bf-why-reveal {
	opacity: 0;
	transform: translate3d(0, 45px, 0);

	transition:
		opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);

	transition-delay: var(--bf-why-delay, 0ms);
}

.bf-why-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-about-why {
		padding: 105px 0 110px;
	}

	.bf-about-why__intro {
		grid-template-columns: 1fr;
		gap: 35px;
		margin-bottom: 75px;
	}

	.bf-about-why__heading h2 {
		font-size: clamp(58px, 11vw, 90px);
	}

	.bf-about-why__intro-copy {
		max-width: 650px;
	}

	.bf-about-why__point {
		padding-right: 30px;
	}

	.bf-about-why__point:nth-child(odd) {
		padding-right: 30px;
	}

	.bf-about-why__point:nth-child(even) {
		padding-left: 30px;
	}

	.bf-about-why__point-arrow {
		opacity: 1;
		transform: none;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-about-why {
		padding: 82px 0 88px;
	}

	.bf-about-why__label {
		margin-bottom: 46px;
	}

	.bf-about-why__intro {
		gap: 30px;
		margin-bottom: 58px;
	}

	.bf-about-why__heading h2 {
		font-size: clamp(52px, 15vw, 76px);
		line-height: 0.9;
	}

	.bf-about-why__small-title {
		font-size: 10px;
	}

	.bf-about-why__intro-copy {
		padding: 25px 0 0 22px;
	}

	.bf-about-why__intro-copy p {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-about-why__points {
		grid-template-columns: 1fr;
	}

	.bf-about-why__point,
	.bf-about-why__point:nth-child(odd),
	.bf-about-why__point:nth-child(even) {
		grid-template-columns: 38px minmax(0, 1fr);

		gap: 17px;

		min-height: auto;

		padding: 34px 0;

		border-right: 0;
	}

	.bf-about-why__point-content h3 {
		font-size: 21px;
		line-height: 1.2;
	}

	.bf-about-why__point-content p {
		font-size: 14px;
		line-height: 1.75;
	}

	.bf-about-why__point-arrow {
		right: 0;
		bottom: 25px;

		width: 30px;
		height: 30px;

		font-size: 13px;
	}

	.bf-about-why__bottom {
		grid-template-columns: 1fr;
		gap: 18px;

		margin-top: 55px;
	}

	.bf-about-why__bottom > span {
		width: 100%;
	}

	.bf-about-why__bottom p {
		font-size: 13px;
	}
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.bf-about-why {
		padding: 70px 0 76px;
	}

	.bf-about-why__label {
		gap: 10px;
		font-size: 10px;
	}

	.bf-about-why__line {
		width: 30px;
	}

	.bf-about-why__heading h2 {
		font-size: clamp(48px, 15vw, 64px);
	}

	.bf-about-why__intro-copy p {
		font-size: 14px;
	}

	.bf-about-why__point,
	.bf-about-why__point:nth-child(odd),
	.bf-about-why__point:nth-child(even) {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 15px;
		padding: 29px 0;
	}

	.bf-about-why__point-content h3 {
		font-size: 19px;
	}

	.bf-about-why__point-content p {
		font-size: 13px;
		line-height: 1.7;
	}

	.bf-about-why__orb--one {
		right: -190px;
	}

	.bf-about-why__orb--two {
		left: -190px;
	}
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-about-why__orb--one,
	.bf-about-why__orb--two {
		animation: none;
	}

	.bf-why-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.bf-about-why__point {
		transition: none;
	}
}
/* ==========================================================
   WHY BREFECT — VISIBILITY FIX
   ========================================================== */

.bf-about-why .bf-why-reveal {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.bf-about-why .bf-about-why__point {
	opacity: 1;
	transform: none;
}
/* ==========================================================
   ABOUT PAGE — TESTIMONIAL GAP FIX
   ========================================================== */

.bf-testimonials {
	padding-top: 35px !important;
	margin-top: 0 !important;
}

.bf-testimonials__intro {
	margin-top: 0 !important;
}
/* ABOUT — REDUCE SPACE BEFORE TESTIMONIALS */

.bf-testimonials {
	margin-top: -40px !important;
}
/* ==========================================================
   BREFECT — ABOUT FINAL BUSINESS CTA
   ========================================================== */

.bf-about-final-cta {
	position: relative;
	overflow: hidden;
	padding: 55px 0 65px;
}


/* ==========================================================
   MAIN CARD
   ========================================================== */

.bf-about-final-cta__inner {
	position: relative;

	display: grid;
	grid-template-columns: 46% 54%;
	align-items: center;

	min-height: 560px;

	overflow: hidden;

	padding: 60px 55px;

	border: 1px solid rgba(66, 99, 255, 0.10);
	border-radius: 38px;

	background:
		radial-gradient(
			circle at 75% 50%,
			rgba(76, 99, 255, 0.14),
			transparent 36%
		),
		linear-gradient(
			135deg,
			#ffffff 0%,
			#f7f7ff 100%
		);

	box-shadow:
		0 30px 90px rgba(30, 40, 100, 0.09);
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.bf-about-final-cta__content {
	position: relative;
	z-index: 5;

	max-width: 610px;
}

.bf-about-final-cta__eyebrow {
	display: inline-block;

	margin-bottom: 20px;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;

	color: #4263ff;
}

.bf-about-final-cta__title {
	margin: 0;

	font-size: clamp(48px, 5.4vw, 76px);
	font-weight: 900;
	line-height: .94;

	letter-spacing: -.055em;

	color: #0b1233;
}

.bf-about-final-cta__title span {
	display: block;

	color: #4263ff;
}

.bf-about-final-cta__text {
	max-width: 520px;

	margin: 24px 0 0;

	font-size: 16px;
	line-height: 1.65;

	color: #68708c;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.bf-about-final-cta__actions {
	display: flex;
	gap: 12px;

	margin-top: 32px;
}

.bf-about-final-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	gap: 35px;

	min-width: 155px;

	padding: 16px 19px;

	border-radius: 14px;

	font-size: 13px;
	font-weight: 800;

	text-decoration: none;

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.bf-about-final-cta__button:hover {
	transform: translateY(-4px);
}

.bf-about-final-cta__button--call {
	background: #0b1233;
	color: #ffffff;

	box-shadow:
		0 15px 35px rgba(11, 18, 51, .18);
}

.bf-about-final-cta__button--whatsapp {
	background: #4263ff;
	color: #ffffff;

	box-shadow:
		0 15px 35px rgba(66, 99, 255, .22);
}


/* ==========================================================
   RIGHT VISUAL
   ========================================================== */

.bf-about-final-cta__visual {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	height: 100%;

	min-height: 500px;

	overflow: visible;
}

.bf-about-final-cta__visual-glow {
	position: absolute;

	width: 380px;
	height: 380px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(66, 99, 255, .25) 0%,
			rgba(132, 93, 255, .10) 40%,
			transparent 72%
		);

	filter: blur(10px);

	animation: bfAboutCtaGlow 6s ease-in-out infinite;
}

.bf-about-final-cta__image {
	position: relative;
	z-index: 2;

	display: block;

	width: 100%;
	max-width: 650px;
	height: auto;

	object-fit: contain;

	transform: translateY(8px);

	animation: bfAboutCtaCharacter 5s ease-in-out infinite;

	filter:
		drop-shadow(
			0 25px 40px rgba(45, 58, 150, .12)
		);
}


/* ==========================================================
   ANIMATION
   ========================================================== */

@keyframes bfAboutCtaCharacter {

	0%,
	100% {
		transform: translateY(8px);
	}

	50% {
		transform: translateY(-8px);
	}

}

@keyframes bfAboutCtaGlow {

	0%,
	100% {
		transform: scale(1);
		opacity: .8;
	}

	50% {
		transform: scale(1.08);
		opacity: 1;
	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-about-final-cta__inner {
		grid-template-columns: 1fr 1fr;

		padding: 50px 40px;

		min-height: 520px;
	}

	.bf-about-final-cta__title {
		font-size: clamp(44px, 6vw, 64px);
	}

	.bf-about-final-cta__visual {
		min-height: 430px;
	}

	.bf-about-final-cta__image {
		max-width: 540px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.bf-about-final-cta {
		padding: 35px 0 40px;
	}

	.bf-about-final-cta__inner {
		display: flex;
		flex-direction: column;

		min-height: auto;

		padding: 40px 22px 25px;

		border-radius: 28px;
	}

	.bf-about-final-cta__content {
		width: 100%;
	}

	.bf-about-final-cta__eyebrow {
		margin-bottom: 16px;

		font-size: 10px;
	}

	.bf-about-final-cta__title {
		font-size: clamp(42px, 11vw, 56px);

		line-height: .96;
	}

	.bf-about-final-cta__text {
		margin-top: 18px;

		font-size: 14px;
		line-height: 1.6;
	}

	.bf-about-final-cta__actions {
		margin-top: 24px;

		width: 100%;
	}

	.bf-about-final-cta__button {
		flex: 1;

		min-width: 0;

		padding: 14px 13px;

		gap: 8px;
	}

	.bf-about-final-cta__visual {
		width: 100%;

		min-height: 350px;

		margin-top: 15px;
	}

	.bf-about-final-cta__visual-glow {
		width: 280px;
		height: 280px;
	}

	.bf-about-final-cta__image {
		width: 115%;
		max-width: 500px;

		transform: translateY(0);
	}

}
/* ==========================================================
   BREFECT — FINAL CTA OUTER SPACING RESET
   ========================================================== */

/* Remove extra space before CTA */
.bf-about-final-cta {
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* Remove extra space around the CTA container */
.bf-about-final-cta .bf-container {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* Keep only the CTA card's own spacing */
.bf-about-final-cta__inner {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}


/* ==========================================================
   TESTIMONIAL → CTA
   ========================================================== */

.bf-testimonials {
	margin-bottom: 0 !important;
	padding-bottom: 20px !important;
}


/* ==========================================================
   CTA → FOOTER
   ========================================================== */

.bf-about-final-cta + footer {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.bf-about-final-cta + * {
	margin-top: 0;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.bf-about-final-cta {
		margin-top: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.bf-about-final-cta .bf-container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.bf-testimonials {
		padding-bottom: 15px !important;
	}

}
/* ==========================================================
   BREFECT — BLOG LISTING
   Premium 3D Editorial Grid
   ========================================================== */

/* ----------------------------------------------------------
   BLOG HERO
   ---------------------------------------------------------- */

.bf-blog-page {
	width: 100%;
	overflow: hidden;
}

.bf-blog-hero {
	position: relative;
	padding: 110px 0 70px;
	background:
		radial-gradient(
			circle at 15% 50%,
			rgba(74, 90, 255, 0.10),
			transparent 35%
		),
		radial-gradient(
			circle at 85% 30%,
			rgba(139, 92, 246, 0.10),
			transparent 35%
		),
		#ffffff;
}

.bf-blog-hero__inner {
	max-width: 850px;
}

.bf-blog-hero__title {
	max-width: 800px;
	margin: 18px 0 20px;
	font-size: clamp(44px, 6vw, 82px);
	line-height: 0.98;
	letter-spacing: -0.045em;
}

.bf-blog-hero__description {
	max-width: 680px;
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #65708a;
}


/* ----------------------------------------------------------
   CATEGORY FILTER
   ---------------------------------------------------------- */

.bf-blog-filter {
	padding: 0 0 55px;
	background: #ffffff;
}

.bf-blog-filter__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.bf-blog-filter__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid #e1e5ef;
	border-radius: 999px;
	background: #ffffff;
	color: #111936;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-blog-filter__item:hover {
	transform: translateY(-3px);
	border-color: #4b5cff;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
	box-shadow: 0 12px 25px rgba(68, 83, 255, 0.18);
}

.bf-blog-filter__item--active {
	border-color: transparent;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
	box-shadow: 0 10px 24px rgba(68, 83, 255, 0.18);
}


/* ----------------------------------------------------------
   BLOG POSTS SECTION
   ---------------------------------------------------------- */

.bf-blog-posts {
	padding: 30px 0 120px;
	background:
		radial-gradient(
			circle at 10% 10%,
			rgba(79, 70, 229, 0.035),
			transparent 30%
		),
		#ffffff;
}


/* ----------------------------------------------------------
   3 COLUMN GRID
   ---------------------------------------------------------- */

.bf-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}


/* ----------------------------------------------------------
   BLOG CARD
   ---------------------------------------------------------- */

.bf-blog-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid #e5e8f0;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow:
		0 12px 35px rgba(20, 30, 65, 0.055),
		0 2px 8px rgba(20, 30, 65, 0.035);
	overflow: hidden;
	transform: translateZ(0);
	transition:
		transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.45s ease,
		border-color 0.35s ease;
}

.bf-blog-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	background:
		linear-gradient(
			135deg,
			rgba(49, 92, 255, 0.08),
			transparent 35%,
			rgba(113, 75, 255, 0.07)
		);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.bf-blog-card:hover {
	transform:
		translateY(-10px)
		rotateX(1deg)
		rotateY(-1deg);
	border-color: rgba(73, 91, 255, 0.28);
	box-shadow:
		0 28px 60px rgba(25, 37, 90, 0.13),
		0 8px 20px rgba(55, 70, 180, 0.08);
}

.bf-blog-card:hover::before {
	opacity: 1;
}


/* ----------------------------------------------------------
   IMAGE
   ---------------------------------------------------------- */

.bf-blog-card__media {
	position: relative;
	z-index: 1;
	padding: 12px 12px 0;
}

.bf-blog-card__image-link {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	border-radius: 18px;
	overflow: hidden;
	background: #eef1f8;
}

.bf-blog-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition:
		transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
		filter 0.4s ease;
}

.bf-blog-card:hover .bf-blog-card__image {
	transform: scale(1.07);
	filter: saturate(1.08);
}

.bf-blog-card__image-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			transparent 55%,
			rgba(10, 17, 45, 0.28)
		);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.bf-blog-card:hover .bf-blog-card__image-link::after {
	opacity: 1;
}


/* ----------------------------------------------------------
   IMAGE PLACEHOLDER
   ---------------------------------------------------------- */

.bf-blog-card__image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(
			circle at 30% 30%,
			rgba(49, 92, 255, 0.28),
			transparent 35%
		),
		linear-gradient(
			135deg,
			#eef2ff,
			#f5f3ff
		);
	color: #315cff;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.12em;
}


/* ----------------------------------------------------------
   CARD CONTENT
   ---------------------------------------------------------- */

.bf-blog-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px 26px 28px;
}

.bf-blog-card__category {
	align-self: flex-start;
	margin-bottom: 15px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(49, 92, 255, 0.08);
	color: #315cff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.bf-blog-card__category:hover {
	color: #ffffff;
	background: #315cff;
}


/* ----------------------------------------------------------
   TITLE
   ---------------------------------------------------------- */

.bf-blog-card__title {
	margin: 0 0 13px;
	font-size: clamp(22px, 2vw, 29px);
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.bf-blog-card__title a {
	color: #0d1535;
	text-decoration: none;
	transition: color 0.25s ease;
}

.bf-blog-card__title a:hover {
	color: #315cff;
}


/* ----------------------------------------------------------
   META
   ---------------------------------------------------------- */

.bf-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 17px;
	color: #7a849a;
	font-size: 12px;
	font-weight: 600;
}

.bf-blog-card__excerpt {
	margin: 0 0 24px;
	color: #65708a;
	font-size: 14px;
	line-height: 1.7;
}


/* ----------------------------------------------------------
   READ ARTICLE
   ---------------------------------------------------------- */

.bf-blog-card__read {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid #edf0f5;
	color: #111936;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: color 0.25s ease;
}

.bf-blog-card__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f3ff;
	color: #315cff;
	font-size: 18px;
	transition:
		transform 0.3s ease,
		background 0.3s ease,
		color 0.3s ease;
}

.bf-blog-card:hover .bf-blog-card__read {
	color: #315cff;
}

.bf-blog-card:hover .bf-blog-card__arrow {
	transform: translateX(5px);
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
}


/* ----------------------------------------------------------
   PAGINATION
   ---------------------------------------------------------- */

.bf-blog-pagination {
	display: flex;
	justify-content: center;
	margin-top: 65px;
}

.bf-blog-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-blog-pagination .page-numbers li {
	margin: 0;
	padding: 0;
}

.bf-blog-pagination .page-numbers a,
.bf-blog-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 13px;
	border: 1px solid #e1e5ef;
	border-radius: 12px;
	background: #ffffff;
	color: #111936;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}

.bf-blog-pagination .page-numbers a:hover {
	transform: translateY(-3px);
	border-color: #315cff;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
}

.bf-blog-pagination .page-numbers .current {
	border-color: transparent;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
	box-shadow: 0 10px 22px rgba(68, 83, 255, 0.18);
}


/* ----------------------------------------------------------
   EMPTY STATE
   ---------------------------------------------------------- */

.bf-blog-empty {
	max-width: 700px;
	margin: 40px auto 0;
	padding: 80px 30px;
	border: 1px solid #e5e8f0;
	border-radius: 28px;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 20px 50px rgba(20, 30, 65, 0.06);
}

.bf-blog-empty h2 {
	margin: 18px 0 12px;
	font-size: clamp(32px, 5vw, 52px);
	color: #0d1535;
}

.bf-blog-empty p {
	margin: 0;
	color: #65708a;
	font-size: 16px;
	line-height: 1.7;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.bf-blog-hero {
		padding: 85px 0 55px;
	}

	.bf-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.bf-blog-card__content {
		padding: 23px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.bf-blog-hero {
		padding: 65px 0 45px;
	}

	.bf-blog-hero__title {
		font-size: clamp(38px, 12vw, 58px);
	}

	.bf-blog-hero__description {
		font-size: 15px;
		line-height: 1.65;
	}

	.bf-blog-filter {
		padding-bottom: 35px;
	}

	.bf-blog-filter__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 8px;
		scrollbar-width: none;
	}

	.bf-blog-filter__nav::-webkit-scrollbar {
		display: none;
	}

	.bf-blog-filter__item {
		flex: 0 0 auto;
	}

	.bf-blog-posts {
		padding: 15px 0 80px;
	}

	.bf-blog-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.bf-blog-card {
		border-radius: 22px;
	}

	.bf-blog-card:hover {
		transform: translateY(-5px);
	}

	.bf-blog-card__media {
		padding: 9px 9px 0;
	}

	.bf-blog-card__image-link {
		border-radius: 16px;
	}

	.bf-blog-card__content {
		padding: 22px 20px 23px;
	}

	.bf-blog-card__title {
		font-size: 25px;
	}

	.bf-blog-card__excerpt {
		font-size: 14px;
	}

	.bf-blog-pagination {
		margin-top: 45px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-blog-card,
	.bf-blog-card__image,
	.bf-blog-card__arrow,
	.bf-blog-filter__item,
	.bf-blog-card__read {
		transition: none;
	}

	.bf-blog-card:hover {
		transform: none;
	}

	.bf-blog-card:hover .bf-blog-card__image {
		transform: none;
	}

}
/* ==========================================================
   BREFECT BLOG — TIGHTER HERO TO POSTS SPACING
   ========================================================== */

.bf-blog-hero {
	padding-top: 75px;
	padding-bottom: 35px;
}

.bf-blog-filter {
	padding-bottom: 25px;
}

.bf-blog-posts {
	padding-top: 10px;
}

@media (max-width: 700px) {

	.bf-blog-hero {
		padding-top: 50px;
		padding-bottom: 25px;
	}

	.bf-blog-filter {
		padding-bottom: 20px;
	}

	.bf-blog-posts {
		padding-top: 5px;
	}
}
/* ==========================================================
   BREFECT BLOG — MOBILE COMPACT CARDS
   ========================================================== */

@media (max-width: 700px) {

	.bf-blog-card__content {
		padding: 18px 18px 20px;
	}

	.bf-blog-card__category {
		margin-bottom: 11px;
		padding: 6px 10px;
		font-size: 10px;
	}

	.bf-blog-card__title {
		margin-bottom: 10px;
		font-size: 23px;
		line-height: 1.12;
	}

	.bf-blog-card__meta {
		margin-bottom: 10px;
		font-size: 11px;
	}

	.bf-blog-card__excerpt {
		margin-bottom: 14px;
		font-size: 13px;
		line-height: 1.55;

		/* Only 3 lines on mobile */
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		overflow: hidden;
	}

	.bf-blog-card__read {
		padding-top: 14px;
		font-size: 13px;
	}

	.bf-blog-card__arrow {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}

}
/* ==========================================================
   BREFECT — SINGLE BLOG POST
   Premium Editorial Layout
   ========================================================== */

.bf-single-blog {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	color: #0d1535;
}


/* ==========================================================
   ARTICLE HEADER
   ========================================================== */

.bf-single-blog__header {
	padding: 80px 0 55px;
	background:
		radial-gradient(
			circle at 15% 35%,
			rgba(49, 92, 255, 0.08),
			transparent 32%
		),
		radial-gradient(
			circle at 85% 25%,
			rgba(113, 75, 255, 0.09),
			transparent 35%
		),
		#ffffff;
}

.bf-single-blog__header-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.bf-single-blog__category {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(49, 92, 255, 0.08);
	color: #315cff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	text-decoration: none;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.bf-single-blog__category:hover {
	transform: translateY(-2px);
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
}

.bf-single-blog__title {
	max-width: 900px;
	margin: 22px auto 20px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.99;
	letter-spacing: -0.055em;
	color: #0d1535;
}

.bf-single-blog__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #71809a;
	font-size: 13px;
	font-weight: 600;
}


/* ==========================================================
   FEATURED IMAGE
   ========================================================== */

.bf-single-blog__featured {
	padding: 15px 0 70px;
}

.bf-single-blog__featured-image {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	border: 1px solid #e5e8f0;
	border-radius: 28px;
	overflow: hidden;
	background: #f2f4f9;
	box-shadow:
		0 25px 70px rgba(20, 30, 65, 0.10),
		0 5px 18px rgba(20, 30, 65, 0.05);
}

.bf-single-blog__featured-image::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(
			135deg,
			rgba(49, 92, 255, 0.08),
			transparent 40%,
			rgba(113, 75, 255, 0.08)
		);
}

.bf-single-blog__featured-img {
	display: block;
	width: 100%;
	max-height: 650px;
	object-fit: cover;
}


/* ==========================================================
   ARTICLE CONTENT
   ========================================================== */

.bf-single-blog__article-section {
	padding: 10px 0 80px;
}

.bf-single-blog__layout {
	max-width: 900px;
	margin: 0 auto;
}

.bf-single-blog__article {
	min-width: 0;
}

.bf-single-blog__content {
	max-width: 780px;
	margin: 0 auto;
	color: #4e5d78;
	font-size: 17px;
	line-height: 1.9;
}

.bf-single-blog__content > * {
	max-width: 100%;
}

.bf-single-blog__content p {
	margin: 0 0 25px;
}

.bf-single-blog__content h2 {
	margin: 52px 0 20px;
	color: #0d1535;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.bf-single-blog__content h3 {
	margin: 38px 0 16px;
	color: #0d1535;
	font-size: 26px;
	line-height: 1.2;
}

.bf-single-blog__content h4 {
	margin: 30px 0 14px;
	color: #0d1535;
	font-size: 21px;
}

.bf-single-blog__content ul,
.bf-single-blog__content ol {
	margin: 0 0 28px;
	padding-left: 25px;
}

.bf-single-blog__content li {
	margin-bottom: 10px;
}

.bf-single-blog__content a {
	color: #315cff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.bf-single-blog__content blockquote {
	margin: 38px 0;
	padding: 28px 30px;
	border-left: 4px solid #4b5cff;
	border-radius: 0 18px 18px 0;
	background: linear-gradient(
		135deg,
		#f4f6ff,
		#faf9ff
	);
	color: #26345b;
	font-size: 20px;
	line-height: 1.6;
}

.bf-single-blog__content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 35px auto;
	border-radius: 18px;
}

.bf-single-blog__content pre {
	margin: 35px 0;
	padding: 24px;
	overflow-x: auto;
	border-radius: 18px;
	background: #0b112b;
	color: #ffffff;
}

.bf-single-blog__content code {
	font-size: 0.9em;
}


/* ==========================================================
   POST PAGINATION
   ========================================================== */

.bf-single-blog__pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 35px 0;
}

.bf-single-blog__pagination a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid #e2e6ef;
	border-radius: 10px;
	color: #315cff;
	text-decoration: none;
}


/* ==========================================================
   SHARE
   ========================================================== */

.bf-single-blog__share {
	margin-top: 60px;
	padding-top: 35px;
	border-top: 1px solid #e5e8f0;
}

.bf-single-blog__share-title {
	margin: 0 0 18px;
	color: #0d1535;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bf-single-blog__share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bf-single-blog__share-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid #e1e5ef;
	border-radius: 999px;
	background: #ffffff;
	color: #17203f;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-single-blog__share-links a:hover {
	transform: translateY(-3px);
	border-color: transparent;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
	box-shadow: 0 10px 25px rgba(68, 83, 255, 0.18);
}


/* ==========================================================
   LIKE / DISLIKE
   ========================================================== */

.bf-single-blog__reaction {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	padding: 22px 24px;
	border: 1px solid #e4e7ef;
	border-radius: 20px;
	background:
		linear-gradient(
			135deg,
			rgba(49, 92, 255, 0.035),
			rgba(113, 75, 255, 0.035)
		);
}

.bf-single-blog__reaction-label {
	color: #52617d;
	font-size: 14px;
	font-weight: 700;
}

.bf-single-blog__reaction-buttons {
	display: flex;
	gap: 9px;
}

.bf-single-blog__reaction-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid #dfe4ee;
	border-radius: 999px;
	background: #ffffff;
	color: #17203f;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-single-blog__reaction-button:hover {
	transform: translateY(-3px);
	border-color: #315cff;
	color: #315cff;
	box-shadow: 0 8px 20px rgba(49, 92, 255, 0.12);
}

.bf-single-blog__reaction-button.is-active {
	border-color: transparent;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
}


/* ==========================================================
   PREVIOUS / NEXT
   ========================================================== */

.bf-single-blog__navigation {
	padding: 65px 0;
	border-top: 1px solid #edf0f5;
	background: #fafbff;
}

.bf-single-blog__navigation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 900px;
	margin: 0 auto;
}

.bf-single-blog__navigation-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 125px;
	padding: 25px;
	border: 1px solid #e2e6ef;
	border-radius: 20px;
	background: #ffffff;
	color: #0d1535;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(20, 30, 65, 0.04);
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.bf-single-blog__navigation-card:hover {
	transform: translateY(-6px);
	border-color: rgba(49, 92, 255, 0.25);
	box-shadow: 0 20px 45px rgba(20, 30, 65, 0.09);
}

.bf-single-blog__navigation-card span {
	color: #315cff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.bf-single-blog__navigation-card strong {
	font-size: 17px;
	line-height: 1.35;
}

.bf-single-blog__navigation-card--next {
	text-align: right;
}


/* ==========================================================
   COMMENTS
   ========================================================== */

.bf-single-blog__comments {
	padding: 85px 0;
	background:
		radial-gradient(
			circle at 15% 20%,
			rgba(49, 92, 255, 0.045),
			transparent 30%
		),
		#f8f9fd;
}

.bf-single-blog__comments-inner {
	max-width: 900px;
	margin: 0 auto;
}

.bf-single-blog__comments .comments-area {
	margin: 0;
}

.bf-single-blog__comments .comments-title {
	margin: 0 0 30px;
	color: #0d1535;
	font-size: clamp(28px, 4vw, 40px);
	letter-spacing: -0.03em;
}

.bf-single-blog__comments .comment-list {
	margin: 0 0 35px;
	padding: 0;
	list-style: none;
}

.bf-single-blog__comments .comment {
	margin-bottom: 18px;
	padding: 25px;
	border: 1px solid #e3e7f0;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(20, 30, 65, 0.04);
}

.bf-single-blog__comments .comment-content {
	color: #56647e;
	line-height: 1.75;
}

.bf-single-blog__comments .comment-author {
	color: #0d1535;
	font-weight: 800;
}

.bf-single-blog__comments .comment-meta {
	margin-top: 5px;
	color: #8791a5;
	font-size: 12px;
}

.bf-single-blog__comments .comment-reply-link {
	color: #315cff;
	font-weight: 700;
	text-decoration: none;
}


/* ==========================================================
   COMMENT FORM
   ========================================================== */

.bf-single-blog__comments .comment-respond {
	margin-top: 40px;
	padding: 35px;
	border: 1px solid #e1e5ee;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(20, 30, 65, 0.055);
}

.bf-single-blog__comments .comment-reply-title {
	margin: 0 0 22px;
	color: #0d1535;
	font-size: 30px;
	letter-spacing: -0.03em;
}

.bf-single-blog__comments form label {
	display: block;
	margin-bottom: 8px;
	color: #17203f;
	font-size: 13px;
	font-weight: 800;
}

.bf-single-blog__comments textarea,
.bf-single-blog__comments input[type="text"],
.bf-single-blog__comments input[type="email"],
.bf-single-blog__comments input[type="url"] {
	width: 100%;
	border: 1px solid #dfe4ee;
	border-radius: 14px;
	background: #ffffff;
	color: #17203f;
	font: inherit;
	outline: none;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-single-blog__comments textarea {
	min-height: 190px;
	padding: 16px;
	resize: vertical;
}

.bf-single-blog__comments input[type="text"],
.bf-single-blog__comments input[type="email"],
.bf-single-blog__comments input[type="url"] {
	min-height: 50px;
	padding: 0 15px;
}

.bf-single-blog__comments textarea:focus,
.bf-single-blog__comments input:focus {
	border-color: #315cff;
	box-shadow: 0 0 0 4px rgba(49, 92, 255, 0.08);
}

.bf-single-blog__comments input[type="submit"] {
	min-height: 50px;
	padding: 0 28px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(
		135deg,
		#315cff,
		#714bff
	);
	color: #ffffff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(68, 83, 255, 0.18);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-single-blog__comments input[type="submit"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 17px 32px rgba(68, 83, 255, 0.25);
}


/* ==========================================================
   RELATED ARTICLES
   ========================================================== */

.bf-single-blog__related {
	padding: 90px 0;
	background: #ffffff;
}

.bf-single-blog__related-header {
	max-width: 900px;
	margin: 0 auto 35px;
}

.bf-single-blog__related-header h2 {
	margin: 12px 0 0;
	color: #0d1535;
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.bf-single-blog__related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.bf-single-blog__related-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e3e7ef;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 12px 35px rgba(20, 30, 65, 0.05);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease,
		border-color 0.3s ease;
}

.bf-single-blog__related-card:hover {
	transform: translateY(-8px);
	border-color: rgba(49, 92, 255, 0.22);
	box-shadow: 0 24px 50px rgba(20, 30, 65, 0.10);
}

.bf-single-blog__related-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eef1f7;
}

.bf-single-blog__related-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.bf-single-blog__related-card:hover
.bf-single-blog__related-image img {
	transform: scale(1.06);
}

.bf-single-blog__related-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.bf-single-blog__related-category {
	align-self: flex-start;
	margin-bottom: 12px;
	color: #315cff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bf-single-blog__related-content h3 {
	margin: 0 0 20px;
	font-size: 21px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.bf-single-blog__related-content h3 a {
	color: #0d1535;
	text-decoration: none;
	transition: color 0.25s ease;
}

.bf-single-blog__related-content h3 a:hover {
	color: #315cff;
}

.bf-single-blog__related-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #edf0f5;
	color: #315cff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.bf-single-blog__related-link span {
	transition: transform 0.25s ease;
}

.bf-single-blog__related-card:hover
.bf-single-blog__related-link span {
	transform: translateX(5px);
}

.bf-single-blog__related-empty {
	grid-column: 1 / -1;
	color: #71809a;
}


/* ==========================================================
   BACK TO BLOG
   ========================================================== */

.bf-single-blog__footer {
	padding: 50px 0 75px;
	border-top: 1px solid #edf0f5;
	text-align: center;
}

.bf-single-blog__footer a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0d1535;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.bf-single-blog__footer a:hover {
	color: #315cff;
	transform: translateX(-3px);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.bf-single-blog__featured-image {
		border-radius: 22px;
	}

	.bf-single-blog__content {
		font-size: 16px;
	}

	.bf-single-blog__related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

	.bf-single-blog__header {
		padding: 55px 0 35px;
	}

	.bf-single-blog__title {
		font-size: clamp(38px, 11vw, 58px);
		line-height: 1;
		letter-spacing: -0.045em;
	}

	.bf-single-blog__meta {
		gap: 6px;
		font-size: 11px;
	}

	.bf-single-blog__featured {
		padding: 10px 0 45px;
	}

	.bf-single-blog__featured-image {
		border-radius: 18px;
	}

	.bf-single-blog__featured-img {
		max-height: 420px;
	}

	.bf-single-blog__article-section {
		padding-bottom: 55px;
	}

	.bf-single-blog__content {
		font-size: 15px;
		line-height: 1.78;
	}

	.bf-single-blog__content p {
		margin-bottom: 20px;
	}

	.bf-single-blog__content h2 {
		margin-top: 38px;
		font-size: 29px;
	}

	.bf-single-blog__content h3 {
		margin-top: 30px;
		font-size: 23px;
	}

	.bf-single-blog__content blockquote {
		margin: 28px 0;
		padding: 20px;
		font-size: 17px;
	}

	.bf-single-blog__share {
		margin-top: 40px;
		padding-top: 28px;
	}

	.bf-single-blog__share-links {
		gap: 8px;
	}

	.bf-single-blog__share-links a {
		min-height: 38px;
		padding: 0 14px;
		font-size: 12px;
	}

	.bf-single-blog__reaction {
		align-items: flex-start;
		flex-direction: column;
		gap: 13px;
		margin-top: 22px;
		padding: 18px;
	}

	.bf-single-blog__reaction-buttons {
		width: 100%;
	}

	.bf-single-blog__reaction-button {
		flex: 1;
		justify-content: center;
	}

	.bf-single-blog__navigation {
		padding: 45px 0;
	}

	.bf-single-blog__navigation-grid {
		grid-template-columns: 1fr;
	}

	.bf-single-blog__navigation-card--next {
		text-align: left;
	}

	.bf-single-blog__comments {
		padding: 55px 0;
	}

	.bf-single-blog__comments .comment-respond {
		padding: 22px;
		border-radius: 20px;
	}

	.bf-single-blog__comments .comment-reply-title {
		font-size: 26px;
	}

	.bf-single-blog__comments textarea {
		min-height: 160px;
	}

	.bf-single-blog__related {
		padding: 60px 0;
	}

	.bf-single-blog__related-header {
		margin-bottom: 25px;
	}

	.bf-single-blog__related-header h2 {
		font-size: 38px;
	}

	.bf-single-blog__related-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.bf-single-blog__related-card:hover {
		transform: translateY(-4px);
	}

	.bf-single-blog__related-content {
		padding: 19px;
	}

	.bf-single-blog__footer {
		padding: 40px 0 60px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-single-blog__category,
	.bf-single-blog__share-links a,
	.bf-single-blog__reaction-button,
	.bf-single-blog__navigation-card,
	.bf-single-blog__related-card,
	.bf-single-blog__related-image img,
	.bf-single-blog__related-link span,
	.bf-single-blog__footer a {
		transition: none;
	}

}
/* ==========================================================
   BREFECT SINGLE BLOG — FINAL REFINEMENTS
   ========================================================== */

/* ---------- FEATURED IMAGE SIZE ---------- */

.bf-single-blog__featured {
	margin: 28px auto 0;
	padding: 0 0 10px;
}

.bf-single-blog__featured .bf-container {
	max-width: 1120px;
}

.bf-single-blog__image {
	margin: 0 auto;
	max-width: 980px;
	overflow: hidden;
	border-radius: 22px;
}

.bf-single-blog__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: 22px;
}


/* ---------- REDUCE IMAGE → CONTENT GAP ---------- */

.bf-single-blog__content-section {
	padding-top: 24px;
}

.bf-single-blog__content {
	margin-top: 0;
}


/* ---------- SHARE AREA ---------- */

.bf-single-blog__share {
	position: relative;
	margin-top: 55px;
	padding-top: 28px;
	border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.bf-single-blog__share-title {
	display: block;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0b1230;
}

.bf-single-blog__share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.bf-single-blog__share-links a,
.bf-share-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 17px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #0b1230;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.bf-single-blog__share-links a:hover,
.bf-share-more:hover {
	transform: translateY(-3px);
	border-color: rgba(70, 82, 255, 0.35);
	box-shadow: 0 10px 24px rgba(48, 60, 180, 0.12);
}


/* ---------- MORE SHARE MENU ---------- */

.bf-share-more-wrap {
	position: relative;
}

.bf-share-more {
	gap: 7px;
}

.bf-share-more__arrow {
	font-size: 11px;
	transition: transform 0.2s ease;
}

.bf-share-more-wrap.is-open .bf-share-more__arrow {
	transform: rotate(180deg);
}

.bf-share-more-menu {
	position: absolute;
	z-index: 50;
	left: 0;
	top: calc(100% + 10px);
	display: none;
	min-width: 190px;
	padding: 8px;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
	backdrop-filter: blur(14px);
}

.bf-share-more-wrap.is-open .bf-share-more-menu {
	display: block;
}

.bf-share-more-menu a,
.bf-share-more-menu button {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #0b1230;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.bf-share-more-menu a:hover,
.bf-share-more-menu button:hover {
	background: #f3f5ff;
}


/* ---------- MOBILE ---------- */

@media (max-width: 767px) {

	.bf-single-blog__featured {
		margin-top: 18px;
		padding-bottom: 4px;
	}

	.bf-single-blog__featured .bf-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.bf-single-blog__image {
		max-width: 100%;
		border-radius: 16px;
	}

	.bf-single-blog__image img {
		max-height: 300px;
		border-radius: 16px;
		object-fit: cover;
	}

	.bf-single-blog__content-section {
		padding-top: 18px;
	}

	.bf-single-blog__share {
		margin-top: 35px;
		padding-top: 22px;
	}

	.bf-single-blog__share-links {
		gap: 8px;
	}

	.bf-single-blog__share-links a,
	.bf-share-more {
		min-height: 40px;
		padding: 0 14px;
		font-size: 12px;
	}

	.bf-share-more-menu {
		position: fixed;
		left: 16px;
		right: 16px;
		top: auto;
		bottom: 16px;
		min-width: 0;
		border-radius: 18px;
		box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
	}

}
/* ==========================================================
   BREFECT SINGLE POST
   NAVIGATION + COMMENTS
   FINAL ORGANIZED LAYOUT
   ========================================================== */


/* ----------------------------------------------------------
   PREVIOUS / NEXT SECTION
   ---------------------------------------------------------- */

.bf-single-blog__navigation {
	padding: 55px 0;
	background: #f8f9ff;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.bf-single-blog__navigation-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.bf-single-blog__nav-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 120px;
	padding: 24px 26px;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 18px;
	background: #ffffff;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.bf-single-blog__nav-card:hover {
	transform: translateY(-4px);
	border-color: rgba(67, 83, 255, 0.25);
	box-shadow: 0 18px 40px rgba(48, 60, 180, 0.10);
}

.bf-single-blog__nav-card span {
	margin-bottom: 9px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #4162ff;
}

.bf-single-blog__nav-card strong {
	display: block;
	font-size: 16px;
	line-height: 1.4;
	color: #0b1230;
}

.bf-single-blog__nav-card--next {
	text-align: right;
}


/* ----------------------------------------------------------
   COMMENTS SECTION
   ---------------------------------------------------------- */

.bf-single-blog__comments {
	padding: 70px 0 75px;
	background: #f8f9ff;
}

.bf-single-blog__comments-inner {
	max-width: 900px;
	margin: 0 auto;
}


/* WordPress comments wrapper */

.bf-single-blog__comments-inner .comments-area {
	width: 100%;
	margin: 0;
}


/* Comments heading */

.bf-single-blog__comments-inner .comments-title {
	margin: 0 0 28px;
	font-size: clamp(25px, 3vw, 36px);
	line-height: 1.15;
	color: #0b1230;
}


/* ----------------------------------------------------------
   COMMENT LIST
   ---------------------------------------------------------- */

.bf-single-blog__comments-inner .comment-list {
	margin: 0 0 45px;
	padding: 0;
	list-style: none;
}

.bf-single-blog__comments-inner .comment {
	margin: 0 0 18px;
	padding: 0;
}

.bf-single-blog__comments-inner .comment-body {
	padding: 24px 26px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}


/* Comment author */

.bf-single-blog__comments-inner .comment-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.bf-single-blog__comments-inner .comment-author .avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

.bf-single-blog__comments-inner .comment-author .fn {
	font-size: 14px;
	font-weight: 800;
	color: #0b1230;
}

.bf-single-blog__comments-inner .comment-author .fn a {
	color: inherit;
	text-decoration: none;
}


/* Comment metadata */

.bf-single-blog__comments-inner .comment-meta {
	margin: 0 0 12px;
	font-size: 12px;
	color: #68738e;
}

.bf-single-blog__comments-inner .comment-meta a {
	color: inherit;
	text-decoration: none;
}


/* Comment text */

.bf-single-blog__comments-inner .comment-content {
	font-size: 14px;
	line-height: 1.75;
	color: #52607a;
}

.bf-single-blog__comments-inner .comment-content p:last-child {
	margin-bottom: 0;
}


/* Reply link */

.bf-single-blog__comments-inner .reply {
	margin-top: 15px;
}

.bf-single-blog__comments-inner .reply a {
	font-size: 13px;
	font-weight: 700;
	color: #3f5cff;
	text-decoration: none;
}


/* ----------------------------------------------------------
   LEAVE A REPLY
   ---------------------------------------------------------- */

.bf-single-blog__comments-inner .comment-respond {
	margin-top: 35px;
	padding: 32px;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.bf-single-blog__comments-inner .comment-reply-title {
	margin: 0 0 18px;
	font-size: 28px;
	line-height: 1.2;
	color: #0b1230;
}

.bf-single-blog__comments-inner .comment-reply-title a {
	color: #3f5cff;
}


/* Logged-in text */

.bf-single-blog__comments-inner .logged-in-as {
	margin: 0 0 20px;
	font-size: 13px;
	line-height: 1.6;
	color: #68738e;
}

.bf-single-blog__comments-inner .logged-in-as a {
	color: #3f5cff;
}


/* Form labels */

.bf-single-blog__comments-inner .comment-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #0b1230;
}


/* Textarea */

.bf-single-blog__comments-inner .comment-form textarea {
	width: 100%;
	min-height: 180px;
	padding: 15px 16px;
	border: 1px solid rgba(15, 23, 42, 0.13);
	border-radius: 14px;
	background: #ffffff;
	color: #0b1230;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.6;
	resize: vertical;
	box-sizing: border-box;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.bf-single-blog__comments-inner .comment-form textarea:focus {
	border-color: #4962ff;
	box-shadow: 0 0 0 4px rgba(73, 98, 255, 0.08);
}


/* Submit button */

.bf-single-blog__comments-inner .form-submit {
	margin: 18px 0 0;
}

.bf-single-blog__comments-inner .form-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #3560ff, #7045ff);
	color: #ffffff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(69, 79, 255, 0.18);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.bf-single-blog__comments-inner .form-submit input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(69, 79, 255, 0.24);
}


/* ----------------------------------------------------------
   BACK TO BLOG
   ---------------------------------------------------------- */

.bf-single-blog__footer {
	padding: 45px 0;
	background: #ffffff;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.bf-single-blog__footer .bf-container {
	text-align: center;
}

.bf-single-blog__footer a {
	font-size: 13px;
	font-weight: 700;
	color: #0b1230;
	text-decoration: none;
}

.bf-single-blog__footer a:hover {
	color: #3f5cff;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-single-blog__navigation {
		padding: 30px 16px;
	}

	.bf-single-blog__navigation-inner {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.bf-single-blog__nav-card {
		min-height: auto;
		padding: 18px 19px;
		border-radius: 15px;
	}

	.bf-single-blog__nav-card--next {
		text-align: left;
	}

	.bf-single-blog__nav-card span {
		margin-bottom: 6px;
		font-size: 10px;
	}

	.bf-single-blog__nav-card strong {
		font-size: 14px;
		line-height: 1.4;
	}


	/* Comments */

	.bf-single-blog__comments {
		padding: 42px 16px 48px;
	}

	.bf-single-blog__comments-inner .comments-title {
		margin-bottom: 20px;
		font-size: 25px;
	}

	.bf-single-blog__comments-inner .comment-list {
		margin-bottom: 28px;
	}

	.bf-single-blog__comments-inner .comment-body {
		padding: 19px;
		border-radius: 15px;
	}

	.bf-single-blog__comments-inner .comment-respond {
		margin-top: 25px;
		padding: 22px 18px;
		border-radius: 16px;
	}

	.bf-single-blog__comments-inner .comment-reply-title {
		margin-bottom: 15px;
		font-size: 24px;
	}

	.bf-single-blog__comments-inner .comment-form textarea {
		min-height: 150px;
	}


	/* Footer */

	.bf-single-blog__footer {
		padding: 32px 16px;
	}

}
/* ==========================================================
   BREFECT CONTACT — SECTION 01
   HERO
   ========================================================== */

.bf-contact-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 570px;
	padding: 90px 0 80px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 82% 30%,
			rgba(91, 92, 255, 0.09),
			transparent 30%
		),
		radial-gradient(
			circle at 15% 75%,
			rgba(72, 111, 255, 0.06),
			transparent 28%
		),
		#ffffff;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.bf-contact-hero__content {
	position: relative;
	z-index: 3;
	max-width: 850px;
	text-align: left;
}


/* ==========================================================
   EYEBROW
   ========================================================== */

.bf-contact-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;

	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;

	color: #536dff;
}

.bf-contact-hero__eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;

	background: linear-gradient(
		90deg,
		#3867ff,
		#824dff
	);
}


/* ==========================================================
   MAIN HEADING
   ========================================================== */

.bf-contact-hero__title {
	max-width: 820px;
	margin: 0;

	font-size: clamp(52px, 6.2vw, 80px);
	line-height: 1.01;
	letter-spacing: -0.055em;
	font-weight: 800;

	color: #0b1230;
}

.bf-contact-hero__title span {
	display: block;

	background: linear-gradient(
		100deg,
		#3867ff 0%,
		#674fff 52%,
		#954cff 100%
	);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;
}


/* ==========================================================
   DESCRIPTION
   ========================================================== */

.bf-contact-hero__description {
	max-width: 650px;
	margin: 25px 0 0;

	font-size: 16px;
	line-height: 1.75;

	color: #68738c;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.bf-contact-hero__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

.bf-contact-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	min-height: 50px;
	padding: 0 21px;

	border: 1px solid transparent;
	border-radius: 999px;

	background:
		linear-gradient(
			100deg,
			#3867ff,
			#674fff,
			#824dff
		);

	color: #ffffff;

	font-size: 13px;
	font-weight: 750;
	text-decoration: none;

	box-shadow:
		0 12px 28px rgba(67, 82, 205, 0.16);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		filter 0.3s ease;
}

.bf-contact-hero__button:hover {
	transform: translateY(-4px);
	box-shadow:
		0 18px 35px rgba(67, 82, 205, 0.23);
	filter: brightness(1.03);
}

.bf-contact-hero__button span:last-child {
	transition: transform 0.3s ease;
}

.bf-contact-hero__button:hover span:last-child {
	transform: translate(3px, -3px);
}


/* ----------------------------------------------------------
   SECONDARY BUTTON
   ---------------------------------------------------------- */

.bf-contact-hero__button--secondary {
	border-color: rgba(20, 32, 75, 0.10);

	background: rgba(255, 255, 255, 0.78);

	color: #0b1230;

	box-shadow:
		0 8px 24px rgba(31, 44, 110, 0.055),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);

	backdrop-filter: blur(14px);
}

.bf-contact-hero__button--secondary:hover {
	border-color: rgba(67, 91, 255, 0.25);

	background: #ffffff;

	box-shadow:
		0 15px 30px rgba(45, 57, 160, 0.10);
}


/* ==========================================================
   DECORATIVE 3D ORBS
   ========================================================== */

.bf-contact-hero__orb {
	position: absolute;
	z-index: 1;

	border-radius: 50%;

	pointer-events: none;

	transform-style: preserve-3d;

	filter: blur(1px);

	animation:
		bf-contact-orb-float 9s ease-in-out infinite;
}


/* Main orb */

.bf-contact-hero__orb--one {
	width: 390px;
	height: 390px;

	right: 5%;
	top: 8%;

	background:
		radial-gradient(
			circle at 30% 28%,
			rgba(255, 255, 255, 0.85),
			rgba(91, 103, 255, 0.15) 35%,
			rgba(122, 72, 255, 0.07) 65%,
			transparent 72%
		);

	box-shadow:
		0 30px 100px rgba(72, 82, 210, 0.10);

	opacity: 0.75;
}


/* Secondary orb */

.bf-contact-hero__orb--two {
	width: 190px;
	height: 190px;

	right: 31%;
	bottom: -85px;

	background:
		radial-gradient(
			circle at 35% 30%,
			rgba(255, 255, 255, 0.8),
			rgba(64, 104, 255, 0.10),
			rgba(137, 73, 255, 0.08),
			transparent 72%
		);

	filter: blur(2px);

	opacity: 0.65;

	animation-delay: -4s;
}


/* ==========================================================
   ORB ANIMATION
   ========================================================== */

@keyframes bf-contact-orb-float {

	0%,
	100% {
		transform:
			translate3d(0, 0, 0)
			scale(1)
			rotate(0deg);
	}

	50% {
		transform:
			translate3d(18px, -18px, 0)
			scale(1.045)
			rotate(3deg);
	}
}


/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 1001px) {

	.bf-contact-hero__content {
		transform: translateZ(0);
	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-contact-hero {
		min-height: 520px;
		padding: 75px 0 70px;
	}

	.bf-contact-hero__title {
		font-size: clamp(48px, 8vw, 70px);
	}

	.bf-contact-hero__orb--one {
		right: -80px;
		opacity: 0.55;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-contact-hero {
		min-height: auto;
		padding: 60px 0 55px;
	}

	.bf-contact-hero__content {
		max-width: 100%;
	}

	.bf-contact-hero__eyebrow {
		margin-bottom: 15px;
	}

	.bf-contact-hero__title {
		max-width: 100%;
		font-size: clamp(40px, 11.5vw, 56px);
		line-height: 1.03;
	}

	.bf-contact-hero__description {
		max-width: 100%;
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.7;
	}

	.bf-contact-hero__actions {
		flex-wrap: wrap;
		margin-top: 25px;
		gap: 9px;
	}

	.bf-contact-hero__button {
		min-height: 47px;
		padding: 0 17px;
		font-size: 12px;
	}

	.bf-contact-hero__orb--one {
		width: 230px;
		height: 230px;
		right: -110px;
		top: 8%;
		opacity: 0.4;
	}

	.bf-contact-hero__orb--two {
		width: 130px;
		height: 130px;
		right: 25%;
		bottom: -65px;
		opacity: 0.4;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-contact-hero__orb {
		animation: none;
	}

	.bf-contact-hero__button {
		transition: none;
	}

}
/* ==========================================================
   BREFECT CONTACT — SECTION 02
   CONTACT DETAILS
   ========================================================== */

.bf-contact-details {
	position: relative;
	padding: 85px 0 95px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 8% 55%,
			rgba(67, 103, 255, 0.055),
			transparent 28%
		),
		radial-gradient(
			circle at 92% 45%,
			rgba(126, 76, 255, 0.055),
			transparent 28%
		),
		#ffffff;
}


/* ==========================================================
   HEADING
   ========================================================== */

.bf-contact-details__heading {
	margin-bottom: 42px;
	text-align: left;
}

.bf-contact-details__heading h2 {
	margin: 0;

	font-size: clamp(42px, 5vw, 62px);
	line-height: 1.04;
	letter-spacing: -0.05em;
	font-weight: 800;

	color: #0b1230;
}


/* ==========================================================
   CONTACT GRID
   ========================================================== */

.bf-contact-details__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}


/* ==========================================================
   CONTACT CARD
   ========================================================== */

.bf-contact-detail {
	position: relative;

	min-height: 215px;
	padding: 27px 24px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	border: 1px solid rgba(32, 48, 100, 0.085);
	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.96),
			rgba(248, 249, 255, 0.88)
		);

	box-shadow:
		0 12px 32px rgba(31, 44, 110, 0.055),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);

	color: #0b1230;
	text-decoration: none;

	overflow: hidden;

	transform-style: preserve-3d;

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}


/* ==========================================================
   CARD LIGHT / GLOW
   ========================================================== */

.bf-contact-detail::before {
	content: "";

	position: absolute;
	top: -80px;
	right: -80px;

	width: 190px;
	height: 190px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(80, 101, 255, 0.12),
			transparent 68%
		);

	filter: blur(25px);

	opacity: 0.7;

	pointer-events: none;

	transition:
		transform 0.45s ease,
		opacity 0.35s ease;
}


.bf-contact-detail:hover {
	transform: translateY(-7px);

	border-color: rgba(71, 91, 255, 0.18);

	box-shadow:
		0 25px 55px rgba(35, 48, 125, 0.105),
		0 5px 15px rgba(70, 85, 190, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}


.bf-contact-detail:hover::before {
	transform: scale(1.25);
	opacity: 1;
}


/* ==========================================================
   ICON
   ========================================================== */

.bf-contact-detail__icon {
	position: relative;
	z-index: 2;

	width: 45px;
	height: 45px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(69, 91, 255, 0.10);
	border-radius: 13px;

	background:
		linear-gradient(
			145deg,
			rgba(67, 103, 255, 0.10),
			rgba(128, 76, 255, 0.075)
		);

	color: #5266ff;

	font-size: 18px;
	line-height: 1;

	box-shadow:
		0 8px 20px rgba(66, 83, 190, 0.07);

	transform: translateZ(20px);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
}


.bf-contact-detail:hover .bf-contact-detail__icon {
	transform:
		translateZ(30px)
		scale(1.08)
		rotate(-3deg);

	background:
		linear-gradient(
			145deg,
			rgba(67, 103, 255, 0.15),
			rgba(128, 76, 255, 0.12)
		);

	box-shadow:
		0 12px 25px rgba(66, 83, 190, 0.12);
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.bf-contact-detail__content {
	position: relative;
	z-index: 2;

	margin-top: 25px;

	transform: translateZ(16px);
}

.bf-contact-detail__label {
	display: block;

	margin-bottom: 8px;

	font-size: 10px;
	font-weight: 800;

	letter-spacing: 0.12em;
	text-transform: uppercase;

	color: #6473a8;
}


.bf-contact-detail__content strong {
	display: block;

	max-width: 230px;

	font-size: 15px;
	line-height: 1.45;
	font-weight: 700;

	letter-spacing: -0.01em;

	color: #111a35;
	word-break: break-word;
}


/* ==========================================================
   ARROW
   ========================================================== */

.bf-contact-detail__arrow {
	position: absolute;
	z-index: 3;

	right: 21px;
	bottom: 21px;

	width: 30px;
	height: 30px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: rgba(67, 91, 255, 0.065);

	color: #5368ff;

	font-size: 14px;

	transform: translateZ(20px);

	transition:
		transform 0.3s ease,
		background 0.3s ease,
		color 0.3s ease;
}


.bf-contact-detail:hover .bf-contact-detail__arrow {
	transform:
		translateZ(28px)
		translate(2px, -2px);

	background: rgba(67, 91, 255, 0.11);

	color: #3f58ff;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

	.bf-contact-details {
		padding: 70px 0 80px;
	}

	.bf-contact-details__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-contact-details {
		padding: 60px 0 70px;
	}

	.bf-contact-details__heading {
		margin-bottom: 28px;
	}

	.bf-contact-details__heading h2 {
		font-size: 40px;
	}

	.bf-contact-details__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.bf-contact-detail {
		min-height: 150px;
		padding: 21px 20px;
		border-radius: 19px;
	}

	.bf-contact-detail__icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.bf-contact-detail__content {
		margin-top: 18px;
	}

	.bf-contact-detail__content strong {
		font-size: 14px;
	}

	.bf-contact-detail__arrow {
		right: 17px;
		bottom: 17px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-contact-detail,
	.bf-contact-detail::before,
	.bf-contact-detail__icon,
	.bf-contact-detail__arrow {
		transition: none;
	}

}
/* ==========================================================
   BREFECT CONTACT — SECTION 03
   PREMIUM PROJECT ENQUIRY
   ========================================================== */

.bf-contact-project {
	position: relative;
	padding: 90px 0 105px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 8% 45%,
			rgba(64, 101, 255, 0.055),
			transparent 30%
		),
		radial-gradient(
			circle at 92% 55%,
			rgba(126, 76, 255, 0.055),
			transparent 30%
		),
		#ffffff;
}


/* ==========================================================
   MAIN HEADING
   ========================================================== */

.bf-contact-project__heading {
	margin-bottom: 55px;
	text-align: left;
}

.bf-contact-project__heading h2 {
	max-width: 900px;
	margin: 0;

	font-size: clamp(48px, 5.4vw, 72px);
	line-height: 1;
	letter-spacing: -0.055em;
	font-weight: 800;

	color: #0b1230;
}

.bf-contact-project__heading h2 span {
	display: inline;

	background: linear-gradient(
		100deg,
		#3867ff 0%,
		#674fff 50%,
		#954cff 100%
	);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;
}


/* ==========================================================
   TWO COLUMN LAYOUT
   ========================================================== */

.bf-contact-project__grid {
	display: grid;

	grid-template-columns:
		minmax(0, 0.88fr)
		minmax(0, 1.12fr);

	gap: 75px;

	align-items: start;
}


/* ==========================================================
   LEFT CONTENT
   ========================================================== */

.bf-contact-project__intro {
	position: relative;
	max-width: 520px;

	padding-top: 12px;
}

.bf-contact-project__intro::before {
	content: "";

	position: absolute;

	left: -150px;
	top: 25%;

	width: 320px;
	height: 320px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(72, 103, 255, 0.08),
			transparent 68%
		);

	filter: blur(55px);

	pointer-events: none;
}

.bf-contact-project__lead {
	position: relative;
	z-index: 2;

	margin: 0;

	font-size: 18px;
	line-height: 1.8;

	color: #5f6b85;

	letter-spacing: -0.01em;
}


/* ==========================================================
   PROCESS
   ========================================================== */

.bf-contact-project__process {
	position: relative;
	z-index: 2;

	margin-top: 48px;
}

.bf-contact-project__process h3 {
	margin: 0 0 25px;

	font-size: 25px;
	line-height: 1.15;

	letter-spacing: -0.035em;
	font-weight: 800;

	color: #0b1230;
}

.bf-contact-project__process h3 span {
	display: block;

	margin-top: 4px;

	background: linear-gradient(
		100deg,
		#3867ff,
		#824dff
	);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;
}


/* ==========================================================
   PROCESS ITEM
   ========================================================== */

.bf-contact-project__process-item {
	position: relative;

	display: grid;
	grid-template-columns: 48px 1fr;

	gap: 17px;

	padding: 17px 18px;

	margin-bottom: 10px;

	border: 1px solid rgba(30, 45, 95, 0.075);
	border-radius: 16px;

	background: rgba(255, 255, 255, 0.58);

	box-shadow:
		0 8px 24px rgba(31, 44, 110, 0.035);

	transform-style: preserve-3d;

	transition:
		transform 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease,
		background 0.35s ease;
}

.bf-contact-project__process-item:hover {
	transform:
		translateY(-4px)
		translateZ(10px);

	border-color: rgba(69, 91, 255, 0.16);

	background: rgba(255, 255, 255, 0.88);

	box-shadow:
		0 16px 32px rgba(31, 44, 110, 0.075);
}


/* ==========================================================
   PROCESS NUMBER
   ========================================================== */

.bf-contact-project__process-number {
	width: 42px;
	height: 42px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 12px;

	background:
		linear-gradient(
			145deg,
			rgba(65, 103, 255, 0.11),
			rgba(128, 76, 255, 0.10)
		);

	border: 1px solid rgba(67, 91, 255, 0.10);

	color: #5065ff;

	font-size: 11px;
	font-weight: 800;

	transform: translateZ(15px);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.bf-contact-project__process-item:hover
.bf-contact-project__process-number {
	transform:
		translateZ(25px)
		scale(1.06)
		rotate(-3deg);

	box-shadow:
		0 10px 22px rgba(67, 82, 205, 0.10);
}


/* ==========================================================
   PROCESS TEXT
   ========================================================== */

.bf-contact-project__process-item strong {
	display: block;

	margin: 2px 0 5px;

	font-size: 14px;
	line-height: 1.35;

	color: #121b35;
	font-weight: 750;
}

.bf-contact-project__process-item p {
	margin: 0;

	font-size: 13px;
	line-height: 1.55;

	color: #778198;
}


/* ==========================================================
   NOTE
   ========================================================== */

.bf-contact-project__note {
	position: relative;
	z-index: 2;

	margin: 25px 0 0;

	font-size: 13px;
	line-height: 1.65;

	color: #26304c;
	font-weight: 650;
}


/* ==========================================================
   FORM CARD
   ========================================================== */

.bf-contact-project__form-card {
	position: relative;

	padding: 40px;

	border: 1px solid rgba(30, 45, 95, 0.09);
	border-radius: 28px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.97),
			rgba(247, 249, 255, 0.93)
		);

	box-shadow:
		0 25px 65px rgba(31, 44, 110, 0.085),
		inset 0 1px 0 rgba(255, 255, 255, 0.98);

	backdrop-filter: blur(20px);

	transform-style: preserve-3d;

	transition:
		transform 0.18s ease-out,
		box-shadow 0.35s ease;
}

.bf-contact-project__form-card:hover {
	box-shadow:
		0 32px 75px rgba(31, 44, 110, 0.11),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}


/* ==========================================================
   FORM GLOW
   ========================================================== */

.bf-contact-project__form-glow {
	position: absolute;

	width: 280px;
	height: 280px;

	right: -120px;
	top: -120px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(83, 101, 255, 0.12),
			rgba(133, 75, 255, 0.045),
			transparent 70%
		);

	filter: blur(25px);

	pointer-events: none;

	animation:
		bf-contact-form-glow 8s ease-in-out infinite;
}

@keyframes bf-contact-form-glow {

	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(-18px, 18px, 0) scale(1.08);
	}
}


/* ==========================================================
   FORM HEADER
   ========================================================== */

.bf-contact-project__form-header {
	position: relative;
	z-index: 2;

	margin-bottom: 30px;
}

.bf-contact-project__form-header h3 {
	margin: 0 0 9px;

	font-size: clamp(30px, 3vw, 38px);
	line-height: 1.08;

	letter-spacing: -0.045em;
	font-weight: 800;

	color: #0b1230;
}

.bf-contact-project__form-header p {
	margin: 0;

	font-size: 14px;
	line-height: 1.65;

	color: #707b94;
}


/* ==========================================================
   FORM
   ========================================================== */

.bf-project-form {
	position: relative;
	z-index: 3;
}

.bf-project-field {
	margin-bottom: 17px;
}

.bf-project-form__row {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 15px;
}


/* ==========================================================
   LABELS
   ========================================================== */

.bf-project-field label {
	display: block;

	margin-bottom: 7px;

	font-size: 11px;
	font-weight: 800;

	letter-spacing: 0.01em;

	color: #17213d;
}


/* ==========================================================
   INPUTS
   ========================================================== */

.bf-project-field input,
.bf-project-field select,
.bf-project-field textarea {
	box-sizing: border-box;

	width: 100%;

	border: 1px solid rgba(27, 43, 88, 0.105);
	border-radius: 13px;

	background: rgba(255, 255, 255, 0.82);

	color: #16203a;

	font-family: inherit;
	font-size: 14px;

	outline: none;

	box-shadow:
		0 5px 18px rgba(31, 44, 110, 0.025);

	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease,
		transform 0.25s ease;
}

.bf-project-field input,
.bf-project-field select {
	height: 53px;
	padding: 0 15px;
}

.bf-project-field textarea {
	min-height: 125px;

	padding: 14px 15px;

	line-height: 1.6;

	resize: vertical;
}

.bf-project-field input::placeholder,
.bf-project-field textarea::placeholder {
	color: #9ca5b7;
}


/* ==========================================================
   INPUT FOCUS
   ========================================================== */

.bf-project-field input:focus,
.bf-project-field select:focus,
.bf-project-field textarea:focus {
	border-color: rgba(70, 91, 255, 0.40);

	background: #ffffff;

	box-shadow:
		0 0 0 4px rgba(70, 91, 255, 0.055),
		0 12px 28px rgba(45, 60, 155, 0.05);

	transform: translateY(-1px);
}


/* ==========================================================
   SELECT
   ========================================================== */

.bf-project-field select {
	appearance: none;
	-webkit-appearance: none;

	padding-right: 44px;

	background-image:
		linear-gradient(
			45deg,
			transparent 50%,
			#6573a8 50%
		),
		linear-gradient(
			135deg,
			#6573a8 50%,
			transparent 50%
		);

	background-position:
		calc(100% - 21px) 21px,
		calc(100% - 15px) 21px;

	background-size:
		6px 6px,
		6px 6px;

	background-repeat: no-repeat;

	cursor: pointer;
}


/* ==========================================================
   SUBMIT BUTTON
   ========================================================== */

.bf-project-form__submit {
	width: 100%;

	min-height: 54px;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	margin-top: 4px;

	padding: 0 22px;

	border: 0;
	border-radius: 13px;

	background:
		linear-gradient(
			100deg,
			#3867ff,
			#674fff,
			#824dff
		);

	color: #ffffff;

	font-family: inherit;
	font-size: 13px;
	font-weight: 800;

	cursor: pointer;

	box-shadow:
		0 15px 30px rgba(67, 82, 205, 0.18);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		filter 0.3s ease;
}

.bf-project-form__submit:hover {
	transform: translateY(-3px);

	box-shadow:
		0 20px 38px rgba(67, 82, 205, 0.25);

	filter: brightness(1.03);
}

.bf-project-form__submit span:last-child {
	transition: transform 0.3s ease;
}

.bf-project-form__submit:hover span:last-child {
	transform: translate(4px, -3px);
}


/* ==========================================================
   MESSAGE
   ========================================================== */

.bf-project-form__message {
	min-height: 15px;

	margin: 9px 0 0;

	font-size: 11px;
	line-height: 1.5;

	text-align: center;

	color: #707a92;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-contact-project {
		padding: 75px 0 85px;
	}

	.bf-contact-project__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.bf-contact-project__intro {
		max-width: 700px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-contact-project {
		padding: 60px 0 70px;
	}

	.bf-contact-project__heading {
		margin-bottom: 35px;
	}

	.bf-contact-project__heading h2 {
		font-size: 40px;
		line-height: 1.04;
	}

	.bf-contact-project__grid {
		gap: 32px;
	}

	.bf-contact-project__lead {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-contact-project__process {
		margin-top: 35px;
	}

	.bf-contact-project__process h3 {
		font-size: 22px;
	}

	.bf-contact-project__process-item {
		grid-template-columns: 43px 1fr;
		gap: 13px;

		padding: 15px;
	}

	.bf-contact-project__process-number {
		width: 38px;
		height: 38px;
	}

	.bf-contact-project__form-card {
		padding: 27px 19px;
		border-radius: 22px;
	}

	.bf-contact-project__form-header {
		margin-bottom: 24px;
	}

	.bf-contact-project__form-header h3 {
		font-size: 29px;
	}

	.bf-contact-project__form-header p {
		font-size: 13px;
	}

	.bf-project-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.bf-project-field {
		margin-bottom: 15px;
	}

	.bf-project-field input,
	.bf-project-field select {
		height: 51px;
	}

	.bf-project-field textarea {
		min-height: 115px;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-contact-project__form-glow {
		animation: none;
	}

	.bf-contact-project__form-card,
	.bf-contact-project__process-item,
	.bf-contact-project__process-number,
	.bf-project-field input,
	.bf-project-field select,
	.bf-project-field textarea,
	.bf-project-form__submit {
		transition: none;
	}

}
/* ==========================================================
   BREFECT — PREMIUM SERVICE DROPDOWN
   ========================================================== */

.bf-service-dropdown {
	position: relative;
	z-index: 20;
}


/* TRIGGER */

.bf-service-dropdown__trigger {
	width: 100%;
	height: 53px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 0 15px;

	border: 1px solid rgba(27, 43, 88, 0.105);
	border-radius: 13px;

	background: rgba(255, 255, 255, 0.86);

	color: #16203a;

	font-family: inherit;
	font-size: 14px;
	font-weight: 500;

	cursor: pointer;
	text-align: left;

	box-shadow:
		0 5px 18px rgba(31, 44, 110, 0.025);

	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease,
		background 0.25s ease;
}

.bf-service-dropdown__trigger:hover {
	border-color: rgba(70, 91, 255, 0.25);

	background: #ffffff;

	transform: translateY(-1px);

	box-shadow:
		0 10px 25px rgba(45, 60, 155, 0.06);
}


/* ARROW */

.bf-service-dropdown__arrow {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 28px;
	height: 28px;

	border-radius: 9px;

	background:
		linear-gradient(
			145deg,
			rgba(65, 103, 255, 0.10),
			rgba(128, 76, 255, 0.10)
		);

	color: #5265a8;

	font-size: 17px;

	transition:
		transform 0.3s ease,
		background 0.3s ease;
}


/* OPEN TRIGGER */

.bf-service-dropdown.is-open
.bf-service-dropdown__trigger {
	border-color: rgba(70, 91, 255, 0.38);

	background: #ffffff;

	box-shadow:
		0 0 0 4px rgba(70, 91, 255, 0.045),
		0 12px 30px rgba(45, 60, 155, 0.07);
}

.bf-service-dropdown.is-open
.bf-service-dropdown__arrow {
	transform: rotate(180deg);

	background:
		linear-gradient(
			145deg,
			rgba(65, 103, 255, 0.16),
			rgba(128, 76, 255, 0.16)
		);
}


/* ==========================================================
   DROPDOWN MENU
   ========================================================== */

.bf-service-dropdown__menu {
	position: absolute;

	left: 0;
	right: 0;
	top: calc(100% + 9px);

	padding: 8px;

	border: 1px solid rgba(30, 45, 95, 0.10);
	border-radius: 17px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.98),
			rgba(247, 249, 255, 0.97)
		);

	box-shadow:
		0 22px 50px rgba(31, 44, 110, 0.14),
		0 5px 15px rgba(31, 44, 110, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 1);

	backdrop-filter: blur(20px);

	opacity: 0;
	visibility: hidden;

	transform:
		translateY(-8px)
		scale(0.98);

	transform-origin: top center;

	pointer-events: none;

	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		transform 0.22s ease;
}


/* OPEN MENU */

.bf-service-dropdown.is-open
.bf-service-dropdown__menu {
	opacity: 1;
	visibility: visible;

	transform:
		translateY(0)
		scale(1);

	pointer-events: auto;
}


/* ==========================================================
   OPTIONS
   ========================================================== */

.bf-service-dropdown__option {
	width: 100%;

	min-height: 47px;

	display: flex;
	align-items: center;

	gap: 12px;

	padding: 8px 10px;

	border: 0;
	border-radius: 11px;

	background: transparent;

	color: #18213c;

	font-family: inherit;
	font-size: 13px;
	font-weight: 600;

	text-align: left;

	cursor: pointer;

	transition:
		background 0.2s ease,
		transform 0.2s ease,
		color 0.2s ease;
}


.bf-service-dropdown__option:hover {
	background:
		linear-gradient(
			100deg,
			rgba(65, 103, 255, 0.075),
			rgba(128, 76, 255, 0.065)
		);

	color: #3f55ed;

	transform: translateX(3px);
}


/* ==========================================================
   OPTION NUMBER
   ========================================================== */

.bf-service-dropdown__number {
	flex: 0 0 auto;

	width: 31px;
	height: 31px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background:
		linear-gradient(
			145deg,
			rgba(65, 103, 255, 0.09),
			rgba(128, 76, 255, 0.09)
		);

	border: 1px solid rgba(67, 91, 255, 0.08);

	color: #5a6bff;

	font-size: 9px;
	font-weight: 800;

	transition:
		transform 0.2s ease,
		background 0.2s ease;
}


.bf-service-dropdown__option:hover
.bf-service-dropdown__number {
	transform:
		scale(1.08)
		rotate(-3deg);

	background:
		linear-gradient(
			145deg,
			rgba(65, 103, 255, 0.15),
			rgba(128, 76, 255, 0.15)
		);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-service-dropdown__menu {
		max-height: 330px;

		overflow-y: auto;

		border-radius: 15px;
	}

	.bf-service-dropdown__option {
		font-size: 12px;
		min-height: 45px;
	}

}
/* ==========================================================
   BREFECT SERVICE DROPDOWN — MENU FIX
   ========================================================== */

.bf-service-dropdown {
	position: relative !important;
	z-index: 999 !important;
}

.bf-service-dropdown__menu {
	position: absolute !important;

	top: calc(100% + 10px) !important;
	left: 0 !important;
	right: 0 !important;

	display: block !important;

	padding: 8px !important;

	background: rgba(255, 255, 255, 0.98) !important;

	border: 1px solid rgba(45, 65, 130, 0.12) !important;
	border-radius: 18px !important;

	box-shadow:
		0 25px 60px rgba(30, 45, 100, 0.14),
		0 8px 20px rgba(30, 45, 100, 0.06) !important;

	backdrop-filter: blur(20px) !important;
	-webkit-backdrop-filter: blur(20px) !important;

	overflow: hidden !important;

	opacity: 0 !important;
	visibility: hidden !important;

	transform: translateY(-8px) scale(0.98) !important;

	pointer-events: none !important;

	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease !important;
}


/* OPEN */

.bf-service-dropdown.is-open
.bf-service-dropdown__menu {
	opacity: 1 !important;

	visibility: visible !important;

	transform: translateY(0) scale(1) !important;

	pointer-events: auto !important;
}


/* OPTIONS */

.bf-service-dropdown__option {
	width: 100% !important;

	min-height: 48px !important;

	display: flex !important;

	align-items: center !important;

	gap: 12px !important;

	padding: 7px 10px !important;

	margin: 0 !important;

	border: 0 !important;

	border-radius: 12px !important;

	background: transparent !important;

	color: #17213d !important;

	font-family: inherit !important;

	font-size: 13px !important;

	font-weight: 600 !important;

	text-align: left !important;

	cursor: pointer !important;

	box-shadow: none !important;

	transition:
		background 0.2s ease,
		transform 0.2s ease,
		color 0.2s ease !important;
}


/* HOVER */

.bf-service-dropdown__option:hover {
	background:
		linear-gradient(
			100deg,
			rgba(61, 101, 255, 0.08),
			rgba(126, 76, 255, 0.08)
		) !important;

	color: #465cf2 !important;

	transform: translateX(3px) !important;
}


/* NUMBER */

.bf-service-dropdown__number {
	flex: 0 0 32px !important;

	width: 32px !important;
	height: 32px !important;

	display: flex !important;

	align-items: center !important;
	justify-content: center !important;

	border-radius: 9px !important;

	background:
		linear-gradient(
			145deg,
			rgba(61, 101, 255, 0.10),
			rgba(126, 76, 255, 0.10)
		) !important;

	border: 1px solid rgba(70, 91, 255, 0.10) !important;

	color: #5265ff !important;

	font-size: 9px !important;

	font-weight: 800 !important;
}


/* MOBILE */

@media (max-width: 767px) {

	.bf-service-dropdown__menu {
		max-height: 320px !important;

		overflow-y: auto !important;
	}

	.bf-service-dropdown__option {
		font-size: 12px !important;
	}

}
/* ==========================================================
   BREFECT CONTACT — SECTION 05
   FAQ
   ========================================================== */

.bf-contact-faq {
	position: relative;
	padding: 100px 0 110px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 8% 30%,
			rgba(63, 101, 255, 0.045),
			transparent 28%
		),
		radial-gradient(
			circle at 92% 70%,
			rgba(126, 76, 255, 0.045),
			transparent 30%
		),
		#ffffff;
}


/* ==========================================================
   HEADER
   ========================================================== */

.bf-contact-faq__header {
	max-width: 850px;
	margin-bottom: 55px;
}

.bf-contact-faq__eyebrow {
	margin: 0 0 14px;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;

	color: #5a6cff;
}

.bf-contact-faq__header h2 {
	margin: 0;

	font-size: clamp(44px, 5.2vw, 70px);
	line-height: 1.02;

	letter-spacing: -0.055em;
	font-weight: 800;

	color: #0b1230;
}

.bf-contact-faq__header h2 span {
	display: inline;

	background: linear-gradient(
		100deg,
		#3867ff,
		#674fff,
		#954cff
	);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;
}

.bf-contact-faq__intro {
	max-width: 560px;

	margin: 20px 0 0;

	font-size: 16px;
	line-height: 1.7;

	color: #6c778f;
}


/* ==========================================================
   FAQ LIST
   ========================================================== */

.bf-contact-faq__list {
	max-width: 1050px;

	border-top: 1px solid rgba(28, 43, 88, 0.10);
}


/* ==========================================================
   FAQ ITEM
   ========================================================== */

.bf-contact-faq__item {
	position: relative;

	border-bottom: 1px solid rgba(28, 43, 88, 0.10);

	transform-style: preserve-3d;

	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.bf-contact-faq__item:hover {
	background:
		linear-gradient(
			90deg,
			rgba(67, 96, 255, 0.025),
			rgba(126, 76, 255, 0.025)
		);
}


/* ==========================================================
   QUESTION BUTTON
   ========================================================== */

.bf-contact-faq__question {
	width: 100%;

	min-height: 92px;

	display: grid;

	grid-template-columns: 55px 1fr 45px;

	align-items: center;

	gap: 20px;

	padding: 18px 5px;

	border: 0;

	background: transparent;

	color: #0d1631;

	font-family: inherit;

	text-align: left;

	cursor: pointer;

	transition:
		padding 0.3s ease;
}


/* ==========================================================
   NUMBER
   ========================================================== */

.bf-contact-faq__number {
	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 11px;

	background:
		linear-gradient(
			145deg,
			rgba(62, 101, 255, 0.09),
			rgba(129, 75, 255, 0.09)
		);

	border: 1px solid rgba(67, 91, 255, 0.08);

	color: #5266ff;

	font-size: 10px;
	font-weight: 800;

	transition:
		transform 0.3s ease,
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.bf-contact-faq__item:hover
.bf-contact-faq__number {
	transform:
		translateZ(12px)
		rotate(-3deg);

	box-shadow:
		0 9px 20px rgba(67, 82, 205, 0.09);
}


/* ==========================================================
   QUESTION TEXT
   ========================================================== */

.bf-contact-faq__question-text {
	font-size: 18px;
	line-height: 1.4;

	font-weight: 700;

	letter-spacing: -0.015em;

	color: #18213c;

	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.bf-contact-faq__item:hover
.bf-contact-faq__question-text {
	color: #4b5ff0;

	transform: translateX(3px);
}


/* ==========================================================
   PLUS ICON
   ========================================================== */

.bf-contact-faq__icon {
	width: 38px;
	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	border: 1px solid rgba(28, 43, 88, 0.11);

	background: rgba(255, 255, 255, 0.7);

	color: #4d5e8e;

	font-size: 22px;
	font-weight: 400;

	line-height: 1;

	transition:
		transform 0.35s ease,
		background 0.35s ease,
		color 0.35s ease,
		border-color 0.35s ease;
}


/* OPEN ICON */

.bf-contact-faq__item.is-open
.bf-contact-faq__icon {
	transform: rotate(45deg);

	background:
		linear-gradient(
			135deg,
			#3867ff,
			#824dff
		);

	border-color: transparent;

	color: #ffffff;

	box-shadow:
		0 9px 22px rgba(67, 82, 205, 0.16);
}


/* ==========================================================
   ANSWER
   ========================================================== */

.bf-contact-faq__answer {
	display: grid;

	grid-template-rows: 0fr;

	opacity: 0;

	transition:
		grid-template-rows 0.4s ease,
		opacity 0.3s ease;
}

.bf-contact-faq__answer-inner {
	overflow: hidden;
}

.bf-contact-faq__answer p {
	max-width: 760px;

	margin: 0;

	padding:
		0 70px
		28px 75px;

	font-size: 15px;
	line-height: 1.8;

	color: #6d7890;
}


/* ==========================================================
   OPEN ANSWER
   ========================================================== */

.bf-contact-faq__item.is-open
.bf-contact-faq__answer {
	grid-template-rows: 1fr;

	opacity: 1;
}

.bf-contact-faq__item.is-open
.bf-contact-faq__question {
	padding-bottom: 12px;
}


/* ==========================================================
   DESKTOP 3D DEPTH
   ========================================================== */

@media (min-width: 1001px) {

	.bf-contact-faq__item {
		perspective: 900px;
	}

	.bf-contact-faq__question {
		transform-style: preserve-3d;
	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1000px) {

	.bf-contact-faq {
		padding: 80px 0 90px;
	}

	.bf-contact-faq__header {
		margin-bottom: 45px;
	}

	.bf-contact-faq__question {
		grid-template-columns: 48px 1fr 42px;
		gap: 16px;
	}

	.bf-contact-faq__question-text {
		font-size: 16px;
	}

	.bf-contact-faq__answer p {
		padding:
			0 50px
			25px 64px;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-contact-faq {
		padding: 65px 0 75px;
	}

	.bf-contact-faq__header {
		margin-bottom: 35px;
	}

	.bf-contact-faq__eyebrow {
		margin-bottom: 12px;
	}

	.bf-contact-faq__header h2 {
		font-size: 40px;
		line-height: 1.05;
	}

	.bf-contact-faq__intro {
		margin-top: 16px;

		font-size: 14px;
		line-height: 1.7;
	}

	.bf-contact-faq__question {
		min-height: 78px;

		grid-template-columns: 39px 1fr 35px;

		gap: 11px;

		padding: 15px 0;
	}

	.bf-contact-faq__number {
		width: 32px;
		height: 32px;

		border-radius: 9px;

		font-size: 9px;
	}

	.bf-contact-faq__question-text {
		font-size: 14px;
		line-height: 1.45;
	}

	.bf-contact-faq__icon {
		width: 32px;
		height: 32px;

		font-size: 19px;
	}

	.bf-contact-faq__answer p {
		padding:
			0 45px
			22px 50px;

		font-size: 13px;
		line-height: 1.75;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-contact-faq__item,
	.bf-contact-faq__question,
	.bf-contact-faq__number,
	.bf-contact-faq__question-text,
	.bf-contact-faq__icon,
	.bf-contact-faq__answer {
		transition: none;
	}

}
/* ==========================================================
   BREFECT CONTACT — SECTION SPACING FIX
   ========================================================== */

/* Reduce the gap before FAQ */

.bf-contact-faq {
	padding-top: 45px !important;
	padding-bottom: 90px !important;
}


/* Remove excessive bottom space from previous section */

.bf-contact-project {
	padding-bottom: 55px !important;
}


/* Tablet */

@media (max-width: 1000px) {

	.bf-contact-project {
		padding-bottom: 45px !important;
	}

	.bf-contact-faq {
		padding-top: 40px !important;
	}

}


/* Mobile */

@media (max-width: 767px) {

	.bf-contact-project {
		padding-bottom: 35px !important;
	}

	.bf-contact-faq {
		padding-top: 35px !important;
		padding-bottom: 70px !important;
	}

}
/* ==========================================================
   BREFECT — WEB DEVELOPMENT SERVICE PAGE
   PREMIUM SERVICE CSS
   ========================================================== */


/* ==========================================================
   VARIABLES
   ========================================================== */

.bf-web-hero,
.bf-web-problem,
.bf-web-included,
.bf-web-process,
.bf-web-faq,
.bf-web-final {

	--web-navy: #0d1635;
	--web-text: #1b2745;
	--web-muted: #68758e;
	--web-blue: #4167ff;
	--web-purple: #7851ff;
	--web-border: rgba(25, 42, 91, 0.09);

}


/* ==========================================================
   HERO
   ========================================================== */

.bf-web-hero {

	position: relative;

	min-height: 720px;

	display: flex;
	align-items: center;

	padding: 85px 0 75px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 78% 35%,
			rgba(73, 103, 255, 0.13),
			transparent 31%
		),
		radial-gradient(
			circle at 92% 85%,
			rgba(126, 79, 255, 0.09),
			transparent 27%
		),
		#ffffff;

}


/* HERO BACKGROUND */

.bf-web-hero::before {

	content: "";

	position: absolute;

	width: 650px;
	height: 650px;

	right: -300px;
	top: 50%;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(72, 103, 255, 0.09),
			transparent 68%
		);

	transform: translateY(-50%);

	pointer-events: none;

}


/* HERO GRID */

.bf-web-hero__grid {

	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
		minmax(0, 0.92fr)
		minmax(500px, 1.08fr);

	align-items: center;

	gap: 45px;

}


/* ==========================================================
   HERO CONTENT
   ========================================================== */

.bf-web-hero__content {

	max-width: 670px;

}


.bf-web-eyebrow {

	display: inline-block;

	margin-bottom: 15px;

	font-size: 10px;
	font-weight: 800;

	letter-spacing: 0.17em;

	text-transform: uppercase;

	color: #5d6eff;

}


.bf-web-hero__title {

	margin: 0;

	font-size:
		clamp(48px, 5.7vw, 76px);

	line-height: 0.98;

	letter-spacing: -0.065em;

	font-weight: 800;

	color: var(--web-navy);

}


.bf-web-hero__title span {

	display: block;

	background:
		linear-gradient(
			105deg,
			#3e68ff 0%,
			#6952ff 52%,
			#9750ff 100%
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;

}


.bf-web-hero__text {

	max-width: 600px;

	margin: 25px 0 0;

	font-size: 16px;

	line-height: 1.75;

	color: var(--web-muted);

}


.bf-web-hero__actions {

	display: flex;

	margin-top: 31px;

}


.bf-web-btn {

	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 12px;

	min-height: 53px;

	padding: 0 23px;

	border-radius: 999px;

	font-size: 12px;
	font-weight: 750;

	text-decoration: none;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;

}


.bf-web-btn span:last-child {

	font-size: 17px;

	transition:
		transform 0.25s ease;

}


.bf-web-btn:hover {

	transform: translateY(-3px);

}


.bf-web-btn:hover span:last-child {

	transform: translateX(4px);

}


/* PRIMARY BUTTON */

.bf-web-btn--primary {

	color: #ffffff;

	background:
		linear-gradient(
			105deg,
			#3e68ff,
			#7650ff
		);

	box-shadow:
		0 14px 30px rgba(62, 85, 214, 0.20);

}


.bf-web-btn--primary:hover {

	box-shadow:
		0 19px 38px rgba(62, 85, 214, 0.27);

}


/* HERO TRUST */

.bf-web-hero__trust {

	display: flex;

	flex-wrap: wrap;

	gap: 10px;

	margin-top: 25px;

}


.bf-web-hero__trust span {

	padding: 7px 11px;

	border-radius: 99px;

	background: rgba(70, 94, 190, 0.055);

	border:
		1px solid rgba(70, 94, 190, 0.08);

	font-size: 9px;
	font-weight: 700;

	color: #65728c;

}


/* ==========================================================
   HERO WEBSITE VISUAL
   ========================================================== */

.bf-web-hero__visual {

	position: relative;

	min-height: 555px;

	display: flex;

	align-items: center;
	justify-content: center;

	perspective: 1300px;

}


.bf-web-hero__orb {

	position: absolute;

	width: 480px;
	height: 480px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(66, 103, 255, 0.19),
			rgba(126, 77, 255, 0.08),
			transparent 69%
		);

	filter: blur(16px);

	animation:
		bf-web-orb-float
		8s ease-in-out infinite;

}


@keyframes bf-web-orb-float {

	0%,
	100% {
		transform:
			translate3d(0, 0, 0)
			scale(1);
	}

	50% {
		transform:
			translate3d(12px, -18px, 0)
			scale(1.05);
	}

}


/* ==========================================================
   BROWSER FRAME
   ========================================================== */

.bf-web-browser {

	position: relative;
	z-index: 3;

	width: min(100%, 590px);

	border-radius: 20px;

	overflow: hidden;

	background: #ffffff;

	border:
		1px solid rgba(47, 65, 130, 0.11);

	box-shadow:
		0 38px 90px rgba(34, 49, 112, 0.16),
		0 12px 30px rgba(34, 49, 112, 0.07);

	transform-style: preserve-3d;

	transition:
		transform 0.16s ease-out;

}


/* BROWSER BAR */

.bf-web-browser__bar {

	height: 39px;

	display: flex;

	align-items: center;

	gap: 16px;

	padding: 0 14px;

	background:
		linear-gradient(
			180deg,
			#ffffff,
			#f8f9ff
		);

	border-bottom:
		1px solid rgba(27, 43, 92, 0.07);

}


.bf-web-browser__dots {

	display: flex;

	gap: 6px;

}


.bf-web-browser__dots span {

	width: 7px;
	height: 7px;

	border-radius: 50%;

	background:
		rgba(70, 85, 132, 0.20);

}


.bf-web-browser__address {

	flex: 1;

	max-width: 250px;

	height: 22px;

	display: flex;

	align-items: center;

	padding: 0 11px;

	border-radius: 6px;

	background:
		rgba(55, 74, 137, 0.05);

	color: #8a94aa;

	font-size: 8px;

}


/* ==========================================================
   MOCK WEBSITE
   ========================================================== */

.bf-web-site {

	padding: 18px;

	background:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#fafbff 100%
		);

}


/* NAV */

.bf-web-site__nav {

	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 15px;

}


.bf-web-site__brand {

	display: flex;

	align-items: center;

	gap: 7px;

	color: #17213e;

	font-size: 9px;

}


.bf-web-site__brand span {

	width: 24px;
	height: 24px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 7px;

	color: #ffffff;

	font-size: 10px;
	font-weight: 800;

	background:
		linear-gradient(
			135deg,
			#4167ff,
			#7851ff
		);

}


.bf-web-site__brand strong {

	font-size: 9px;

}


.bf-web-site__links {

	display: flex;

	align-items: center;

	gap: 15px;

}


.bf-web-site__links span {

	font-size: 7px;

	color: #78849c;

}


.bf-web-site__nav-button {

	padding: 7px 10px;

	border-radius: 99px;

	background:
		linear-gradient(
			105deg,
			#4167ff,
			#7851ff
		);

	color: #ffffff;

	font-size: 7px;
	font-weight: 700;

}


/* WEBSITE HERO */

.bf-web-site__hero {

	display: grid;

	grid-template-columns:
		1fr
		0.82fr;

	align-items: center;

	gap: 24px;

	min-height: 245px;

	padding: 32px 18px 25px;

}


.bf-web-site__hero-copy {

	position: relative;
	z-index: 2;

}


.bf-web-site__mini-label {

	margin-bottom: 9px;

	font-size: 6px;
	font-weight: 800;

	letter-spacing: 0.14em;

	color: #6272ff;

}


.bf-web-site__heading {

	max-width: 225px;

	font-size: 24px;
	font-weight: 800;

	line-height: 1.04;

	letter-spacing: -0.045em;

	color: #16203d;

}


.bf-web-site__heading span {

	display: block;

	background:
		linear-gradient(
			100deg,
			#4167ff,
			#7851ff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;

}


.bf-web-site__lines {

	margin-top: 14px;

}


.bf-web-site__lines span {

	display: block;

	width: 80%;

	height: 4px;

	margin-bottom: 5px;

	border-radius: 99px;

	background:
		rgba(74, 88, 139, 0.10);

}


.bf-web-site__lines span:nth-child(2) {

	width: 66%;

}


.bf-web-site__lines span:nth-child(3) {

	width: 48%;

}


.bf-web-site__cta {

	width: 75px;

	margin-top: 15px;

	padding: 7px 9px;

	border-radius: 99px;

	text-align: center;

	color: #ffffff;

	background:
		linear-gradient(
			105deg,
			#4167ff,
			#7851ff
		);

	font-size: 6px;
	font-weight: 700;

}


/* ==========================================================
   MOCK GRAPHIC
   ========================================================== */

.bf-web-site__graphic {

	position: relative;

	height: 205px;

	display: flex;

	align-items: center;
	justify-content: center;

}


.bf-web-site__graphic-glow {

	position: absolute;

	width: 190px;
	height: 190px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(75, 103, 255, 0.18),
			transparent 68%
		);

	filter: blur(12px);

}


.bf-web-site__graphic-card {

	position: relative;
	z-index: 2;

	width: 180px;
	height: 140px;

	padding: 12px;

	border-radius: 16px;

	background:
		linear-gradient(
			145deg,
			#ffffff,
			#f2f4ff
		);

	border:
		1px solid rgba(65, 86, 164, 0.10);

	box-shadow:
		0 20px 40px rgba(42, 57, 125, 0.12);

	transform:
		rotateY(-12deg)
		rotateX(6deg)
		rotateZ(2deg);

}


.bf-web-site__graphic-top {

	display: flex;

	gap: 4px;

	margin-bottom: 13px;

}


.bf-web-site__graphic-top span {

	width: 4px;
	height: 4px;

	border-radius: 50%;

	background: rgba(73, 91, 146, 0.22);

}


.bf-web-site__graphic-chart {

	height: 65px;

	display: flex;

	align-items: flex-end;

	gap: 7px;

	padding: 10px;

	border-radius: 9px;

	background:
		linear-gradient(
			145deg,
			rgba(64, 103, 255, 0.08),
			rgba(124, 78, 255, 0.05)
		);

}


.bf-web-site__graphic-chart div {

	flex: 1;

	border-radius:
		4px 4px 2px 2px;

	background:
		linear-gradient(
			180deg,
			#5276ff,
			#8460ff
		);

}


.bf-web-site__graphic-chart div:nth-child(1) {
	height: 35%;
}


.bf-web-site__graphic-chart div:nth-child(2) {
	height: 55%;
}


.bf-web-site__graphic-chart div:nth-child(3) {
	height: 45%;
}


.bf-web-site__graphic-chart div:nth-child(4) {
	height: 78%;
}


.bf-web-site__graphic-chart div:nth-child(5) {
	height: 92%;
}


.bf-web-site__graphic-bottom {

	display: flex;

	gap: 7px;

	margin-top: 11px;

}


.bf-web-site__graphic-bottom span {

	height: 5px;

	border-radius: 99px;

	background:
		rgba(67, 82, 139, 0.12);

}


.bf-web-site__graphic-bottom span:first-child {

	width: 60%;

}


.bf-web-site__graphic-bottom span:last-child {

	width: 25%;

}


/* WEBSITE CARDS */

.bf-web-site__cards {

	display: grid;

	grid-template-columns:
		repeat(3, 1fr);

	gap: 8px;

	padding: 0 18px 18px;

}


.bf-web-site__cards > div {

	min-height: 58px;

	padding: 10px;

	display: flex;

	flex-direction: column;

	justify-content: space-between;

	border-radius: 10px;

	background:
		rgba(71, 94, 182, 0.045);

	border:
		1px solid rgba(65, 86, 164, 0.07);

}


.bf-web-site__cards strong {

	font-size: 7px;

	color: #6071ff;

}


.bf-web-site__cards span {

	font-size: 7px;

	font-weight: 700;

	color: #26314d;

}


/* ==========================================================
   FLOATING CARDS
   ========================================================== */

.bf-web-float-card {

	position: absolute;

	z-index: 6;

	display: flex;

	align-items: center;

	gap: 9px;

	padding: 11px 14px;

	border-radius: 13px;

	background:
		rgba(255, 255, 255, 0.84);

	border:
		1px solid rgba(64, 83, 160, 0.10);

	box-shadow:
		0 18px 35px rgba(38, 53, 120, 0.11);

	backdrop-filter: blur(14px);

	animation:
		bf-web-float
		6s ease-in-out infinite;

}


.bf-web-float-card span {

	font-size: 8px;

	font-weight: 800;

	color: #6575ff;

}


.bf-web-float-card strong {

	font-size: 10px;

	color: #25304b;

}


.bf-web-float-card--one {

	top: 14%;

	left: -3%;

}


.bf-web-float-card--two {

	right: -2%;

	top: 31%;

	animation-delay: -2s;

}


.bf-web-float-card--three {

	left: 5%;

	bottom: 8%;

	animation-delay: -4s;

}


@keyframes bf-web-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}

}


/* ==========================================================
   SECTION 02 — PROBLEM
   ========================================================== */

.bf-web-problem {

	padding: 95px 0;

	background: #ffffff;

}


.bf-web-two-column {

	display: grid;

	grid-template-columns:
		0.75fr
		1.25fr;

	gap: 85px;

	align-items: start;

}


.bf-web-section-title {

	margin: 0;

	font-size:
		clamp(38px, 4.5vw, 59px);

	line-height: 1.03;

	letter-spacing: -0.055em;

	color: var(--web-navy);

}


.bf-web-section-title span {

	display: block;

	background:
		linear-gradient(
			105deg,
			#4167ff,
			#7851ff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;

}


.bf-web-problem__content {

	max-width: 680px;

}


.bf-web-problem__content p {

	margin: 0 0 18px;

	font-size: 15px;

	line-height: 1.75;

	color: var(--web-muted);

}


.bf-web-problem__content
.bf-web-lead {

	font-size: 18px;

	line-height: 1.65;

	color: #27334f;

}


/* CHECK LIST */

.bf-web-check-list {

	display: grid;

	grid-template-columns:
		repeat(2, 1fr);

	gap: 12px;

	margin-top: 32px;

}


.bf-web-check-list div {

	display: flex;

	align-items: center;

	gap: 10px;

	padding: 14px;

	border-radius: 12px;

	background:
		#fafbff;

	border:
		1px solid var(--web-border);

}


.bf-web-check-list span {

	width: 21px;
	height: 21px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		rgba(69, 103, 255, 0.09);

	color: #566cff;

	font-size: 10px;
	font-weight: 800;

}


.bf-web-check-list strong {

	font-size: 11px;

	color: #34405c;

}


/* ==========================================================
   SECTION 03 — INCLUDED
   ========================================================== */

.bf-web-included {

	padding: 95px 0;

	background:
		linear-gradient(
			180deg,
			#fafbff,
			#ffffff
		);

}


.bf-web-heading-center {

	max-width: 700px;

	margin: 0 0 48px;

}


.bf-web-heading-center p {

	max-width: 570px;

	margin: 17px 0 0;

	font-size: 15px;

	line-height: 1.7;

	color: var(--web-muted);

}


/* FEATURE GRID */

.bf-web-feature-grid {

	display: grid;

	grid-template-columns:
		repeat(3, 1fr);

	gap: 13px;

}


.bf-web-feature-card {

	position: relative;

	min-height: 210px;

	padding: 25px;

	border-radius: 18px;

	background:
		rgba(255, 255, 255, 0.90);

	border:
		1px solid var(--web-border);

	box-shadow:
		0 10px 28px rgba(35, 51, 111, 0.035);

	transition:
		transform 0.28s ease,
		box-shadow 0.28s ease,
		border-color 0.28s ease;

}


.bf-web-feature-card:hover {

	transform:
		translateY(-6px);

	border-color:
		rgba(72, 94, 220, 0.16);

	box-shadow:
		0 22px 45px rgba(35, 51, 111, 0.08);

}


.bf-web-feature-card > span {

	display: block;

	margin-bottom: 35px;

	font-size: 9px;

	font-weight: 800;

	letter-spacing: 0.12em;

	color: #6373ff;

}


.bf-web-feature-card h3 {

	margin: 0 0 10px;

	font-size: 17px;

	letter-spacing: -0.02em;

	color: #17213d;

}


.bf-web-feature-card p {

	margin: 0;

	font-size: 13px;

	line-height: 1.7;

	color: var(--web-muted);

}


/* ==========================================================
   SECTION 04 — PROCESS
   ========================================================== */

.bf-web-process {

	padding: 95px 0;

	background: #ffffff;

}


.bf-web-process__intro {

	max-width: 450px;

	margin: 20px 0 0;

	font-size: 15px;

	line-height: 1.75;

	color: var(--web-muted);

}


.bf-web-process__steps {

	border-top:
		1px solid var(--web-border);

}


.bf-web-process__step {

	display: grid;

	grid-template-columns:
		45px
		1fr;

	gap: 20px;

	padding: 24px 0;

	border-bottom:
		1px solid var(--web-border);

	transition:
		transform 0.25s ease;

}


.bf-web-process__step:hover {

	transform:
		translateX(7px);

}


.bf-web-process__step > span {

	font-size: 10px;

	font-weight: 800;

	color: #6373ff;

}


.bf-web-process__step h3 {

	margin: 0 0 7px;

	font-size: 18px;

	color: #18223f;

}


.bf-web-process__step p {

	max-width: 580px;

	margin: 0;

	font-size: 13px;

	line-height: 1.7;

	color: var(--web-muted);

}


/* ==========================================================
   SECTION 05 — FAQ
   ========================================================== */

.bf-web-faq {

	padding: 95px 0;

	background: #fafbff;

}


.bf-web-faq__intro {

	max-width: 430px;

	margin: 18px 0 0;

	font-size: 15px;

	line-height: 1.75;

	color: var(--web-muted);

}


.bf-web-faq__list {

	border-top:
		1px solid var(--web-border);

}


.bf-web-faq__item {

	border-bottom:
		1px solid var(--web-border);

}


.bf-web-faq__question {

	width: 100%;

	min-height: 73px;

	display: grid;

	grid-template-columns:
		1fr
		34px;

	align-items: center;

	gap: 15px;

	padding: 13px 0;

	border: 0;

	background: transparent;

	font-family: inherit;

	font-size: 14px;

	font-weight: 700;

	text-align: left;

	color: #1c2744;

	cursor: pointer;

}


.bf-web-faq__question strong {

	width: 30px;
	height: 30px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	border:
		1px solid rgba(63, 83, 157, 0.11);

	color: #6070ff;

	font-size: 18px;
	font-weight: 400;

	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease;

}


.bf-web-faq__answer {

	display: grid;

	grid-template-rows: 0fr;

	opacity: 0;

	transition:
		grid-template-rows 0.35s ease,
		opacity 0.25s ease;

}


.bf-web-faq__answer p {

	overflow: hidden;

	margin: 0;

	padding: 0 45px 0 0;

	font-size: 13px;

	line-height: 1.75;

	color: var(--web-muted);

}


.bf-web-faq__item.is-open
.bf-web-faq__answer {

	grid-template-rows: 1fr;

	opacity: 1;

}


.bf-web-faq__item.is-open
.bf-web-faq__answer p {

	padding-bottom: 23px;

}


.bf-web-faq__item.is-open
.bf-web-faq__question strong {

	transform: rotate(45deg);

	color: #ffffff;

	background:
		linear-gradient(
			135deg,
			#4167ff,
			#7851ff
		);

	border-color: transparent;

}


/* ==========================================================
   SECTION 06 — FINAL CTA
   ========================================================== */

.bf-web-final {

	padding: 35px 0 95px;

	background: #fafbff;

}


.bf-web-final__card {

	position: relative;

	min-height: 370px;

	display: flex;

	align-items: center;
	justify-content: center;

	padding: 65px 30px;

	overflow: hidden;

	text-align: center;

	border-radius: 27px;

	background:
		linear-gradient(
			120deg,
			#0d1737,
			#172453 50%,
			#2a216b
		);

	box-shadow:
		0 30px 70px rgba(28, 41, 99, 0.17);

}


.bf-web-final__card::before {

	content: "";

	position: absolute;

	width: 430px;
	height: 430px;

	left: -210px;
	bottom: -280px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(73, 111, 255, 0.20),
			transparent 68%
		);

}


.bf-web-final__glow {

	position: absolute;

	width: 520px;
	height: 520px;

	right: -220px;
	top: -300px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(120, 93, 255, 0.25),
			transparent 68%
		);

	filter: blur(10px);

}


.bf-web-final__content {

	position: relative;
	z-index: 2;

	max-width: 750px;

}


.bf-web-final__content
.bf-web-eyebrow {

	color: rgba(198, 208, 255, 0.78);

}


.bf-web-final__content h2 {

	margin: 0;

	font-size:
		clamp(39px, 4.8vw, 62px);

	line-height: 1.03;

	letter-spacing: -0.055em;

	color: #ffffff;

}


.bf-web-final__content h2 span {

	display: block;

	background:
		linear-gradient(
			100deg,
			#8da5ff,
			#c18cff
		);

	-webkit-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	color: transparent;

}


.bf-web-final__content > p {

	max-width: 540px;

	margin: 18px auto 28px;

	font-size: 14px;

	line-height: 1.75;

	color: rgba(225, 231, 255, 0.69);

}


/* LIGHT BUTTON */

.bf-web-btn--light {

	color: #17213d;

	background: #ffffff;

	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.15);

}


.bf-web-btn--light:hover {

	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.21);

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1050px) {

	.bf-web-hero__grid {

		grid-template-columns:
			1fr;

		gap: 35px;

	}

	.bf-web-hero__content {

		max-width: 760px;

	}

	.bf-web-hero__visual {

		max-width: 680px;

		width: 100%;

		margin: 0 auto;

	}

	.bf-web-feature-grid {

		grid-template-columns:
			repeat(2, 1fr);

	}

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 850px) {

	.bf-web-two-column {

		grid-template-columns:
			1fr;

		gap: 45px;

	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-web-hero {

		min-height: auto;

		padding: 58px 0 60px;

	}

	.bf-web-hero__title {

		font-size:
			clamp(40px, 11.5vw, 55px);

	}

	.bf-web-hero__text {

		font-size: 14px;

		line-height: 1.7;

	}

	.bf-web-hero__visual {

		min-height: 370px;

	}

	.bf-web-hero__orb {

		width: 290px;
		height: 290px;

	}

	.bf-web-browser {

		width: 94%;

		border-radius: 15px;

	}

	.bf-web-site {

		padding: 12px;

	}

	.bf-web-site__links {

		display: none;

	}

	.bf-web-site__hero {

		min-height: 190px;

		grid-template-columns:
			1fr
			0.8fr;

		gap: 10px;

		padding: 20px 8px 15px;

	}

	.bf-web-site__heading {

		font-size: 18px;

	}

	.bf-web-site__graphic {

		height: 155px;

	}

	.bf-web-site__graphic-card {

		width: 125px;
		height: 105px;

	}

	.bf-web-site__cards {

		padding:
			0 8px 10px;

	}

	.bf-web-site__cards > div {

		min-height: 45px;

		padding: 7px;

	}

	.bf-web-float-card {

		padding: 8px 10px;

		border-radius: 10px;

	}

	.bf-web-float-card strong {

		font-size: 8px;

	}

	.bf-web-float-card--one {

		left: -2%;

	}

	.bf-web-float-card--two {

		right: -2%;

	}

	.bf-web-float-card--three {

		left: 2%;

	}


	/* SECTIONS */

	.bf-web-problem,
	.bf-web-included,
	.bf-web-process,
	.bf-web-faq {

		padding: 70px 0;

	}


	.bf-web-section-title {

		font-size: 39px;

	}


	/* CHECK LIST */

	.bf-web-check-list {

		grid-template-columns:
			1fr;

	}


	/* FEATURES */

	.bf-web-feature-grid {

		grid-template-columns:
			1fr;

		gap: 10px;

	}

	.bf-web-feature-card {

		min-height: auto;

		padding: 22px;

	}


	/* PROCESS */

	.bf-web-process__step {

		grid-template-columns:
			35px
			1fr;

		gap: 12px;

	}


	/* FAQ */

	.bf-web-faq__question {

		font-size: 13px;

	}

	.bf-web-faq__answer p {

		padding-right: 25px;

		font-size: 12px;

	}


	/* CTA */

	.bf-web-final {

		padding:
			20px 0 65px;

	}

	.bf-web-final__card {

		min-height: 400px;

		padding:
			50px 20px;

		border-radius: 22px;

	}

	.bf-web-final__content h2 {

		font-size: 39px;

	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-web-hero__orb,
	.bf-web-float-card {

		animation: none;

	}

	.bf-web-btn,
	.bf-web-btn span,
	.bf-web-feature-card,
	.bf-web-process__step,
	.bf-web-faq__question strong {

		transition: none;

	}

}
/* ==========================================================
   BREFECT — COMPACT SECTION SPACING
   ========================================================== */

.bf-web-problem {
	padding-top: 60px;
	padding-bottom: 60px;
}

.bf-web-included {
	padding-top: 60px;
	padding-bottom: 60px;
}

.bf-web-process {
	padding-top: 60px;
	padding-bottom: 60px;
}

.bf-web-faq {
	padding-top: 60px;
	padding-bottom: 60px;
}

.bf-web-final {
	padding-top: 20px;
	padding-bottom: 60px;
}


/* MOBILE */

@media (max-width: 767px) {

	.bf-web-problem,
	.bf-web-included,
	.bf-web-process,
	.bf-web-faq {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.bf-web-final {
		padding-top: 15px;
		padding-bottom: 48px;
	}

}
/* ==========================================================
   BREFECT HEADER — SERVICES DROPDOWN
   ========================================================== */

.bf-header .menu-item-has-children {
	position: relative;
}

.bf-header .menu-item-has-children > .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);

	min-width: 250px;
	padding: 10px;

	margin: 0;

	list-style: none;

	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(30, 45, 100, 0.08);
	border-radius: 16px;

	box-shadow:
		0 20px 50px rgba(30, 45, 100, 0.12);

	backdrop-filter: blur(18px);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;

	z-index: 9999;
}


/* SHOW ON HOVER */

.bf-header .menu-item-has-children:hover > .sub-menu,
.bf-header .menu-item-has-children:focus-within > .sub-menu {

	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform:
		translateX(-50%)
		translateY(0);
}


/* REMOVE BULLETS */

.bf-header .sub-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* SUBMENU LINKS */

.bf-header .sub-menu li a {

	display: flex;

	align-items: center;

	width: 100%;

	padding: 11px 13px;

	border-radius: 10px;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	color: #17213d;

	transition:
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}


/* HOVER ITEM */

.bf-header .sub-menu li a:hover {

	background:
		linear-gradient(
			105deg,
			rgba(65, 103, 255, 0.08),
			rgba(120, 81, 255, 0.08)
		);

	color: #4b62ff;

	transform: translateX(3px);
}


/* SERVICES ARROW */

.bf-header .menu-item-has-children > a::after {

	content: "⌄";

	margin-left: 7px;

	font-size: 12px;

	color: #6572ff;

	transition:
		transform 0.2s ease;
}


.bf-header .menu-item-has-children:hover > a::after {

	transform: rotate(180deg);

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-header .menu-item-has-children > .sub-menu {

		position: static;

		transform: none;

		width: 100%;
		min-width: 0;

		margin-top: 8px;

		box-shadow: none;

		opacity: 1;
		visibility: visible;
		pointer-events: auto;

		display: none;

	}

	.bf-header .menu-item-has-children:hover > .sub-menu {

		display: block;

	}

}
/* ==========================================================
   BREFECT — SERVICES DROPDOWN
   ========================================================== */

.bf-navigation .bf-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bf-navigation .bf-nav__list > li {
	position: relative;
	list-style: none;
}


/* SERVICES PARENT */

.bf-navigation .bf-nav__list > li.menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}


/* ARROW */

.bf-navigation .bf-nav__list > li.menu-item-has-children > a::after {
	content: "⌄";
	font-size: 12px;
	line-height: 1;
	transition: transform 0.2s ease;
}


/* SUBMENU */

.bf-navigation .bf-nav__list
.menu-item-has-children > .sub-menu {

	position: absolute;

	top: calc(100% + 14px);
	left: 50%;

	transform:
		translateX(-50%)
		translateY(8px);

	width: 285px;

	margin: 0;
	padding: 8px;

	list-style: none;

	background: rgba(255, 255, 255, 0.98);

	border: 1px solid rgba(35, 52, 110, 0.09);

	border-radius: 16px;

	box-shadow:
		0 20px 50px rgba(29, 43, 96, 0.14);

	backdrop-filter: blur(18px);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		visibility 0.18s ease;

	z-index: 9999;
}


/* SHOW DROPDOWN */

.bf-navigation .bf-nav__list
.menu-item-has-children:hover > .sub-menu,

.bf-navigation .bf-nav__list
.menu-item-has-children:focus-within > .sub-menu {

	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform:
		translateX(-50%)
		translateY(0);
}


/* ARROW ROTATION */

.bf-navigation .bf-nav__list
.menu-item-has-children:hover > a::after {

	transform: rotate(180deg);
}


/* SUBMENU ITEMS */

.bf-navigation .bf-nav__list .sub-menu li {

	display: block;

	margin: 0;
	padding: 0;

	list-style: none;
}


/* SUBMENU LINKS */

.bf-navigation .bf-nav__list .sub-menu li a {

	display: flex;
	align-items: center;

	width: 100%;

	box-sizing: border-box;

	padding: 11px 13px;

	border-radius: 10px;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	color: #17213d;

	transition:
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}


/* HOVER */

.bf-navigation .bf-nav__list .sub-menu li a:hover {

	background:
		linear-gradient(
			105deg,
			rgba(65, 103, 255, 0.08),
			rgba(120, 81, 255, 0.08)
		);

	color: #4b62ff;

	transform: translateX(3px);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.bf-navigation .bf-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu {

		position: static;

		width: 100%;

		transform: none;

		margin-top: 8px;

		box-shadow: none;

		opacity: 1;
		visibility: visible;
		pointer-events: auto;

		display: none;
	}

	.bf-navigation .bf-nav__list
	.menu-item-has-children:hover > .sub-menu {

		display: block;

	}

}
/* ==========================================================
   BREFECT — SERVICES DROPDOWN HOVER FIX
   ========================================================== */

.bf-navigation .bf-nav__list
.menu-item-has-children > .sub-menu {

	top: calc(100% + 6px);

}


/* Invisible hover bridge between Services and dropdown */

.bf-navigation .bf-nav__list
.menu-item-has-children > .sub-menu::before {

	content: "";

	position: absolute;

	left: 0;
	right: 0;

	top: -8px;

	height: 10px;

	background: transparent;

}


/* Keep dropdown open while mouse is over it */

.bf-navigation .bf-nav__list
.menu-item-has-children:hover > .sub-menu,
.bf-navigation .bf-nav__list
.menu-item-has-children:focus-within > .sub-menu {

	opacity: 1;

	visibility: visible;

	pointer-events: auto;

	transform:
		translateX(-50%)
		translateY(0);

}
/* ==========================================================
   BREFECT — SERVICES MENU FINAL POLISH
   ========================================================== */

/* Remove active/hover underline from Services */

.bf-navigation .bf-nav__list
.menu-item-has-children > a,
.bf-navigation .bf-nav__list
.menu-item-has-children > a:hover,
.bf-navigation .bf-nav__list
.menu-item-has-children.current-menu-item > a,
.bf-navigation .bf-nav__list
.menu-item-has-children.current-menu-ancestor > a {

	border-bottom: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}


/* Clean Services arrow */

.bf-navigation .bf-nav__list
.menu-item-has-children > a::after {

	content: "";

	width: 7px;
	height: 7px;

	margin-left: 7px;

	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;

	transform:
		rotate(45deg)
		translateY(-2px);

	transition:
		transform 0.2s ease;

}


/* Arrow on hover */

.bf-navigation .bf-nav__list
.menu-item-has-children:hover > a::after {

	transform:
		rotate(225deg)
		translateY(-1px);

}
/* ==========================================================
   BREFECT — CLEAN SERVICES NAV
   REMOVE DROPDOWN ARROW
   ========================================================== */

.bf-navigation .bf-nav__list
.menu-item-has-children > a::after {

	content: none !important;

	display: none !important;

}
/* ==========================================================
   BREFECT — ACTIVE MENU ITEM INDICATOR
   ========================================================== */

/* Normal menu links */

.bf-navigation .bf-nav__list > li > a {

	position: relative;

	display: inline-flex;
	align-items: center;

}


/* Active page indicator */

.bf-navigation .bf-nav__list > li.current-menu-item > a::before,
.bf-navigation .bf-nav__list > li.current-menu-ancestor > a::before,
.bf-navigation .bf-nav__list > li.current_page_item > a::before {

	content: "";

	position: absolute;

	left: 50%;
	bottom: -13px;

	width: 58%;

	height: 3px;

	transform: translateX(-50%);

	border-radius: 999px;

	background:
		linear-gradient(
			90deg,
			#4167ff,
			#7851ff
		);

}


/* Services parent when inside a service page */

.bf-navigation .bf-nav__list
.menu-item-has-children.current-menu-ancestor > a::before {

	width: 58%;

}


/* Do NOT create the active line on submenu links */

.bf-navigation .bf-nav__list .sub-menu a::before {

	display: none !important;

}
/* ==========================================================
   BREFECT — MOBILE MENU FINAL FIX
   ========================================================== */

@media (max-width: 767px) {

	/* Main navigation */

	.bf-navigation .bf-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0;
		margin: 0;
		padding: 0;
	}


	/* Every main menu item */

	.bf-navigation .bf-nav__list > li {
		position: relative;
		width: 100%;
		margin: 0;
		padding: 0;
	}


	/* Main menu links */

	.bf-navigation .bf-nav__list > li > a {
		display: flex;
		align-items: center;
		width: 100%;
		box-sizing: border-box;
		padding: 17px 22px;
	}


	/* ======================================================
	   SERVICES SUBMENU
	   ====================================================== */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu {

		/* Remove desktop positioning */

		position: static !important;

		left: auto !important;
		right: auto !important;
		top: auto !important;

		width: 100% !important;
		min-width: 0 !important;

		margin: 0 !important;

		padding: 0 12px 8px !important;

		box-sizing: border-box;

		transform: none !important;

		border: 0;

		border-radius: 0;

		box-shadow: none;

		background: transparent;

		backdrop-filter: none;

		opacity: 1;
		visibility: visible;
		pointer-events: auto;

	}


	/* Submenu list */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu li {

		width: 100%;
		margin: 0;
		padding: 0;

		list-style: none;
	}


	/* Submenu links */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu li a {

		display: flex;

		align-items: center;

		width: 100%;

		box-sizing: border-box;

		padding: 14px 14px 14px 28px;

		border-radius: 8px;

		border-bottom:
			1px solid rgba(30, 45, 90, 0.07);

		font-size: 13px;

		line-height: 1.4;

		color: #26324f;

		white-space: normal;

	}


	/* Last submenu item */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu li:last-child a {

		border-bottom: 0;

	}


	/* Remove desktop hover movement */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu li a:hover {

		transform: none;

		background:
			rgba(65, 103, 255, 0.05);

	}


	/* ======================================================
	   SERVICES ACTIVE LINE
	   ====================================================== */

	.bf-navigation .bf-nav__list
	.menu-item-has-children.current-menu-ancestor > a::before,
	.bf-navigation .bf-nav__list
	.menu-item-has-children.current-menu-item > a::before {

		left: 22px;

		width: 32px;

		transform: none;

		bottom: 5px;

	}


	/* ======================================================
	   REMOVE ARROW ON MOBILE
	   ====================================================== */

	.bf-navigation .bf-nav__list
	.menu-item-has-children > a::after {

		display: none !important;

	}

}
/* ==========================================================
   BREFECT — FINAL MOBILE SERVICES MENU
   ========================================================== */

@media (max-width: 767px) {


	/* ======================================================
	   MAIN MENU
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list {

		display: flex;

		flex-direction: column;

		align-items: stretch;

		width: 100%;

		margin: 0;

		padding: 0;

		gap: 0;

	}


	#bf-primary-navigation .bf-nav__list > li {

		position: relative;

		width: 100%;

		margin: 0;

		padding: 0;

	}


	/* ======================================================
	   MAIN LINKS
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list > li > a {

		position: relative;

		display: flex;

		align-items: center;

		width: 100%;

		box-sizing: border-box;

		padding: 18px 22px;

		border-bottom:
			1px solid rgba(20, 35, 80, 0.08);

	}


	/* ======================================================
	   ACTIVE PAGE LINE — SMALL
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	> li.current-menu-item > a::before,

	#bf-primary-navigation .bf-nav__list
	> li.current-menu-ancestor > a::before,

	#bf-primary-navigation .bf-nav__list
	> li.current_page_item > a::before {

		content: "";

		position: absolute;

		left: 22px;

		bottom: 5px;

		width: 32px;

		height: 3px;

		transform: none;

		border-radius: 99px;

		background:
			linear-gradient(
				90deg,
				#4167ff,
				#7851ff
			);

	}


	/* ======================================================
	   SERVICES SUBMENU
	   HIDDEN BY DEFAULT
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	.menu-item-has-children > .sub-menu {

		display: none !important;

		position: static !important;

		width: 100% !important;

		min-width: 0 !important;

		margin: 0 !important;

		padding: 0 10px 8px 10px !important;

		transform: none !important;

		opacity: 1 !important;

		visibility: visible !important;

		pointer-events: auto;

		border: 0 !important;

		border-radius: 0 !important;

		box-shadow: none !important;

		background: transparent !important;

		backdrop-filter: none !important;

	}


	/* ======================================================
	   OPEN ONLY AFTER TAP
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	.menu-item-has-children.bf-mobile-services-open
	> .sub-menu {

		display: block !important;

	}


	/* ======================================================
	   KILL DESKTOP HOVER ON MOBILE
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	.menu-item-has-children:hover
	> .sub-menu {

		display: none !important;

	}


	#bf-primary-navigation .bf-nav__list
	.menu-item-has-children.bf-mobile-services-open:hover
	> .sub-menu {

		display: block !important;

	}


	/* ======================================================
	   SUBMENU ITEMS
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	.sub-menu li {

		width: 100%;

		margin: 0;

		padding: 0;

		list-style: none;

	}


	#bf-primary-navigation .bf-nav__list
	.sub-menu li a {

		display: block;

		width: 100%;

		box-sizing: border-box;

		padding: 14px 14px 14px 28px;

		font-size: 13px;

		line-height: 1.4;

		color: #26324f;

		border-bottom:
			1px solid rgba(20, 35, 80, 0.06);

	}


	#bf-primary-navigation .bf-nav__list
	.sub-menu li:last-child a {

		border-bottom: 0;

	}


	/* ======================================================
	   NO ARROW ON MOBILE
	   ====================================================== */

	#bf-primary-navigation .bf-nav__list
	.menu-item-has-children > a::after {

		display: none !important;

	}

}
/* ==========================================================
   BREFECT — MOBILE HEADER POSITION
   ========================================================== */

@media (max-width: 900px) {

	.bf-header__brand {
		transform: translateX(-14px) !important;
	}

	.bf-menu-toggle {
		transform: translateX(14px) !important;
	}

}
/* ==========================================================
   FOOTER LOGO — VISIBILITY POLISH
   ========================================================== */

.bf-footer__logo-image {
	filter:
		brightness(1.35)
		saturate(1.15)
		drop-shadow(0 4px 14px rgba(98, 117, 255, 0.22));

	transition: filter 0.25s ease;
}

.bf-footer__logo:hover .bf-footer__logo-image {
	filter:
		brightness(1.5)
		saturate(1.2)
		drop-shadow(0 6px 18px rgba(98, 117, 255, 0.32));
}
/* ==========================================================
   FOOTER LOGO — VISIBILITY
   ========================================================== */

.bf-footer__logo-image {
	filter:
		brightness(1.65)
		saturate(1.10)
		contrast(1.05)
		drop-shadow(0 0 12px rgba(98, 117, 255, 0.18));

	transition: filter 0.25s ease;
}
/* ==========================================================
   BREFECT FOOTER — NEWSLETTER / SUBSCRIBE
   FINAL POLISH
   ========================================================== */

.bf-footer__subscribe {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;

	width: 100% !important;
	box-sizing: border-box !important;

	margin: 60px 0 0 !important;
	padding: 34px 36px !important;

	gap: 50px !important;

	border: 1px solid rgba(255, 255, 255, 0.10) !important;
	border-radius: 24px !important;

	background: rgba(255, 255, 255, 0.045) !important;

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.14) !important;

	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
}


/* ==========================================================
   TEXT
   ========================================================== */

.bf-footer__subscribe-content {
	flex: 1 1 auto !important;
	max-width: 620px !important;
	margin: 0 !important;
}

.bf-footer__subscribe-content .bf-footer__heading {
	display: block !important;

	margin: 0 0 10px !important;

	color: #ffffff !important;

	font-size: 0.78rem !important;
	font-weight: 800 !important;

	line-height: 1.2 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
}

.bf-footer__subscribe-content h3 {
	margin: 0 0 12px !important;

	color: #ffffff !important;

	font-size: clamp(1.5rem, 2vw, 2rem) !important;
	font-weight: 800 !important;

	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
}

.bf-footer__subscribe-content p {
	max-width: 600px !important;

	margin: 0 !important;

	color: rgba(255, 255, 255, 0.58) !important;

	font-size: 0.92rem !important;
	line-height: 1.65 !important;
}


/* ==========================================================
   FORM
   ========================================================== */

.bf-footer__subscribe-form {
	display: flex !important;
	align-items: center !important;

	flex: 0 0 auto !important;

	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;

	gap: 10px !important;
}


/* EMAIL INPUT */

.bf-footer__subscribe-form input[type="email"] {
	display: block !important;

	width: 290px !important;
	min-width: 290px !important;
	height: 52px !important;
	min-height: 52px !important;

	box-sizing: border-box !important;

	margin: 0 !important;
	padding: 0 20px !important;

	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 999px !important;

	background: rgba(255, 255, 255, 0.08) !important;

	color: #ffffff !important;

	font-family: inherit !important;
	font-size: 0.92rem !important;
	line-height: 1 !important;

	outline: none !important;

	box-shadow: none !important;

	appearance: none !important;
	-webkit-appearance: none !important;
}

.bf-footer__subscribe-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.48) !important;
	opacity: 1 !important;
}

.bf-footer__subscribe-form input[type="email"]:focus {
	border-color: rgba(98, 117, 255, 0.65) !important;

	background: rgba(255, 255, 255, 0.10) !important;

	box-shadow:
		0 0 0 3px rgba(98, 117, 255, 0.12) !important;
}


/* ==========================================================
   SUBSCRIBE BUTTON
   ========================================================== */

.bf-footer__subscribe-form .bf-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	height: 52px !important;
	min-height: 52px !important;

	margin: 0 !important;
	padding: 0 26px !important;

	border: 0 !important;
	border-radius: 999px !important;

	white-space: nowrap !important;

	cursor: pointer !important;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

	.bf-footer__subscribe {
		flex-direction: column !important;
		align-items: stretch !important;

		gap: 24px !important;

		margin-top: 45px !important;
		padding: 28px 24px !important;
	}


	.bf-footer__subscribe-content {
		width: 100% !important;
		max-width: none !important;
	}


	.bf-footer__subscribe-form {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;

		width: 100% !important;

		gap: 10px !important;
	}


	.bf-footer__subscribe-form input[type="email"] {
		width: 100% !important;
		min-width: 0 !important;
	}


	.bf-footer__subscribe-form .bf-button {
		width: 100% !important;
	}

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

	.bf-footer__subscribe {
		padding: 24px 20px !important;
		border-radius: 20px !important;
	}

	.bf-footer__subscribe-content h3 {
		font-size: 1.3rem !important;
	}

	.bf-footer__subscribe-content p {
		font-size: 0.86rem !important;
	}

}
/* ==========================================================
   BREFECT — HOME SERVICES
   FINAL VERSION
   COMPACT • PREMIUM • 3D • MOUSE INTERACTIVE
   ========================================================== */

.bf-services {
	position: relative;
	padding: 65px 0;
	overflow: hidden;
	background: #fff;
}


/* ==========================================================
   SECTION HEADER
   ========================================================== */

.bf-services__header {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: end;
	gap: 40px;
	margin-bottom: 30px;
}

.bf-services__heading {
	min-width: 0;
}

.bf-services__header h2 {
	margin: 10px 0 0;
	max-width: 650px;

	color: var(--bf-navy);

	font-size: clamp(2.3rem, 4vw, 4rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.bf-services__header h2 span {
	display: block;

	background: var(--bf-gradient);
	-webkit-background-clip: text;
	background-clip: text;

	color: transparent;
}

.bf-services__intro {
	max-width: 430px;
	margin: 0 0 3px auto;

	color: var(--bf-muted);

	font-size: 0.92rem;
	line-height: 1.65;
}


/* ==========================================================
   SERVICES GRID
   ========================================================== */

.bf-services__grid {
	display: grid !important;

	grid-template-columns:
		repeat(3, minmax(0, 1fr)) !important;

	gap: 16px !important;

	perspective: 1400px;
}


/* ==========================================================
   SERVICE CARD
   ========================================================== */

.bf-service-card {
	position: relative;

	display: flex !important;
	flex-direction: column !important;

	width: 100%;

	height: 285px !important;
	min-height: 285px !important;

	box-sizing: border-box;

	padding: 18px !important;

	overflow: hidden;

	border: 1px solid rgba(56, 103, 255, 0.11);

	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.98),
			rgba(247, 249, 255, 0.95)
		);

	box-shadow:
		0 8px 25px rgba(21, 35, 90, 0.045);

	color: var(--bf-navy);

	text-decoration: none;

	cursor: pointer;

	transform-style: preserve-3d;

	transform:
		perspective(1200px)
		translateZ(0);

	transition:
		box-shadow 420ms ease,
		border-color 420ms ease;
}


/* ==========================================================
   MOUSE FOLLOW GLOW
   ========================================================== */

.bf-service-card__glow {
	position: absolute;

	top: var(--bf-mouse-y, 50%);
	left: var(--bf-mouse-x, 50%);

	width: 200px;
	height: 200px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgba(76, 102, 255, 0.15) 0%,
			rgba(112, 80, 255, 0.07) 35%,
			transparent 72%
		);

	transform:
		translate(-50%, -50%)
		translateZ(-10px);

	opacity: 0;

	pointer-events: none;

	transition:
		opacity 280ms ease;
}

.bf-service-card:hover .bf-service-card__glow {
	opacity: 1;
}


/* ==========================================================
   CARD TOP
   ========================================================== */

.bf-service-card__top {
	position: relative;
	z-index: 5;

	display: flex;

	align-items: center;
	justify-content: space-between;

	flex: 0 0 auto;
}

.bf-service-card__number {
	color: var(--bf-blue);

	font-size: 0.72rem;

	font-weight: 800;

	letter-spacing: 0.08em;
}


/* ==========================================================
   ARROW
   ========================================================== */

.bf-service-card__arrow {
	display: grid;

	place-items: center;

	width: 34px;
	height: 34px;

	box-sizing: border-box;

	border:
		1px solid
		rgba(56, 103, 255, 0.12);

	border-radius: 50%;

	background:
		rgba(255, 255, 255, 0.84);

	color: var(--bf-navy);

	font-size: 0.9rem;

	transform: translateZ(25px);

	transition:
		background 300ms ease,
		color 300ms ease,
		box-shadow 300ms ease;
}

.bf-service-card:hover .bf-service-card__arrow {
	background: var(--bf-gradient);

	color: #fff;

	box-shadow:
		0 8px 20px
		rgba(56, 103, 255, 0.22);
}


/* ==========================================================
   SERVICE IMAGE — LARGE
   ========================================================== */

.bf-service-card__visual {
	position: relative;
	z-index: 3;

	display: flex;

	align-items: center;
	justify-content: center;

	height: 140px;

	margin: -2px 0 0;

	transform-style: preserve-3d;

	transform: translateZ(25px);

	pointer-events: none;
}

.bf-service-card__visual img {
	display: block;

	width: 170px !important;
	height: 170px !important;

	max-width: none !important;

	object-fit: contain;

	transform: translateZ(25px);

	filter:
		drop-shadow(
			0 10px 18px
			rgba(46, 62, 150, 0.10)
		);

	transition:
		transform 450ms
		cubic-bezier(.2,.8,.2,1),

		filter 450ms ease;
}

.bf-service-card:hover
.bf-service-card__visual img {

	filter:
		drop-shadow(
			0 16px 28px
			rgba(46, 62, 150, 0.18)
		);
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.bf-service-card__content {
	position: relative;
	z-index: 4;

	margin-top: auto;

	transform: translateZ(20px);
}

.bf-service-card__content h3 {
	margin: 0 0 6px;

	color: var(--bf-navy);

	font-size: 1.08rem;

	font-weight: 800;

	line-height: 1.18;

	letter-spacing: -0.025em;
}

.bf-service-card__content p {
	max-width: 95%;

	margin: 0;

	color: var(--bf-muted);

	font-size: 0.78rem;

	line-height: 1.42;
}


/* ==========================================================
   CARD HOVER
   ========================================================== */

.bf-service-card:hover {

	border-color:
		rgba(56, 103, 255, 0.24);

	box-shadow:
		0 20px 45px
		rgba(40, 55, 130, 0.10),

		0 0 0 1px
		rgba(56, 103, 255, 0.035);
}


/* ==========================================================
   REMOVE OLD VIEW ALL SERVICES
   ========================================================== */

.bf-services__footer {
	display: none !important;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-services {
		padding: 55px 0;
	}

	.bf-services__header {
		grid-template-columns: 1fr;

		gap: 16px;
	}

	.bf-services__intro {
		margin: 0;
	}

	.bf-services__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr))
			!important;
	}

	.bf-service-card {
		height: 280px !important;
		min-height: 280px !important;
	}

	.bf-service-card__visual {
		height: 125px;
	}

	.bf-service-card__visual img {
		width: 145px !important;
		height: 145px !important;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-services {
		padding: 50px 0;
	}

	.bf-services__header {
		margin-bottom: 24px;
	}

	.bf-services__header h2 {
		font-size: 2.35rem;
	}

	.bf-services__grid {
		grid-template-columns: 1fr !important;

		gap: 12px !important;
	}

	.bf-service-card {
		height: 245px !important;
		min-height: 245px !important;

		padding: 16px !important;

		border-radius: 18px;
	}

	.bf-service-card__visual {
		height: 90px;
	}

	.bf-service-card__visual img {
		width: 95px !important;
		height: 95px !important;
	}

	.bf-service-card__content h3 {
		font-size: 1.05rem;
	}

	.bf-service-card__content p {
		font-size: 0.77rem;
		line-height: 1.4;
	}
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-service-card,
	.bf-service-card__visual img,
	.bf-service-card__arrow,
	.bf-service-card__glow {

		transition: none !important;
	}
}
/* ==========================================================
   BREFECT — LEGAL PAGES
   PRIVACY POLICY + TERMS & CONDITIONS
   PREMIUM • CLEAN • RESPONSIVE
   ========================================================== */

.bf-legal-page {
	position: relative;
	padding: 70px 0 100px;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 8% 10%,
			rgba(65, 105, 255, 0.07),
			transparent 28%
		),
		radial-gradient(
			circle at 92% 20%,
			rgba(130, 80, 255, 0.07),
			transparent 28%
		),
		#ffffff;
}


/* ==========================================================
   INTRO
   ========================================================== */

.bf-legal-page__intro {
	max-width: 780px;
	margin: 0 auto 50px;
	text-align: center;
}

.bf-legal-page__eyebrow {
	display: inline-flex;
	align-items: center;

	padding: 7px 13px;

	border: 1px solid rgba(56, 103, 255, 0.13);
	border-radius: 999px;

	background: rgba(56, 103, 255, 0.055);

	color: var(--bf-blue);

	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1;
}

.bf-legal-page__intro h2 {
	margin: 17px 0 14px;

	color: var(--bf-navy);

	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.045em;
}

.bf-legal-page__intro > p {
	max-width: 650px;
	margin: 0 auto;

	color: var(--bf-muted);

	font-size: 0.94rem;
	line-height: 1.7;
}

.bf-legal-page__updated {
	display: inline-flex;

	margin-top: 20px;
	padding: 8px 14px;

	border-radius: 999px;

	background: rgba(20, 30, 80, 0.045);

	color: var(--bf-muted);

	font-size: 0.72rem;
	font-weight: 600;
}


/* ==========================================================
   CONTENT GRID
   ========================================================== */

.bf-legal-page__grid {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 16px;
}


/* ==========================================================
   LEGAL CARD
   ========================================================== */

.bf-legal-page__card {
	position: relative;

	padding: 28px;

	box-sizing: border-box;

	border: 1px solid rgba(56, 103, 255, 0.09);
	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.98),
			rgba(247, 249, 255, 0.94)
		);

	box-shadow:
		0 8px 28px rgba(25, 40, 95, 0.045);

	transition:
		transform 300ms ease,
		box-shadow 300ms ease,
		border-color 300ms ease;
}

.bf-legal-page__card:hover {
	transform: translateY(-3px);

	border-color:
		rgba(56, 103, 255, 0.19);

	box-shadow:
		0 16px 38px rgba(30, 45, 100, 0.075);
}


/* ==========================================================
   NUMBER
   ========================================================== */

.bf-legal-page__number {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	width: 34px;
	height: 34px;

	margin-bottom: 18px;

	border-radius: 10px;

	background:
		linear-gradient(
			135deg,
			rgba(56, 103, 255, 0.10),
			rgba(130, 80, 255, 0.09)
		);

	color: var(--bf-blue);

	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}


/* ==========================================================
   CARD HEADING
   ========================================================== */

.bf-legal-page__card h2 {
	margin: 0 0 13px;

	color: var(--bf-navy);

	font-size: 1.2rem;
	font-weight: 800;

	line-height: 1.2;

	letter-spacing: -0.025em;
}


/* ==========================================================
   CARD TEXT
   ========================================================== */

.bf-legal-page__card p {
	margin: 0 0 13px;

	color: var(--bf-muted);

	font-size: 0.86rem;

	line-height: 1.72;
}

.bf-legal-page__card p:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   LIST
   ========================================================== */

.bf-legal-page__card ul {
	margin: 13px 0 0;

	padding-left: 19px;

	color: var(--bf-muted);

	font-size: 0.86rem;

	line-height: 1.7;
}

.bf-legal-page__card li {
	margin-bottom: 5px;
}

.bf-legal-page__card li:last-child {
	margin-bottom: 0;
}


/* ==========================================================
   CONTACT SECTION
   ========================================================== */

.bf-legal-page__contact {
	grid-column: 1 / -1;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	margin-top: 14px;
	padding: 34px 38px;

	box-sizing: border-box;

	border: 1px solid rgba(56, 103, 255, 0.13);
	border-radius: 26px;

	background:
		linear-gradient(
			135deg,
			rgba(245, 247, 255, 0.98),
			rgba(250, 247, 255, 0.98)
		);

	box-shadow:
		0 16px 42px rgba(40, 55, 130, 0.065);
}


/* ==========================================================
   CONTACT CONTENT
   ========================================================== */

.bf-legal-page__contact-content {
	max-width: 580px;
}

.bf-legal-page__contact-content h2 {
	margin: 12px 0 8px;

	color: var(--bf-navy);

	font-size: 1.8rem;
	font-weight: 900;

	line-height: 1.05;
	letter-spacing: -0.04em;
}

.bf-legal-page__contact-content p {
	margin: 0;

	color: var(--bf-muted);

	font-size: 0.86rem;
	line-height: 1.65;
}


/* ==========================================================
   CONTACT BUTTONS
   ========================================================== */

.bf-legal-page__contact-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;

	gap: 10px;

	flex-shrink: 0;
}

.bf-legal-page__contact-actions a {
	text-decoration: none;
}


/* ==========================================================
   SOFT TOP GLOW
   ========================================================== */

.bf-legal-page::before {
	content: "";

	position: absolute;

	top: -160px;
	left: 50%;

	width: 520px;
	height: 320px;

	transform: translateX(-50%);

	border-radius: 50%;

	background:
		radial-gradient(
			ellipse,
			rgba(75, 105, 255, 0.055),
			transparent 70%
		);

	pointer-events: none;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

	.bf-legal-page {
		padding: 60px 0 80px;
	}

	.bf-legal-page__grid {
		grid-template-columns: 1fr;
	}

	.bf-legal-page__contact {
		grid-column: auto;
	}

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

	.bf-legal-page {
		padding: 45px 0 65px;
	}

	.bf-legal-page__intro {
		margin-bottom: 32px;
	}

	.bf-legal-page__intro h2 {
		font-size: 2.15rem;
	}

	.bf-legal-page__intro > p {
		font-size: 0.85rem;
	}

	.bf-legal-page__grid {
		gap: 12px;
	}

	.bf-legal-page__card {
		padding: 22px;

		border-radius: 18px;
	}

	.bf-legal-page__card h2 {
		font-size: 1.08rem;
	}

	.bf-legal-page__card p,
	.bf-legal-page__card ul {
		font-size: 0.81rem;
		line-height: 1.65;
	}

	.bf-legal-page__contact {
		flex-direction: column;
		align-items: flex-start;

		padding: 26px 22px;

		border-radius: 20px;
	}

	.bf-legal-page__contact-content h2 {
		font-size: 1.55rem;
	}

	.bf-legal-page__contact-actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.bf-legal-page__contact-actions a {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.bf-legal-page__card {
		transition: none;
	}

	.bf-legal-page__card:hover {
		transform: none;
	}

}
/* ==========================================================
   BREFECT SERVICE CARDS — LARGE VISUALS
   ========================================================== */

.bf-service-card__visual {
	height: 125px !important;
	margin: 0 !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	overflow: visible !important;
}

.bf-service-card__visual img {
	display: block !important;

	width: 190px !important;
	height: 190px !important;

	max-width: none !important;
	max-height: none !important;

	object-fit: contain !important;

	transform: translateZ(30px);

	filter:
		drop-shadow(
			0 12px 24px rgba(46, 62, 150, 0.15)
		) !important;

	transition:
		transform 450ms cubic-bezier(.2,.8,.2,1),
		filter 450ms ease !important;
}


/* HOVER */

.bf-service-card:hover .bf-service-card__visual img {
	transform:
		translate3d(0, -8px, 50px)
		scale(1.06);

	filter:
		drop-shadow(
			0 18px 32px rgba(46, 62, 150, 0.20)
		) !important;
}


/* MOBILE */

@media (max-width: 600px) {

	.bf-service-card__visual {
		height: 115px !important;
	}

	.bf-service-card__visual img {
		width: 170px !important;
		height: 170px !important;
	}

}
/* ==========================================================
   BREFECT — SINGLE PORTFOLIO / CASE STUDY
   PREMIUM • MODERN • RESPONSIVE
   ========================================================== */

.bf-single-portfolio {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--bf-navy);
}


/* ==========================================================
   HERO
   ========================================================== */

.bf-single-portfolio__hero {
    position: relative;
    padding: 55px 0 75px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(76, 102, 255, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(112, 80, 255, 0.06),
            transparent 30%
        ),
        #ffffff;
}

.bf-single-portfolio__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 55px;
    color: var(--bf-navy);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.bf-single-portfolio__back:hover {
    color: var(--bf-blue);
    transform: translateX(-4px);
}

.bf-single-portfolio__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
    gap: 60px;
}

.bf-single-portfolio__title {
    max-width: 900px;
    margin: 12px 0 12px;
    color: var(--bf-navy);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.075em;
}

.bf-single-portfolio__client {
    margin: 0;
    color: var(--bf-muted);
    font-size: 0.95rem;
}

.bf-single-portfolio__client strong {
    color: var(--bf-navy);
}

.bf-single-portfolio__description {
    max-width: 480px;
    margin: 0 0 5px auto;
    color: var(--bf-muted);
    font-size: 1rem;
    line-height: 1.75;
}


/* ==========================================================
   SERVICES
   ========================================================== */

.bf-single-portfolio__services {
    margin-top: 55px;
}

.bf-single-portfolio__service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bf-single-portfolio__service {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid rgba(56, 103, 255, 0.15);
    border-radius: 999px;
    background: rgba(247, 249, 255, 0.85);
    color: var(--bf-navy);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(30, 45, 100, 0.04);
}


/* ==========================================================
   WEBSITE PREVIEW
   ========================================================== */

.bf-single-portfolio__preview {
    padding: 0 0 100px;
}

.bf-single-portfolio__browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 103, 255, 0.13);
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 35px 90px rgba(20, 35, 90, 0.10),
        0 8px 30px rgba(20, 35, 90, 0.05);
}

.bf-single-portfolio__browser-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(20, 35, 90, 0.07);
    background: rgba(249, 250, 255, 0.95);
}

.bf-single-portfolio__dots {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
}

.bf-single-portfolio__dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d7dbea;
}

.bf-single-portfolio__url {
    flex: 1;
    min-width: 0;
    padding: 8px 15px;
    overflow: hidden;
    border: 1px solid rgba(20, 35, 90, 0.06);
    border-radius: 999px;
    background: #ffffff;
    color: var(--bf-muted);
    font-size: 0.78rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bf-single-portfolio__image {
    position: relative;
    overflow: hidden;
    background: #f7f9ff;
}

.bf-single-portfolio__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 850px;
    object-fit: cover;
    object-position: top center;
}

.bf-single-portfolio__placeholder {
    display: grid;
    place-items: center;
    min-height: 500px;
    background:
        linear-gradient(
            135deg,
            #f8f9ff,
            #eef1ff
        );
    color: var(--bf-muted);
    font-size: 1.2rem;
    font-weight: 700;
}


/* ==========================================================
   PROJECT DETAILS
   ========================================================== */

.bf-single-portfolio__details {
    padding: 110px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f9ff 100%
        );
}

.bf-single-portfolio__content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.bf-single-portfolio__content > div:first-child {
    position: sticky;
    top: 100px;
}

.bf-single-portfolio__content h2 {
    margin: 12px 0 0;
    color: var(--bf-navy);
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.bf-single-portfolio__body {
    display: grid;
    gap: 24px;
}

.bf-single-portfolio__info-block {
    padding: 30px;
    border: 1px solid rgba(56, 103, 255, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
        0 15px 45px rgba(25, 40, 100, 0.05);
}

.bf-single-portfolio__info-block h3 {
    margin: 0 0 12px;
    color: var(--bf-navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.bf-single-portfolio__info-block p {
    margin: 0;
    color: var(--bf-muted);
    font-size: 1rem;
    line-height: 1.8;
}


/* ==========================================================
   SERVICE RESULTS SECTION
   ========================================================== */

.bf-single-portfolio__service-results {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
}

.bf-single-portfolio__section-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.bf-single-portfolio__section-heading h2 {
    margin: 12px 0 18px;
    color: var(--bf-navy);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.bf-single-portfolio__section-heading p {
    max-width: 620px;
    margin: 0;
    color: var(--bf-muted);
    font-size: 1rem;
    line-height: 1.7;
}


/* ==========================================================
   SERVICE RESULT CARD
   ========================================================== */

.bf-single-portfolio__service-results-list {
    display: grid;
    gap: 24px;
}

.bf-single-portfolio__service-result {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 35px;
    padding: 45px;
    overflow: hidden;
    border: 1px solid rgba(56, 103, 255, 0.12);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(76, 102, 255, 0.10),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f7f9ff
        );
    box-shadow:
        0 18px 55px rgba(25, 40, 100, 0.06);
    transition:
        transform 400ms cubic-bezier(.2,.8,.2,1),
        box-shadow 400ms ease,
        border-color 400ms ease;
}

.bf-single-portfolio__service-result:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 103, 255, 0.22);
    box-shadow:
        0 28px 75px rgba(25, 40, 100, 0.10);
}

.bf-single-portfolio__service-number {
    color: var(--bf-blue);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-single-portfolio__service-result-heading {
    margin-bottom: 40px;
}

.bf-single-portfolio__service-result-heading h2 {
    margin: 8px 0 0;
    color: var(--bf-navy);
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.bf-single-portfolio__result-block {
    max-width: 900px;
    margin-top: 30px;
}

.bf-single-portfolio__result-block h3 {
    margin: 0 0 10px;
    color: var(--bf-navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.bf-single-portfolio__result-block p {
    margin: 0;
    color: var(--bf-muted);
    font-size: 1rem;
    line-height: 1.8;
}


/* ==========================================================
   SCREENSHOTS
   ========================================================== */

.bf-single-portfolio__screenshots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.bf-single-portfolio__screenshots a {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(56, 103, 255, 0.10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(25, 40, 100, 0.06);
}

.bf-single-portfolio__screenshots img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition:
        transform 450ms cubic-bezier(.2,.8,.2,1);
}

.bf-single-portfolio__screenshots a:hover img {
    transform: scale(1.045);
}


/* ==========================================================
   TECHNOLOGIES
   ========================================================== */

.bf-single-portfolio__technologies {
    padding: 75px 0;
    border-top: 1px solid rgba(20, 35, 90, 0.08);
    background: #f8f9ff;
}

.bf-single-portfolio__technology-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bf-single-portfolio__technology-inner p {
    max-width: 700px;
    margin: 0;
    color: var(--bf-muted);
    font-size: 1rem;
    line-height: 1.7;
}


/* ==========================================================
   ACTIONS
   ========================================================== */

.bf-single-portfolio__actions-section {
    padding: 70px 0;
    background: #ffffff;
}

.bf-single-portfolio__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bf-single-portfolio__actions .bf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* ==========================================================
   FOOTER BACK LINK
   ========================================================== */

.bf-single-portfolio__footer {
    padding: 25px 0 60px;
    border-top: 1px solid rgba(20, 35, 90, 0.08);
}

.bf-single-portfolio__footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bf-navy);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.bf-single-portfolio__footer a:hover {
    color: var(--bf-blue);
    transform: translateX(-4px);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .bf-single-portfolio__hero {
        padding: 45px 0 65px;
    }

    .bf-single-portfolio__heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bf-single-portfolio__description {
        margin: 0;
        max-width: 650px;
    }

    .bf-single-portfolio__title {
        font-size: clamp(3.2rem, 10vw, 6rem);
    }

    .bf-single-portfolio__preview {
        padding-bottom: 75px;
    }

    .bf-single-portfolio__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bf-single-portfolio__content > div:first-child {
        position: static;
    }

    .bf-single-portfolio__service-result {
        grid-template-columns: 60px minmax(0, 1fr);
        padding: 35px;
    }

    .bf-single-portfolio__screenshots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .bf-single-portfolio__hero {
        padding: 35px 0 50px;
    }

    .bf-single-portfolio__back {
        margin-bottom: 40px;
    }

    .bf-single-portfolio__title {
        font-size: clamp(3rem, 16vw, 4.8rem);
        letter-spacing: -0.065em;
    }

    .bf-single-portfolio__description {
        font-size: 0.92rem;
    }

    .bf-single-portfolio__services {
        margin-top: 40px;
    }

    .bf-single-portfolio__service {
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .bf-single-portfolio__browser {
        border-radius: 18px;
    }

    .bf-single-portfolio__browser-bar {
        min-height: 48px;
        padding: 8px 10px;
        gap: 10px;
    }

    .bf-single-portfolio__url {
        font-size: 0.68rem;
    }

    .bf-single-portfolio__preview {
        padding-bottom: 55px;
    }

    .bf-single-portfolio__details {
        padding: 70px 0;
    }

    .bf-single-portfolio__content h2 {
        font-size: 2.8rem;
    }

    .bf-single-portfolio__info-block {
        padding: 22px;
        border-radius: 18px;
    }

    .bf-single-portfolio__service-results {
        padding: 75px 0;
    }

    .bf-single-portfolio__section-heading {
        margin-bottom: 40px;
    }

    .bf-single-portfolio__section-heading h2 {
        font-size: 3rem;
    }

    .bf-single-portfolio__service-result {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 20px;
        border-radius: 22px;
    }

    .bf-single-portfolio__service-number {
        font-size: 0.75rem;
    }

    .bf-single-portfolio__service-result-heading {
        margin-bottom: 30px;
    }

    .bf-single-portfolio__service-result-heading h2 {
        font-size: 2.5rem;
    }

    .bf-single-portfolio__result-block {
        margin-top: 25px;
    }

    .bf-single-portfolio__result-block p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .bf-single-portfolio__screenshots {
        grid-template-columns: 1fr;
    }

    .bf-single-portfolio__technologies {
        padding: 55px 0;
    }

    .bf-single-portfolio__technology-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .bf-single-portfolio__actions-section {
        padding: 50px 0;
    }

    .bf-single-portfolio__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bf-single-portfolio__actions .bf-button {
        width: 100%;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .bf-single-portfolio__back,
    .bf-single-portfolio__service-result,
    .bf-single-portfolio__screenshots img,
    .bf-single-portfolio__footer a {
        transition: none !important;
    }

    .bf-single-portfolio__service-result:hover {
        transform: none;
    }

    .bf-single-portfolio__screenshots a:hover img {
        transform: none;
    }

}
/* ==========================================================
   BREFECT PORTFOLIO — SPACING REFINEMENT
   Reduce excessive vertical whitespace
   ========================================================== */


/* ----------------------------------------------------------
   PROJECT HERO
   ---------------------------------------------------------- */

.bf-single-portfolio__hero {
    padding-top: 35px;
    padding-bottom: 45px;
}

.bf-single-portfolio__back {
    margin-bottom: 35px;
}


/* ----------------------------------------------------------
   WEBSITE PREVIEW
   ---------------------------------------------------------- */

.bf-single-portfolio__preview {
    padding-bottom: 55px;
}


/* ----------------------------------------------------------
   PROJECT DETAILS
   ---------------------------------------------------------- */

.bf-single-portfolio__details {
    padding-top: 65px;
    padding-bottom: 65px;
}

.bf-single-portfolio__content {
    gap: 55px;
}


/* ----------------------------------------------------------
   SERVICE RESULTS
   ---------------------------------------------------------- */

.bf-single-portfolio__service-results {
    padding-top: 70px;
    padding-bottom: 70px;
}

.bf-single-portfolio__section-heading {
    margin-bottom: 40px;
}


/* ----------------------------------------------------------
   SERVICE RESULT CARD
   ---------------------------------------------------------- */

.bf-single-portfolio__service-result {
    padding-top: 32px;
    padding-bottom: 32px;
}

.bf-single-portfolio__service-result-heading {
    margin-bottom: 28px;
}

.bf-single-portfolio__result-block {
    margin-top: 20px;
}


/* ----------------------------------------------------------
   TECHNOLOGIES
   ---------------------------------------------------------- */

.bf-single-portfolio__technologies {
    padding-top: 45px;
    padding-bottom: 45px;
}


/* ----------------------------------------------------------
   ACTION BUTTONS
   ---------------------------------------------------------- */

.bf-single-portfolio__actions-section {
    padding-top: 45px;
    padding-bottom: 45px;
}


/* ----------------------------------------------------------
   FOOTER BACK LINK
   ---------------------------------------------------------- */

.bf-single-portfolio__footer {
    padding-top: 20px;
    padding-bottom: 40px;
}


/* ==========================================================
   MOBILE SPACING
   ========================================================== */

@media (max-width: 600px) {

    .bf-single-portfolio__hero {
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .bf-single-portfolio__back {
        margin-bottom: 28px;
    }

    .bf-single-portfolio__preview {
        padding-bottom: 35px;
    }

    .bf-single-portfolio__details {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .bf-single-portfolio__service-results {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .bf-single-portfolio__section-heading {
        margin-bottom: 30px;
    }

    .bf-single-portfolio__service-result {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .bf-single-portfolio__technologies {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .bf-single-portfolio__actions-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .bf-single-portfolio__footer {
        padding-top: 15px;
        padding-bottom: 30px;
    }

}
/* Remove top portfolio back link */
.bf-single-portfolio__back {
    display: none !important;
}
/* Remove bottom portfolio back link */
.bf-single-portfolio__footer {
    display: none !important;
}
/* ==========================================================
   404 PAGE
   ========================================================== */

.bf-404-page {
	min-height: 70vh;
}

.bf-404 {
	padding: 150px 0 160px;
	background:
		radial-gradient(
			circle at 50% 20%,
			rgba(86, 76, 255, 0.08),
			transparent 45%
		),
		#ffffff;
}

.bf-404__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.bf-404__number {
	margin: 10px 0 0;
	font-size: clamp(150px, 24vw, 340px);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.09em;
	color: var(--bf-navy);
}

.bf-404__title {
	margin: 45px 0 18px;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.05em;
	color: var(--bf-navy);
}

.bf-404__description {
	max-width: 600px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
	color: var(--bf-text-muted);
}

.bf-404__actions {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}


/* ==========================================================
   404 RESPONSIVE
   ========================================================== */

@media (max-width: 767px) {

	.bf-404 {
		padding: 100px 0 110px;
	}

	.bf-404__number {
		font-size: clamp(120px, 40vw, 210px);
	}

	.bf-404__title {
		margin-top: 35px;
		font-size: 42px;
	}

	.bf-404__description {
		max-width: 90%;
		font-size: 16px;
	}

	.bf-404__actions {
		flex-direction: column;
		width: 100%;
	}

	.bf-404__actions .bf-button {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

}
/* ==========================================================
   HONEYPOT SPAM PROTECTION
   Keep this field invisible to real visitors.
   ========================================================== */

.bf-contact-faq .bf-container {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: 80px;
	align-items: start;
}

.bf-contact-faq__header {
	margin: 0;
}

.bf-contact-faq__list {
	min-width: 0;
}

@media (max-width: 900px) {
	.bf-contact-faq .bf-container {
		grid-template-columns: 1fr;
		gap: 45px;
	}
}
/* ==========================================================
   BREFECT — HONEYPOT FIELD
   Hidden from real visitors, still available to bots
   ========================================================== */

.bf-project-field--honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.bf-project-field--honeypot label,
.bf-project-field--honeypot input {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}