/* ========================= VARIABLES & BASE ========================= */
:root {
	--nav-bg: #081a24;
	--accent: #ff8c6a;
	--text: #ffffff;
}

.pf-header,
.pf-header a {
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.pf-header-wrap {
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 20px;
}

/* ========================= STICKY HEADER ========================= */
.pf-header {
	position: fixed;
	top: 0;
	z-index: 1100;
	background: var(--nav-bg);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	width: 100%;
	max-width: 100%;
}

.pf-header.is-hidden {
	/*transform: translateY(-100%);*/
}

.pf-header.is-sticky {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ========================= HEADER LAYOUT ========================= */
.pf-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0px;
}

.pf-logo img {
	max-width: 170px;
}

/* ========================= DESKTOP MENU ========================= */
.pf-desktop-menu ul {
	align-items: center;
	display: flex;
	margin: 0;
	padding: 0;
}

.pf-desktop-menu li {
	position: relative;
	list-style: none;
	padding: 20px 20px;
	transition: all 0.3s ease;
}

.pf-desktop-menu li a {
	position: relative;
	list-style: none;
	padding: 10px 20px;
	transition: all 0.3s ease;
	border-radius: 25px;
}

.pf-desktop-menu li a:hover {
	background: #3a4b5a;
	border-radius: 25px;
	transition: all 0.3s ease;
}

.pf-desktop-menu .hs-menu-children-wrapper li {
	list-style: none;
	padding: 10px 30px;
	position: relative;
	transition: all 0.3s ease;
}

.pf-desktop-menu .hs-menu-children-wrapper li:hover {
	background: #243748;
	border-radius: 0 transition: all 0.3s ease;
}

.pf-desktop-menu .hs-menu-children-wrapper li:first-child,
.pf-desktop-menu .hs-menu-children-wrapper li:first-child:hover {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.pf-desktop-menu .hs-menu-children-wrapper li:last-child:hover,
.pf-desktop-menu .hs-menu-children-wrapper li:last-child {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.pf-desktop-menu .hs-menu-children-wrapper li a {
	padding: 0;
}

.pf-desktop-menu .hs-menu-children-wrapper li a:hover {
	border-radius: 0;
	background: transparent;
}

.pf-desktop-menu a {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text);
	text-decoration: none;
	position: relative;
}

/* Active state */
.pf-desktop-menu li.active>a {
	color: var(--accent);
}

.pf-desktop-menu li.active>a::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent);
}

/* ========================= MEGA MENU ========================= */
.pf-desktop-menu li:hover>ul {
	display: block;
}

.pf-desktop-menu li ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 285px;
	background: #3A4B5A;
	padding: 0;
	display: none;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	border-radius: 30px;
	transition: all 0.3s ease;
}

/* ========================= DESKTOP CTA ========================= */
/*.pf-desktop-cta { display: flex; gap: 16px; } .pf-btn-outline, .pf-btn-primary { height: 48px; padding: 0 26px; border-radius: 40px; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; } .pf-btn-outline { border: 2px solid var(--accent); color: var(--text); } .pf-btn-primary { background: var(--accent); color: #081a24; } */
/* ========================= DESKTOP CTA AREA ========================= */
.pf-desktop-cta {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
}

/* ========================= BUTTONS ========================= */
.pf-btn-outline {
	border: 2px solid #ff8c6a;
	background: transparent;
	color: #ffffff;
	padding: 14px 34px;
	border-radius: 40px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
}

.pf-btn-primary {
	background: #ff8c6a;
	color: #081a24;
	padding: 14px 42px;
	border-radius: 40px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
}

.book_demo_but {
	background: #f27d62;
	color: #243748;
	padding: 14px 42px;
	border-radius: 40px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pf-login-option:hover {
	background-color: #DA664B;
	color: #FFFFFF;
}

.book_demo_but:hover {
	background-color: #F7B1A1 !important;
	color: #243748;
}

/* ========================= DROPDOWN PANEL ========================= */
.pf-login-wrapper {
	position: relative;
}

.pf-login-dropdown {
	position: absolute;
	top: 70px;
	left: 0;
	width: 265px;
	padding: 30px;
	background: #3b4f5d;
	border-radius: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	/*transform: translateY(10px);*/
	transition: all 0.3s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Show on hover */
.pf-login-wrapper:hover .pf-login-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ========================= DROPDOWN BUTTONS ========================= */
.pf-login-option {
	background: #ff8c6a;
	color: #243748;
	text-align: center;
	padding: 16px;
	border-radius: 40px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pf-login-option:hover {
	/*transform: scale(1.03);*/
}

/* ========================= MOBILE ========================= */
.pf-mobile-toggle {
	display: none;
	font-size: 28px;
	background: none;
	border: none;
	color: #fff;
}

/* Mobile Menu */
.pf-mobile-header img {
	max-width: 170px;
}

.pf-mobile-menu {
	position: fixed;
	inset: 0;
	background: var(--nav-bg);
	transform: translateX(100%);
	transition: transform 0.35s ease;
	z-index: 9999;
	display: flex;
	flex-direction: column;
}

.pf-mobile-menu.active {
	transform: translateX(0);
}

body.menu-open {
	overflow: hidden;
}

.pf-mobile-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.pf-mobile-close {
	border: 2px solid var(--accent);
	background: none;
	color: #fff;
	font-size: 18px;
	padding: 6px 10px;
	border-radius: 6px;
}

/* Mobile Nav */
.pf-mobile-nav {
	flex: 1;
	padding: 20px;
}

.pf-mobile-nav li {
	list-style: none;
}

.pf-mobile-nav ul {
	margin: 0;
	padding: 0;
}

.pf-mobile-nav a {
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	font-weight: 600;
	text-decoration: none;
	font-size: 20px;
}

.pf-mobile-nav li.active>a {
	background: rgba(255, 255, 255, 0.08);
	padding-left: 12px;
	border-radius: 6px;
}

.pf-mobile-nav li.hs-item-has-children>a::after {
	content: '›';
	font-size: 22px;
	transition: transform 0.3s ease;
}

.pf-mobile-nav li.open>a::after {
	transform: rotate(90deg);
}

.pf-mobile-nav ul ul {
	display: none;
	padding-left: 16px;
}

/* Mobile CTA */
.pf-mobile-ctas {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: calc(100% - 40px);
}

.pf-mobile-ctas .full {
	text-align: center;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {

	.pf-desktop-menu,
	.pf-desktop-cta {
		display: none;
	}

	.pf-mobile-toggle {
		display: block;
	}
}