/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: linear-gradient(to bottom, #010305, #223c6b);
	min-height: 100vh;
}

/* ============================================
   Site Header
   ============================================ */

.site-header {
	background: #091f40;
	border-bottom: 1px solid #1f3351;
	height: 97px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__inner {
	max-width: 1178px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

/* Branding / Logo */

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	display: block;
	line-height: 0;
}

.site-logo {
	height: auto;
	max-height: 50px;
	width: auto;
}

/* Right side: nav + button */

.site-header__right {
	display: flex;
	align-items: center;
	gap: 30px;
	flex: 1;
	margin-left: 75px;
}

/* Navigation */

.main-navigation ul {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 50px;
	margin: 0;
	padding: 0;
}

.main-navigation ul li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: opacity 0.2s ease;
}

.main-navigation ul li a:hover {
	opacity: 0.75;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
	opacity: 1;
}

/* Dropdown Menus */

.submenu-toggle {
	display: none;
}

.main-navigation .menu-item-has-children {
	position: relative;
}

.main-navigation .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.main-navigation .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255, 255, 255, 0.85);
	border-bottom: 2px solid rgba(255, 255, 255, 0.85);
	transform: rotate(45deg);
	position: relative;
	top: -1px;
	left: 4px;
	transition: transform 0.25s ease, top 0.25s ease;
}

.main-navigation .menu-item-has-children:hover > a::after {
	transform: rotate(-135deg);
	top: 3px;
}

.main-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -20px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	width: max-content;
	background: #0c2347;
	border: 1px solid #1f3351;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	transform: translateY(6px);
	gap: 0;
	z-index: 200;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.main-navigation .menu-item-has-children::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 16px;
}

.main-navigation .sub-menu li {
	margin: 0;
	border-bottom: none;
	list-style: none;
}

.main-navigation .sub-menu li a {
	display: block;
	padding: 11px 20px;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
	text-align: left;
	transition: background 0.15s ease, color 0.15s ease;
	opacity: 1;
}

.main-navigation .sub-menu li a:hover {
	background: rgba(55, 87, 233, 0.15);
	color: #ffffff;
	opacity: 1;
}

/* Get Started Button */

.btn-get-started {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 173px;
	height: 47px;
	background: #3757E9;
	border: none;
	border-radius: 6px;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease;
	flex-shrink: 0;
}

.btn-get-started:hover {
	background: #2e4acc;
}

.site-header .btn-get-started {
	font-size: 18px;
	margin-left: auto;
}

.btn-get-started__icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/* ============================================
   Hero / Angled Background
   ============================================ */

.hero {
	position: relative;
	min-height: 875px;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #061228, #0e295a);
	clip-path: polygon(0 0, 100% 0, 100% 480px, 0 875px);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1198px;
	margin: 0 auto;
	padding: 0 30px;
}

.hero__stage {
	width: 100%;
	max-width: 1178px;
	height: 680px;
	position: relative;
}

.hero__bar {
	height: 107px;
	background: linear-gradient(to right, #0e2b5a, #0a2043);
	border: 1px solid #375383;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
}

.logo-slider {
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slider__track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	animation: logo-scroll 60s linear infinite;
	will-change: transform;
}

.logo-slider__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	width: 100px;
}

.logo-slider__item img {
	max-height: 22px;
	max-width: 100px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.6;
	filter: brightness(0) invert(1);
}

@keyframes logo-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.hero__cards {
	display: flex;
	gap: 35px;
	margin-top: 35px;
}

.hero__card {
	flex: 1;
	height: 478px !important;
	background: linear-gradient(to bottom, #092856, #08244d);
	border: 1px solid #344f77;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	padding: 35px;
	position: relative;
	overflow: hidden;
}

.hero__card-mascot {
	position: absolute;
	bottom: 0;
	right: 0;
	pointer-events: none;
	z-index: 3;
}

.hero__card-mascot--left {
	right: auto;
	left: 16px;
	bottom: -7px;
}

.hero__card--full {
	width: 100%;
	margin-top: 35px;
}

.hero__card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero__card-check {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
}

.hero__card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}

.hero__card-desc {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.33);
	margin-top: 15px;
	line-height: 28px;
}

.hero__card-image {
	margin-top: 30px;
	text-align: center;
	position: relative;
	border-radius: 7px;
	overflow: hidden;
	background: #ffffff;
	height: 300px;
}

.hero__card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to bottom, transparent, #ffffff);
	pointer-events: none;
	z-index: 2;
}

.js-fade-slider img {
	max-width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 200ms ease;
}

.js-fade-slider img:first-child {
	position: relative;
}

.js-fade-slider img.is-active {
	opacity: 1;
}

.hero__card-image--scroll {
	height: 300px;
}

.js-scroll-pan-placeholder {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
}

.js-scroll-pan-full {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
}

.js-scroll-pan-full.is-loaded {
	opacity: 1;
}

.js-scroll-pan-full.is-scrolling {
	animation: panDown 32s linear infinite;
}

.hero__cards > .hero__card:nth-child(2) .js-scroll-pan-full.is-scrolling {
	animation-duration: 140s;
}

.hero__cards:last-of-type > .hero__card:nth-child(2) .js-scroll-pan-full.is-scrolling {
	animation-duration: 26.5s;
}

@keyframes panDown {
	0% { transform: translateY(0); }
	85% { transform: translateY(calc(-100% + 300px)); }
	90% { transform: translateY(calc(-100% + 300px)); }
	100% { transform: translateY(0); }
}

.hero__stage-illustration {
	position: absolute;
	right: -76px;
	top: 50%;
	transform: translateY(calc(-50% + 46px));
	pointer-events: none;
	max-width: 488px !important;
	height: auto;
}

.hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 82px;
	font-weight: 700;
	line-height: 97px;
	text-align: left;
	margin: 0;
	padding-top: 83px;
}

.hero__heading-line1 {
	display: block;
	color: #d5e4ff;
}

.hero__heading-line2 {
	display: block;
	color: #ffffff;
}

.hero__btn {
	font-size: 24px;
	width: auto;
	height: auto;
	padding: 28px 50px;
}

.hero__btn-icon {
	width: auto;
	height: auto;
	margin-right: 12px;
	position: relative;
	top: -1px;
}

.hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 24px;
	text-align: left;
	margin: 0;
	max-width: 65%;
	line-height: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.hero__subtext-features {
	display: block;
	color: rgba(255, 255, 255, 0.39);
}

.hero__subtext-cta {
	display: block;
	color: #ffffff;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
	margin-top: 80px;
	padding: 0 20px;
}

.cta-section__inner {
	max-width: 1138px;
	margin: 0 auto;
	text-align: center;
	padding: 64px 60px;
	background: linear-gradient(135deg, #0e295a 0%, #092856 50%, #0a2043 100%);
	border: 1px solid #344f77;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.cta-section__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
	margin: 0;
}

.cta-section__text {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 34px;
	margin: 24px auto 0;
	max-width: 560px;
}

.cta-section__btn {
	font-size: 22px;
	width: auto;
	height: auto;
	padding: 24px 48px;
	margin-top: 40px;
}

.cta-section__btn-icon {
	width: auto;
	height: auto;
	margin-right: 8px;
}

.cta-section--light {
	background: #ffffff;
	margin-top: 0;
	padding: 120px 20px 120px;
}

.cta-section--light .cta-section__inner {
	background: #f5f7fb;
	border: 1px solid #e0e4ed;
	box-shadow: none;
	border-radius: 16px;
	padding: 72px 60px;
	position: relative;
	overflow: visible;
}

.cta-section__mascot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 180px;
	height: auto;
	pointer-events: none;
}

.cta-section--light .cta-section__heading {
	color: #1a2238;
}

.cta-section--light .cta-section__text {
	color: #6b7280;
}

.cta-section--light .cta-section__btn {
	background: linear-gradient(135deg, #3757E9, #2845d4);
	box-shadow: 0 4px 16px rgba(55, 87, 233, 0.3);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cta-section--light .cta-section__btn:hover {
	background: linear-gradient(135deg, #2e4acc, #1e38b8);
	box-shadow: 0 6px 24px rgba(55, 87, 233, 0.4);
	transform: translateY(-1px);
}

.cta-section--light ~ .site-footer {
	margin-top: 0;
}

/* ============================================
   Pricing — Hero
   ============================================ */

.pricing-hero {
	padding: 80px 20px 75px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.pricing-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.pricing-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.pricing-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.pricing-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 32px;
	margin: 16px 0 40px;
}

.pricing-hero__badge {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #3757E9;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: rgba(55, 87, 233, 0.1);
	border: 1px solid rgba(55, 87, 233, 0.25);
	border-radius: 20px;
	padding: 8px 24px;
}

.pricing-hero__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
}

.pricing-hero__amount {
	font-family: 'Montserrat', sans-serif;
	font-size: 120px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	margin-left: 25px;
}

.pricing-hero__currency {
	font-family: 'Montserrat', sans-serif;
	font-size: 52px;
	font-weight: 700;
	color: #ffffff;
	vertical-align: super;
}

.pricing-hero__period {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.35);
}

.pricing-hero__credit {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 32px;
	margin-top: 16px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-hero__btn {
	font-size: 24px;
	width: auto;
	height: auto;
	padding: 26px 64px;
	margin-top: 40px;
}

.pricing-hero__btn-icon {
	width: auto;
	height: auto;
	margin-right: 10px;
}

.pricing-hero__demo {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 24px;
}

.pricing-hero__demo-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s ease;
}

.pricing-hero__demo-link:hover {
	opacity: 0.8;
}

/* ============================================
   Pricing — Light Body & Features Grid
   ============================================ */

.pricing-body {
	background: #f7f8fc;
	padding: 64px 20px;
}

.pricing-body__inner {
	max-width: 1178px;
	margin: 0 auto;
}

.pricing-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.pricing-features__item {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 32px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.pricing-features__check {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex-shrink: 0;
	margin-top: 2px;
}

.pricing-features__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.pricing-features__desc {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #6b7280;
	line-height: 26px;
	margin-top: 8px;
}

.pricing-features__footnote {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #9ca3af;
	line-height: 26px;
	margin-top: 32px;
	text-align: center;
}

/* ============================================
   Tour Page
   ============================================ */

.tour__header {
	padding: 80px 20px 75px 20px;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.tour__header-inner {
	max-width: 1178px;
	margin: 0 auto;
	text-align: center;
}

.tour__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.tour__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 34px;
	margin: 20px auto 0;
	max-width: 600px;
}

.tour__content {
	background: #f7f8fc;
	padding-top: 48px;
	padding-bottom: 0;
}

.tour__chapters-bar {
	position: relative;
	z-index: 1;
	max-width: 1178px;
	margin: 0 auto;
	padding: 0 20px;
}

.tour__chapters-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 20px;
	background: #f1f3f8;
	border: 1px solid #d8dce6;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	cursor: pointer;
}

.tour__chapters-toggle-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #5a6479;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tour__chapters-toggle-arrow {
	font-size: 10px;
	color: #8892a6;
	transition: transform 0.25s ease;
}

.tour__chapters-toggle.is-open .tour__chapters-toggle-arrow {
	transform: rotate(180deg);
}

.tour__chapters-drawer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #f1f3f8;
	border-left: 1px solid #d8dce6;
	border-right: 1px solid #d8dce6;
	border-bottom: 1px solid #d8dce6;
	border-radius: 0;
}

.tour__chapters-drawer.is-open {
	max-height: 500px;
}

.tour__chapters-list {
	list-style: none;
	margin: 0;
	padding: 8px 0 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
}

.tour__chapter {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	cursor: pointer;
	transition: background 0.15s ease;
	border-radius: 6px;
}

.tour__chapter:hover {
	background: rgba(55, 87, 233, 0.06);
}

.tour__chapter.is-active {
	background: rgba(55, 87, 233, 0.1);
}

.tour__chapter.is-active .tour__chapter-label {
	color: #1a2238;
}

.tour__chapter.is-active .tour__chapter-time {
	color: #3757E9;
}

.tour__chapter-time {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #a0a8b8;
	flex-shrink: 0;
}

.tour__chapter-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #5a6479;
	transition: color 0.15s ease;
	white-space: nowrap;
}

.tour__video-container {
	position: relative;
}

.tour__play-btn {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s ease;
	z-index: 2;
}

.tour__play-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
}

.tour__play-btn-icon {
	width: 90px;
	height: 90px;
	object-fit: contain;
	background: #ffffff;
	border-radius: 50%;
	padding: 0;
}

.tour__video-wrap {
	position: relative;
	z-index: 1;
	max-width: 1178px;
	margin: 0 auto;
	padding: 0 20px;
	line-height: 0;
}

.tour__video {
	width: 100%;
	display: block;
	background: #000;
	border-radius: 0 0 10px 10px;
	border: 1px solid #d8dce6;
	border-top: none;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
	margin-top: 120px;
	background: #091f40;
	border-top: 1px solid #3d5982;
}

.site-footer__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-footer__brand {
	flex-shrink: 0;
}

.site-footer__logo-link {
	display: inline-block;
	line-height: 0;
}

.site-footer__logo {
	height: auto;
	max-height: 40px;
	width: auto;
}

.site-footer__tagline {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 22px;
	margin-top: 14px;
	max-width: 280px;
}

.footer-navigation ul {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 36px;
	margin: 0;
	padding: 0;
}

.footer-navigation ul li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-navigation ul li a:hover {
	color: #ffffff;
}

.site-footer__bottom {
	border-top: 1px solid #1f3351;
}

.site-footer__bottom-inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.site-info {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}

.site-footer__stripe {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.3);
}

.site-footer__stripe-img {
	height: 20px;
	width: auto;
	opacity: 0.4;
}


/* ============================================
   Hamburger Toggle (hidden on desktop)
   ============================================ */

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 200;
}

.menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #ffffff;
	margin: 5px 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Features Page
   ============================================ */

.features-hero {
	padding: 80px 20px 75px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.features-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.features-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.features-hero__badge {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #3757E9;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: rgba(55, 87, 233, 0.1);
	border: 1px solid rgba(55, 87, 233, 0.25);
	border-radius: 20px;
	padding: 8px 24px;
	margin-bottom: 28px;
}

.features-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.features-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 34px;
	margin: 20px auto 0;
	max-width: 700px;
}

/* Features — Quick Setup */

.quick-setup {
	background: #f7f8fc;
	padding: 64px 20px 0px 20px;
}

.quick-setup__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.quick-setup__img {
	width: 220px;
	height: auto;
	flex-shrink: 0;
	margin-right: -3px;
	margin-bottom: -23px;
	position: relative;
	top: -9px;
}

/* Features — Light body */

.features-body {
	background: #f7f8fc;
	border-bottom: 1px solid #e5e5e5;
}

.features-body__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 64px 20px 64px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.features-body .site-footer {
	margin-top: 0;
}

/* Features — Feature item */

.ft {
	display: flex;
	gap: 28px;
	padding: 40px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-bottom: 3px solid #e7e7e7;
	border-radius: 12px;
}

.ft__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: #eef1ff;
	border-radius: 12px;
	color: #3757E9;
}

.ft__icon svg {
	width: 22px;
	height: 22px;
}

.ft__content {
	flex: 1;
	min-width: 0;
}

.ft__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.3;
}

.ft__desc {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #6b7280;
	line-height: 28px;
	margin: 8px 0 0;
}

.ft__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.ft__list li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #4b5563;
	line-height: 28px;
	padding: 4px 0 4px 20px;
	position: relative;
}

.ft__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3757E9;
}

.ft__note {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #6b7280;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #e0e4ed;
}

.ft__note strong {
	color: #374151;
}

/* Features — Pipeline steps (light) */

.pipeline__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 20px;
}

.pipeline__step {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	border: 1px solid #e0e4ed;
	border-radius: 8px;
	padding: 12px 14px;
}

.pipeline__step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #3757E9;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.pipeline__step-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #374151;
}


/* ============================================
   Contact Page
   ============================================ */

.contact-hero {
	padding: 80px 20px 75px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.contact-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.contact-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.contact-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 34px;
	margin: 20px auto 0;
	max-width: 100%;
}

.contact-body {
	background: #f7f8fc;
	padding: 64px 20px;
}

.contact-body__inner {
	max-width: 1178px;
	margin: 0 auto;
}

/* Contact — FAQs */

.contact-faqs__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 24px;
}

.contact-faq {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
}

.contact-faq__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 16px;
}

.contact-faq__question {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

.contact-faq__arrow {
	font-size: 10px;
	color: #9ca3af;
	transition: transform 0.25s ease;
	flex-shrink: 0;
}

.contact-faq.is-open .contact-faq__arrow {
	transform: rotate(180deg);
}

.contact-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.contact-faq.is-open .contact-faq__answer {
	max-height: 400px;
}

.contact-faq__answer p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #4b5563;
	line-height: 28px;
	padding: 0 24px 20px;
	margin: 0;
}

/* Contact — Form */

.contact-form {
	margin-top: 56px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 48px;
}

.contact-form__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 32px;
}

.contact-form .frm_form_fields {
	margin: 0;
	padding: 0;
}

.contact-form .frm_primary_label {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}

.contact-form .frm_form_field {
	margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #111827;
	background: #f9fafb;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 12px 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #3757E9;
	box-shadow: 0 0 0 3px rgba(55, 87, 233, 0.1);
	background: #ffffff;
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.contact-form .frm_description {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
	margin-top: 4px;
}

.contact-form .frm_required {
	color: #3757E9;
}

.contact-form .frm_button_submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	background: #3757E9;
	border: none;
	border-radius: 6px;
	padding: 20px 48px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.contact-form .frm_button_submit:hover {
	background: #2e4acc;
}

.contact-form .frm_verify {
	display: none !important;
}

.contact-form .frm_submit {
	margin-top: 8px;
}

/* ============================================
   Blog — Hero
   ============================================ */

.blog-hero {
	padding: 80px 20px 75px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.blog-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.blog-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.blog-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.blog-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 34px;
	margin: 20px auto 0;
	max-width: 700px;
}

.blog-hero__category {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #3757E9;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	background: rgba(55, 87, 233, 0.12);
	border: 1px solid rgba(55, 87, 233, 0.3);
	border-radius: 20px;
	padding: 6px 20px;
	margin-bottom: 24px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.blog-hero__category:hover {
	background: rgba(55, 87, 233, 0.22);
}

.blog-hero__meta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.blog-hero__author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.blog-hero__author img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.blog-hero__author-info {
	text-align: left;
}

.blog-hero__author-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	display: block;
}

.blog-hero__author-details {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
}

.blog-hero__separator {
	margin: 0 6px;
}

/* Blog — Archive Grid */

.blog-body {
	background: #f7f8fc;
}

.blog-body__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 64px 20px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.blog-card {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.blog-card__image-link {
	display: block;
}

.blog-card__image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.04);
}

.blog-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card__category {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #3757E9;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	margin-bottom: 12px;
	align-self: flex-start;
}

.blog-card__category:hover {
	opacity: 0.75;
}

.blog-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	line-height: 1.35;
	margin: 0;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.blog-card__title a:hover {
	color: #3757E9;
}

.blog-card__excerpt {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #6b7280;
	line-height: 24px;
	margin: 10px 0 0;
	flex: 1;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #f0f1f5;
}

.blog-card__author {
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-card__author img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.blog-card__author-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}

.blog-card__date {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
}

/* Blog — Pagination */

.blog-pagination {
	margin-top: 48px;
	text-align: center;
}

.blog-pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.blog-pagination .page-numbers {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #6b7280;
	text-decoration: none;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid #e2e6ef;
	background: #ffffff;
	transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
	color: #3757E9;
	border-color: #3757E9;
}

.blog-pagination .page-numbers.current {
	background: #3757E9;
	color: #ffffff;
	border-color: #3757E9;
}

.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
	width: auto;
	padding: 0 20px;
	font-size: 14px;
}

/* Blog — Empty State */

.blog-empty {
	text-align: center;
	padding: 80px 20px;
}

.blog-empty__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin: 0;
}

.blog-empty__text {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #6b7280;
	margin: 12px 0 0;
}

/* ============================================
   Single Post — Layout
   ============================================ */

.single-body {
	background: #f7f8fc;
}

.single-body__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

/* Single — Breadcrumbs */

.single-breadcrumbs {
	margin-bottom: 32px;
}

.single-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}

.single-breadcrumbs__list li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #9ca3af;
}

.single-breadcrumbs__list li a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s ease;
}

.single-breadcrumbs__list li a:hover {
	color: #3757E9;
}

.single-breadcrumbs__list li + li::before {
	content: '/';
	margin-right: 6px;
	color: #d1d5db;
}

.single-breadcrumbs__list li[aria-current="page"] {
	color: #374151;
	font-weight: 500;
}

/* Single — Article Card */

.single-article {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	overflow: hidden;
}

.single-article__featured-image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.single-article__featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
}

/* Single — Article Content Typography */

.single-article__content {
	padding: 48px 48px 56px;
}

.single-article__content p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #374151;
	line-height: 1.8;
	margin: 0 0 24px;
}

.single-article__content p:last-child {
	margin-bottom: 0;
}

.single-article__content a {
	color: #3757E9;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}

.single-article__content a:hover {
	color: #2845d4;
}

.single-article__content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
	margin: 48px 0 20px;
}

.single-article__content h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.35;
	margin: 40px 0 16px;
}

.single-article__content h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #374151;
	line-height: 1.4;
	margin: 32px 0 12px;
}

.single-article__content h2:first-child,
.single-article__content h3:first-child,
.single-article__content h4:first-child {
	margin-top: 0;
}

.single-article__content ul,
.single-article__content ol {
	margin: 0 0 24px;
	padding: 0 0 0 24px;
}

.single-article__content ul {
	list-style: none;
	padding-left: 0;
}

.single-article__content ul li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #374151;
	line-height: 1.8;
	padding: 4px 0 4px 24px;
	position: relative;
}

.single-article__content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3757E9;
}

.single-article__content ol li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #374151;
	line-height: 1.8;
	padding: 4px 0;
}

.single-article__content ol li::marker {
	color: #3757E9;
	font-weight: 600;
}

.single-article__content blockquote {
	margin: 32px 0;
	padding: 24px 32px;
	border-left: 4px solid #3757E9;
	background: #f0f3ff;
	border-radius: 0 8px 8px 0;
}

.single-article__content blockquote p {
	font-size: 18px;
	font-style: italic;
	color: #374151;
	margin: 0;
}

.single-article__content blockquote cite {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	color: #6b7280;
	margin-top: 12px;
}

.single-article__content code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.875em;
	background: #f3f4f6;
	color: #e11d48;
	padding: 3px 7px;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
}

.single-article__content pre {
	margin: 32px 0;
	padding: 28px;
	background: #1e293b;
	border-radius: 10px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.single-article__content pre code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 15px;
	color: #e2e8f0;
	background: none;
	padding: 0;
	border: none;
	border-radius: 0;
	line-height: 1.7;
}

.single-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 8px 0;
}

.single-article__content figure {
	margin: 32px 0;
}

.single-article__content figure img {
	border-radius: 10px;
}

.single-article__content figcaption {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #9ca3af;
	text-align: center;
	margin-top: 10px;
}

.single-article__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 32px 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
}

.single-article__content table th {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #111827;
	background: #f9fafb;
	padding: 14px 16px;
	text-align: left;
	border-bottom: 2px solid #e5e7eb;
}

.single-article__content table td {
	color: #374151;
	padding: 14px 16px;
	border-bottom: 1px solid #f0f1f5;
}

.single-article__content table tr:last-child td {
	border-bottom: none;
}

.single-article__content hr {
	border: none;
	height: 1px;
	background: #e5e7eb;
	margin: 40px 0;
}

/* Single — Article Footer (Categories/Tags) */

.single-article__footer {
	padding: 32px 48px 40px;
	border-top: 1px solid #f0f1f5;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.single-article__taxonomies {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.single-article__tax-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

.single-article__tax-items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.single-article__tax-link {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #3757E9;
	text-decoration: none;
	background: #eef1ff;
	padding: 4px 14px;
	border-radius: 20px;
	transition: background 0.2s ease;
}

.single-article__tax-link:hover {
	background: #dde3ff;
}

/* Single — Author Box */

.single-author-box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 40px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 32px;
}

.single-author-box__avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
}

.single-author-box__label {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.single-author-box__name {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 4px 0 0;
}

.single-author-box__bio {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #6b7280;
	line-height: 26px;
	margin: 8px 0 0;
}

/* Single — Post Navigation */

.single-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
}

.single-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 24px;
	text-decoration: none;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.single-post-nav__link:hover {
	border-color: #3757E9;
	box-shadow: 0 4px 16px rgba(55, 87, 233, 0.08);
}

.single-post-nav__link--next {
	text-align: right;
}

.single-post-nav__direction {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
}

.single-post-nav__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

/* ============================================
   404 Page
   ============================================ */

.error-404-hero {
	padding: 80px 20px 75px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.error-404-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.error-404-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.error-404-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.error-404-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 34px;
	margin: 20px auto 0;
	max-width: 700px;
}

.error-404-body {
	background: #f7f8fc;
	padding: 80px 20px;
}

.error-404-body__inner {
	max-width: 1178px;
	margin: 0 auto;
}

.error-404-card {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 16px;
	padding: 72px 60px 64px;
	text-align: center;
	max-width: 620px;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}

.error-404-card__mascot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: auto;
	pointer-events: none;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.error-404-card__code {
	font-family: 'Montserrat', sans-serif;
	font-size: 120px;
	font-weight: 700;
	color: #3757E9;
	line-height: 1;
	margin: 0 0 16px;
	letter-spacing: -3px;
}

.error-404-card__text {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #6b7280;
	line-height: 30px;
	margin: 0 auto;
	max-width: 420px;
}

.error-404-card__actions {
	margin-top: 36px;
}

.error-404-card__btn {
	font-size: 18px;
	width: auto;
	height: auto;
	padding: 18px 40px;
	background: linear-gradient(135deg, #3757E9, #2845d4);
	box-shadow: 0 4px 16px rgba(55, 87, 233, 0.3);
	transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.error-404-card__btn:hover {
	background: linear-gradient(135deg, #2e4acc, #1e38b8);
	box-shadow: 0 6px 24px rgba(55, 87, 233, 0.4);
	transform: translateY(-1px);
}

.error-404-links__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #1a2238;
	text-align: center;
	margin: 56px 0 28px;
}

.error-404-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.error-404-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.error-404-link:hover {
	border-color: #c5cce8;
	box-shadow: 0 4px 16px rgba(55, 87, 233, 0.08);
	transform: translateY(-2px);
}

.error-404-link__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: #eef1ff;
	border-radius: 12px;
	color: #3757E9;
}

.error-404-link__icon svg {
	width: 22px;
	height: 22px;
}

.error-404-link__text {
	flex: 1;
	min-width: 0;
}

.error-404-link__label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #1a2238;
	line-height: 1.3;
}

.error-404-link__desc {
	display: block;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #6b7280;
	line-height: 1.4;
	margin-top: 2px;
}

/* ============================================
   Tablet — max-width: 1024px
   ============================================ */

@media (max-width: 1150px) {
	.hero__stage-illustration {
		max-width: 35% !important;
		height: auto;
		margin-right: 40px;
		margin-top: -48px;
	}
}

@media (max-width: 1024px) {
	.main-navigation ul {
		gap: 30px;
	}

	.main-navigation ul li a {
		font-size: 15px;
	}

	.main-navigation .sub-menu li a {
		font-size: 15px;
		padding: 9px 18px;
	}

	.main-navigation .sub-menu {
		width: max-content;
	}

	.site-header .btn-get-started {
		font-size: 14px;
		width: 150px;
		height: 42px;
	}

	.hero__heading {
		font-size: 56px;
		line-height: 68px;
		padding-top: 60px;
	}

	.hero__subtext {
		font-size: 20px;
		line-height: 34px;
		max-width: 500px;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.hero__stage {
		height: 550px;
	}

	.hero__btn {
		font-size: 20px;
		padding: 22px 40px;
	}

	.hero {
		min-height: 700px;
	}

	.hero__bg {
		clip-path: polygon(0 0, 100% 0, 100% 420px, 0 700px);
	}

	.cta-section {
		margin-top: 80px;
	}

	.cta-section__heading {
		font-size: 34px;
	}

	.cta-section__text {
		font-size: 18px;
		line-height: 30px;
	}

	.cta-section__btn {
		font-size: 20px;
		padding: 22px 40px;
	}

	.pricing-hero__amount {
		font-size: 100px;
	}

	.pricing-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour__heading {
		font-size: 44px;
	}

	.features-hero__heading {
		font-size: 44px;
	}

	.quick-setup__img {
		width: 180px;
	}

	.contact-hero__heading {
		font-size: 44px;
	}

	.blog-hero__heading {
		font-size: 44px;
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.error-404-hero__heading {
		font-size: 44px;
	}

	.error-404-hero__subtext {
		font-size: 18px;
		line-height: 30px;
	}

	.error-404-card__code {
		font-size: 100px;
	}

	.error-404-links {
		grid-template-columns: repeat(2, 1fr);
	}

}

/* ============================================
   Mobile — max-width: 768px
   ============================================ */

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.site-header {
		height: 70px;
	}

	.site-logo {
		max-height: 36px;
	}

	.site-header__right {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		bottom: 0;
		background: #091f40;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding: 40px 20px;
		gap: 0;
		z-index: 150;
		overflow-y: auto;
	}

	.site-header__right.is-open {
		display: flex;
	}

	.main-navigation {
		width: 100%;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.main-navigation ul li {
		width: 100%;
		border-bottom: 1px solid #1f3351;
	}

	.main-navigation ul li a {
		font-size: 18px;
		display: block;
		padding: 18px 20px;
		text-align: left;
	}

	.main-navigation .menu-item-has-children {
		position: relative;
	}

	.main-navigation .menu-item-has-children > a {
		display: flex;
		align-items: center;
	}

	.main-navigation .menu-item-has-children > a::after {
		display: none;
	}

	.submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		width: 56px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		border-left: 1px solid #1f3351;
		cursor: pointer;
		padding: 0;
		z-index: 2;
	}

	.submenu-toggle__icon {
		width: 10px;
		height: 10px;
		border-right: 2px solid rgba(255, 255, 255, 0.85);
		border-bottom: 2px solid rgba(255, 255, 255, 0.85);
		transform: rotate(45deg);
		transition: transform 0.25s ease;
	}

	.menu-item-has-children.is-open > .submenu-toggle .submenu-toggle__icon {
		transform: rotate(-135deg);
	}

	.main-navigation .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(0, 0, 0, 0.15);
		border: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		min-width: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		list-style: none;
	}

	.menu-item-has-children.is-open > .sub-menu {
		max-height: 500px;
	}

	.main-navigation .sub-menu li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		list-style: none;
	}

	.main-navigation .sub-menu li:last-child {
		border-bottom: none;
	}

	.main-navigation .sub-menu li a {
		font-size: 18px;
		padding: 14px 20px 14px 36px;
		color: rgba(255, 255, 255, 0.6);
		text-align: left;
	}

	.main-navigation .sub-menu li a:hover {
		background: rgba(55, 87, 233, 0.12);
		color: #ffffff;
	}

	.main-navigation .menu-item-has-children::before {
		display: none;
	}

	.site-header .btn-get-started {
		margin-top: 30px;
		width: 100%;
		max-width: 280px;
		height: 50px;
		font-size: 16px;
	}

	.hero {
		min-height: 600px;
	}

	.hero__bg {
		clip-path: polygon(0 0, 100% 0, 100% 400px, 0 600px);
	}

	.hero__stage {
		height: auto;
		padding-bottom: 40px;
	}

	.hero__stage-illustration {
		display: none;
	}

	.hero__heading {
		font-size: 53px;
		line-height: 72px;
		padding-top: 40px;
		text-align: center;
	}

	.hero__subtext {
		font-size: 18px;
		line-height: 32px;
		max-width: 100%;
		margin-top: 24px;
		margin-bottom: 30px;
		text-align: center;
	}

	.hero__btn {
		font-size: 18px;
		padding: 20px 36px;
		width: 100%;
	}

	.hero__btn-icon {
		max-height: 20px;
	}

	.hero__bar {
		height: 70px;
		border-radius: 8px;
	}

	.logo-slider__item {
		height: 18px;
		width: 80px;
	}

	.logo-slider__item img {
		max-height: 18px;
		max-width: 80px;
	}

	.logo-slider__track {
		gap: 40px;
	}

	.hero__cards {
		flex-direction: column;
	}

	.hero__card-mascot--stats {
		width: 200px;
	}

	.cta-section {
		margin-top: 60px;
	}

	.cta-section__inner {
		padding: 60px 30px;
	}

	.cta-section__heading {
		font-size: 28px;
	}

	.cta-section__text {
		font-size: 17px;
		line-height: 28px;
	}

	.cta-section__btn {
		font-size: 18px;
		padding: 20px 36px;
		width: 100%;
	}

	.cta-section--light {
		padding: 60px 20px 60px;
	}

	.cta-section--light .cta-section__inner {
		padding: 60px 30px;
	}

	.pricing-hero {
		padding-top: 48px;
	}

	.pricing-hero__heading {
		font-size: 36px;
	}

	.pricing-hero__amount {
		font-size: 80px;
	}

	.pricing-hero__currency {
		font-size: 34px;
	}

	.pricing-hero__btn {
		font-size: 20px;
		padding: 22px 48px;
		width: 100%;
	}

	.pricing-features__grid {
		grid-template-columns: 1fr;
	}

	.pricing-body {
		padding: 48px 20px;
	}

	.tour__header {
		padding-top: 48px;
	}

	.tour__heading {
		font-size: 36px;
	}

	.tour__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.tour__chapter {
		padding: 8px 12px;
	}

	.tour__chapter-label {
		font-size: 12px;
	}

	.tour__chapter-time {
		font-size: 11px;
	}

	.site-footer {
		margin-top: 60px;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 48px 20px;
		gap: 32px;
	}

	.site-footer__tagline {
		max-width: 100%;
	}

	.footer-navigation ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.features-hero {
		padding: 48px 20px 40px;
	}

	.features-hero__heading {
		font-size: 36px;
	}

	.features-hero__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.quick-setup {
		padding: 48px 20px 0px;
	}

	.quick-setup__img {
		display: none;
	}

	.features-body__inner {
		padding-top: 48px;
	}

	.contact-hero {
		padding: 48px 20px 40px;
	}

	.contact-hero__heading {
		font-size: 36px;
	}

	.contact-hero__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.contact-body {
		padding: 48px 20px;
	}

	.contact-faq__question {
		font-size: 16px;
	}

	.ft {
		flex-direction: column;
		gap: 16px;
		padding: 28px;
	}

	.ft__title {
		font-size: 24px;
	}

	.pipeline__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-hero {
		padding: 48px 20px 40px;
	}

	.blog-hero__heading {
		font-size: 36px;
	}

	.blog-hero__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.error-404-hero {
		padding: 48px 20px 40px;
	}

	.error-404-hero__heading {
		font-size: 36px;
	}

	.error-404-hero__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.error-404-body {
		padding: 60px 20px;
	}

	.error-404-card {
		padding: 60px 40px 52px;
	}

	.error-404-card__mascot {
		width: 120px;
	}

	.error-404-card__code {
		font-size: 88px;
	}

	.error-404-card__text {
		font-size: 17px;
		line-height: 28px;
	}

	.error-404-links__heading {
		font-size: 22px;
		margin: 44px 0 24px;
	}

	.error-404-links {
		grid-template-columns: 1fr;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		max-width: 540px;
		margin: 0 auto;
	}

	.blog-body__inner {
		padding: 48px 20px;
	}

	.single-body__inner {
		padding: 32px 20px 60px;
	}

	.single-article__content {
		padding: 32px 28px 40px;
	}

	.single-article__content h2 {
		font-size: 26px;
	}

	.single-article__content h3 {
		font-size: 22px;
	}

	.single-article__footer {
		padding: 24px 28px 32px;
	}

	.single-post-nav {
		grid-template-columns: 1fr;
	}

	.single-post-nav__link--next {
		text-align: left;
	}

	.single-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

}

/* ============================================
   Small Mobile — max-width: 480px
   ============================================ */

@media (max-width: 480px) {
	.hero__heading {
		font-size: 32px;
		line-height: 42px;
		padding-top: 30px;
	}

	.hero__subtext {
		font-size: 16px;
		line-height: 28px;
		margin-top: 20px;
		margin-bottom: 24px;
	}

	.hero__btn {
		font-size: 16px;
		padding: 18px 28px;
	}

	.hero__bar {
		height: 60px;
	}

	.logo-slider__item {
		height: 14px;
		width: 65px;
	}

	.logo-slider__item img {
		max-height: 14px;
		max-width: 65px;
	}

	.logo-slider__track {
		gap: 30px;
	}

	.cta-section {
		margin-top: 40px;
	}

	.cta-section__inner {
		padding: 48px 24px;
	}

	.cta-section__heading {
		font-size: 24px;
	}

	.cta-section__text {
		font-size: 15px;
		line-height: 26px;
	}

	.cta-section__btn {
		font-size: 16px;
		padding: 18px 28px;
	}

	.cta-section--light {
		padding: 40px 16px 40px;
	}

	.cta-section--light .cta-section__inner {
		padding: 48px 24px;
	}

	.pricing-hero {
		padding-top: 32px;
	}

	.pricing-hero__heading {
		font-size: 28px;
	}

	.pricing-hero__subtext {
		font-size: 18px;
	}

	.pricing-hero__amount {
		font-size: 64px;
	}

	.pricing-hero__currency {
		font-size: 28px;
	}

	.pricing-hero__period {
		font-size: 18px;
	}

	.pricing-hero__credit {
		font-size: 18px;
	}

	.pricing-hero__btn {
		font-size: 18px;
		padding: 20px 28px;
	}

	.pricing-body {
		padding: 36px 16px;
	}

	.pricing-features__item {
		padding: 24px;
	}

	.tour__header {
		padding-top: 32px;
	}

	.tour__heading {
		font-size: 28px;
	}

	.tour__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.tour__chapters-list {
		gap: 0;
	}

	.tour__chapter {
		padding: 7px 10px;
	}

	.site-footer {
		margin-top: 40px;
	}

	.site-footer__inner {
		padding: 36px 20px;
		gap: 24px;
	}

	.footer-navigation ul {
		gap: 16px;
	}

	.footer-navigation ul li a {
		font-size: 14px;
	}

	.features-hero {
		padding: 32px 20px 32px;
	}

	.features-hero__badge {
		font-size: 12px;
		padding: 6px 18px;
		margin-bottom: 20px;
	}

	.features-hero__heading {
		font-size: 28px;
	}

	.features-hero__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.quick-setup {
		padding: 32px 20px 0px;
	}

	.features-body__inner {
		padding-top: 36px;
	}

	.ft {
		padding: 24px;
	}

	.ft__title {
		font-size: 22px;
	}

	.ft__desc {
		font-size: 18px;
		line-height: 28px;
	}

	.ft__list li {
		font-size: 18px;
		line-height: 28px;
	}

	.pipeline__steps {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.contact-hero {
		padding: 32px 20px 32px;
	}

	.contact-hero__heading {
		font-size: 28px;
	}

	.contact-hero__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.contact-body {
		padding: 36px 16px;
	}

	.contact-faqs__heading,
	.contact-form__heading {
		font-size: 24px;
	}

	.contact-faq__toggle {
		padding: 16px 20px;
	}

	.contact-faq__question {
		font-size: 16px;
	}

	.contact-faq__answer p {
		font-size: 16px;
		padding: 0 20px 16px;
	}

	.blog-hero {
		padding: 32px 20px 32px;
	}

	.blog-hero__heading {
		font-size: 28px;
	}

	.blog-hero__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.error-404-hero {
		padding: 32px 20px 32px;
	}

	.error-404-hero__heading {
		font-size: 28px;
	}

	.error-404-hero__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.error-404-body {
		padding: 48px 16px;
	}

	.error-404-card {
		padding: 52px 24px 44px;
	}

	.error-404-card__mascot {
		width: 100px;
	}

	.error-404-card__code {
		font-size: 68px;
		letter-spacing: -2px;
	}

	.error-404-card__text {
		font-size: 15px;
		line-height: 26px;
	}

	.error-404-card__btn {
		font-size: 16px;
		padding: 16px 32px;
		width: 100%;
		max-width: 280px;
	}

	.error-404-links__heading {
		font-size: 20px;
		margin: 36px 0 20px;
	}

	.error-404-link {
		padding: 20px;
		gap: 14px;
	}

	.error-404-link__icon {
		width: 42px;
		height: 42px;
		min-width: 42px;
	}

	.error-404-link__icon svg {
		width: 20px;
		height: 20px;
	}

	.blog-body__inner {
		padding: 36px 16px;
	}

	.blog-card__title {
		font-size: 18px;
	}

	.single-article__content {
		padding: 28px 20px 36px;
	}

	.single-article__content p {
		font-size: 17px;
	}

	.single-article__content h2 {
		font-size: 24px;
		margin-top: 36px;
	}

	.single-article__content h3 {
		font-size: 20px;
	}

	.single-article__content h4 {
		font-size: 18px;
	}

	.single-article__content pre {
		padding: 20px;
		border-radius: 8px;
	}

	.single-article__content pre code {
		font-size: 14px;
	}

	.single-article__content blockquote {
		padding: 20px 24px;
		margin: 24px 0;
	}

	.single-article__footer {
		padding: 20px 20px 28px;
	}

	.single-author-box {
		padding: 24px;
	}

	.single-post-nav__link {
		padding: 20px;
	}

}

/* ==========================================================================
   HELP CENTER
   ========================================================================== */

/* Help Hero */

.help-hero {
	padding: 80px 20px 85px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, #06152E, #0F2959);
}

.help-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(55, 87, 233, 0.18) 0%, rgba(55, 87, 233, 0.07) 40%, transparent 70%);
	pointer-events: none;
}

.help-hero__inner {
	max-width: 1178px;
	margin: 0 auto;
	position: relative;
}

.help-hero__mascot {
	width: 200px;
	height: auto;
	display: block;
	margin: 0 auto 24px;
}

.help-hero__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.help-hero__heading--article {
	font-size: 40px;
	max-width: 800px;
	margin: 0 auto;
}

.help-hero__subtext {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 34px;
	margin: 20px auto 0;
}

.help-hero--article {
	padding: 50px 20px 55px;
}

.help-hero__cat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: rgba(55, 87, 233, 0.15);
	border-radius: 16px;
	color: #6b8aff;
	margin-bottom: 20px;
}

/* Breadcrumbs */

.help-breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.help-breadcrumbs__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}

.help-breadcrumbs__link:hover {
	color: #ffffff;
}

.help-breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.25);
	display: inline-flex;
}

.help-breadcrumbs__current {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	max-width: 300px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Article Meta (single hero) */

.help-article-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.help-article-meta__cat {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 5px 16px;
}

.help-article-meta__reading,
.help-article-meta__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.help-article-meta__reading svg,
.help-article-meta__date svg {
	opacity: 0.6;
}

/* Search */

.help-search {
	max-width: 100%;
	margin: 36px auto 0;
	position: relative;
}

.help-search__field {
	position: relative;
	display: flex;
	align-items: center;
}

.help-search__icon {
	position: absolute;
	left: 18px;
	color: #6b7280;
	display: flex;
	pointer-events: none;
}

.help-search__input {
	width: 100%;
	padding: 16px 48px 16px 52px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #111827;
	background: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.help-search__input::placeholder {
	color: #9ca3af;
}

.help-search__input:focus {
	border-color: #3757E9;
	box-shadow: 0 0 0 4px rgba(55, 87, 233, 0.15);
}

.help-search__clear {
	position: absolute;
	right: 14px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #f3f4f6;
	border: none;
	border-radius: 50%;
	color: #6b7280;
	cursor: pointer;
	transition: background 0.15s;
}

.help-search__clear:hover {
	background: #e5e7eb;
}

/* Search Results Dropdown */

.help-search__results {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
	max-height: 360px;
	overflow-y: auto;
	display: none;
	z-index: 50;
}

.help-search__results.is-open {
	display: block;
}

.help-search__result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	text-decoration: none;
	border-bottom: 1px solid #f3f4f6;
	transition: background 0.15s;
}

.help-search__result:last-child {
	border-bottom: none;
}

.help-search__result:hover {
	background: #f7f8fc;
}

.help-search__result-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
}

.help-search__result-cat {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #3757E9;
	background: #eef1ff;
	border-radius: 10px;
	padding: 3px 10px;
	white-space: nowrap;
	margin-left: 12px;
}

.help-search__empty {
	padding: 24px 20px;
	text-align: center;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #6b7280;
}

/* Help Body */

.help-body {
	background: #f7f8fc;
}

.help-body__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 64px 20px;
}

/* Category Cards Grid */

.help-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 56px;
}

.help-cat-card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	text-decoration: none;
	position: relative;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.help-cat-card:hover {
	border-color: #3757E9;
	box-shadow: 0 8px 24px rgba(55, 87, 233, 0.08);
	transform: translateY(-2px);
}

.help-cat-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #eef1ff;
	border-radius: 12px;
	color: #3757E9;
	margin-bottom: 16px;
}

.help-cat-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 8px;
}

.help-cat-card__desc {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #6b7280;
	line-height: 22px;
	margin: 0 0 12px;
	flex: 1;
}

.help-cat-card__count {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #9ca3af;
}

.help-cat-card__arrow {
	position: absolute;
	top: 32px;
	right: 28px;
	color: #d1d5db;
	display: flex;
	transition: color 0.2s, transform 0.2s;
}

.help-cat-card:hover .help-cat-card__arrow {
	color: #3757E9;
	transform: translateX(3px);
}

/* Articles Section */

.help-articles-section__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 24px;
}

.help-articles-section__count {
	font-weight: 500;
	color: #9ca3af;
}

/* Article Cards Grid (archive) */

.help-articles-grid {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #e2e6ef;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	overflow: hidden;
}

.help-article-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 32px;
	background: #ffffff;
	text-decoration: none;
	transition: background 0.15s;
}

.help-article-card:hover {
	background: #f7f8fc;
}

.help-article-card__top {
	flex: 1;
	min-width: 0;
}

.help-article-card__cat {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #3757E9;
	background: #eef1ff;
	border-radius: 10px;
	padding: 3px 10px;
	margin-bottom: 8px;
}

.help-article-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 4px;
}

.help-article-card__excerpt {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #6b7280;
	line-height: 22px;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.help-article-card__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.help-article-card__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
	white-space: nowrap;
}

.help-article-card__time svg {
	color: #d1d5db;
}

.help-article-card__arrow {
	color: #d1d5db;
	display: flex;
	transition: color 0.2s, transform 0.2s;
}

.help-article-card:hover .help-article-card__arrow {
	color: #3757E9;
	transform: translateX(3px);
}

/* Article Row List (taxonomy archive) */

.help-articles-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #e2e6ef;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	overflow: hidden;
}

.help-article-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 28px;
	background: #ffffff;
	text-decoration: none;
	transition: background 0.15s;
}

.help-article-row:hover {
	background: #f7f8fc;
}

.help-article-row__content {
	flex: 1;
	min-width: 0;
}

.help-article-row__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin: 0 0 4px;
}

.help-article-row__excerpt {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #6b7280;
	line-height: 22px;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.help-article-row__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.help-article-row__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #9ca3af;
	white-space: nowrap;
}

.help-article-row__time svg {
	color: #d1d5db;
}

.help-article-row__arrow {
	color: #d1d5db;
	display: flex;
	transition: color 0.2s, transform 0.2s;
}

.help-article-row:hover .help-article-row__arrow {
	color: #3757E9;
	transform: translateX(3px);
}

/* Help Pagination */

.help-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
}

.help-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.help-pagination .page-numbers:hover {
	background: #f7f8fc;
	border-color: #3757E9;
	color: #3757E9;
}

.help-pagination .page-numbers.current {
	background: #3757E9;
	border-color: #3757E9;
	color: #ffffff;
}

/* Empty state */

.help-empty {
	text-align: center;
	padding: 80px 20px;
}

.help-empty__icon {
	color: #d1d5db;
	margin-bottom: 16px;
}

.help-empty__text {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #9ca3af;
}

/* -------------------------------------------------------
   SINGLE HELP ARTICLE
------------------------------------------------------- */

.help-single-body {
	background: #f7f8fc;
}

.help-single-body__inner {
	max-width: 1178px;
	margin: 0 auto;
	padding: 48px 20px 64px;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* Table of Contents sidebar */

.help-toc {
	width: 240px;
	min-width: 240px;
	flex-shrink: 0;
	align-self: stretch;
}

.help-toc__sticky {
	position: sticky;
	top: 120px;
}

.help-toc__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 16px;
}

.help-toc__title svg {
	color: #d1d5db;
}

.help-toc__nav {
	display: flex;
	flex-direction: column;
	border-left: 2px solid #e2e6ef;
}

.help-toc__link {
	display: block;
	padding: 8px 0 8px 16px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #6b7280;
	text-decoration: none;
	border-left: 2px solid transparent;
	margin-left: -2px;
	transition: color 0.2s, border-color 0.2s;
	line-height: 1.4;
}

.help-toc__link:hover {
	color: #111827;
}

.help-toc__link.is-active {
	color: #3757E9;
	border-left-color: #3757E9;
	font-weight: 500;
}

.help-toc__link--sub {
	padding-left: 28px;
	font-size: 13px;
}

/* Article content area */

.help-article {
	flex: 1;
	min-width: 0;
}

.help-article__content {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 48px;
}

.help-article__content > *:first-child {
	margin-top: 0;
}

.help-article__content > *:last-child {
	margin-bottom: 0;
}

.help-article__content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
	margin: 48px 0 16px;
	scroll-margin-top: 120px;
}

.help-article__content h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
	margin: 36px 0 12px;
	scroll-margin-top: 120px;
}

.help-article__content h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 28px 0 10px;
}

.help-article__content p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #4b5563;
	line-height: 32px;
	margin: 0 0 20px;
}

.help-article__content a {
	color: #3757E9;
	text-decoration: underline;
	text-decoration-color: rgba(55, 87, 233, 0.3);
	text-underline-offset: 3px;
	transition: text-decoration-color 0.15s;
}

.help-article__content a:hover {
	text-decoration-color: #3757E9;
}

.help-article__content ul,
.help-article__content ol {
	padding-left: 24px;
	margin: 0 0 20px;
}

.help-article__content li {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #4b5563;
	line-height: 32px;
	margin-bottom: 6px;
}

.help-article__content ul li::marker {
	color: #3757E9;
}

.help-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 12px 0;
}

.help-article__content pre {
	background: #1e293b;
	color: #e2e8f0;
	padding: 24px;
	border-radius: 10px;
	overflow-x: auto;
	margin: 20px 0;
	font-size: 15px;
	line-height: 1.6;
}

.help-article__content code {
	font-family: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, monospace;
	font-size: 0.9em;
}

.help-article__content p code,
.help-article__content li code {
	background: #f1f5f9;
	color: #3757E9;
	padding: 2px 7px;
	border-radius: 5px;
}

.help-article__content blockquote {
	border-left: 4px solid #3757E9;
	padding: 16px 24px;
	margin: 24px 0;
	background: #f7f8fc;
	border-radius: 0 8px 8px 0;
}

.help-article__content blockquote p {
	margin: 0;
	color: #374151;
	font-style: italic;
}

.help-article__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.help-article__content th,
.help-article__content td {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid #e2e6ef;
}

.help-article__content th {
	font-weight: 600;
	color: #111827;
	background: #f7f8fc;
}

.help-article__content td {
	color: #4b5563;
}

/* Vote Widget */

.help-vote {
	background: #ffffff;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	padding: 36px 48px;
	margin-top: 24px;
	text-align: center;
}

.help-vote__question {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 20px;
}

.help-vote__buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.help-vote__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	border: 2px solid #e2e6ef;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.2s;
}

.help-vote__btn--up {
	color: #16a34a;
}

.help-vote__btn--up:hover:not(:disabled) {
	background: #f0fdf4;
	border-color: #16a34a;
}

.help-vote__btn--up.is-voted {
	background: #f0fdf4;
	border-color: #16a34a;
	color: #16a34a;
}

.help-vote__btn--down {
	color: #dc2626;
}

.help-vote__btn--down:hover:not(:disabled) {
	background: #fef2f2;
	border-color: #dc2626;
}

.help-vote__btn--down.is-voted {
	background: #fef2f2;
	border-color: #dc2626;
	color: #dc2626;
}

.help-vote__btn:disabled {
	cursor: default;
	opacity: 0.7;
}

.help-vote__label {
	pointer-events: none;
}

.help-vote__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	font-size: 13px;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	pointer-events: none;
}

.help-vote__thanks {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #16a34a;
	margin: 16px 0 0;
}

.help-vote__thanks[hidden] {
	display: none;
}

/* Related Articles */

.help-related {
	margin-top: 24px;
}

.help-related__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.help-related__grid {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: #e2e6ef;
	border: 1px solid #e2e6ef;
	border-radius: 12px;
	overflow: hidden;
}

.help-related__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: #ffffff;
	text-decoration: none;
	transition: background 0.15s;
}

.help-related__card:hover {
	background: #f7f8fc;
}

.help-related__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	margin: 0;
}

.help-related__arrow {
	color: #d1d5db;
	display: flex;
	flex-shrink: 0;
	transition: color 0.2s, transform 0.2s;
}

.help-related__card:hover .help-related__arrow {
	color: #3757E9;
	transform: translateX(3px);
}

/* -------------------------------------------------------
   HELP CENTER — Responsive
------------------------------------------------------- */

@media (max-width: 1024px) {
	.help-hero__mascot {
		width: 170px;
	}

	.help-hero__heading {
		font-size: 44px;
	}

	.help-hero__heading--article {
		font-size: 32px;
	}

	.help-categories {
		grid-template-columns: repeat(2, 1fr);
	}

	.help-single-body__inner {
		gap: 32px;
	}

	.help-toc {
		width: 200px;
		min-width: 200px;
	}

	.help-article__content {
		padding: 36px;
	}

	.help-vote {
		padding: 32px 36px;
	}
}

@media (max-width: 768px) {
	.help-hero {
		padding: 48px 20px 48px;
	}

	.help-hero--article {
		padding: 36px 20px 40px;
	}

	.help-hero__mascot {
		width: 150px;
		margin-bottom: 20px;
	}

	.help-hero__heading {
		font-size: 36px;
	}

	.help-hero__heading--article {
		font-size: 28px;
	}

	.help-hero__subtext {
		font-size: 17px;
		line-height: 28px;
	}

	.help-categories {
		grid-template-columns: 1fr;
	}

	.help-article-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.help-article-card__meta {
		width: 100%;
		justify-content: space-between;
	}

	.help-article-card__excerpt {
		white-space: normal;
	}

	.help-body__inner {
		padding: 40px 20px;
	}

	.help-single-body__inner {
		flex-direction: column;
		padding: 32px 20px;
	}

	.help-toc {
		width: 100%;
		min-width: unset;
	}

	.help-toc__sticky {
		position: static;
		background: #ffffff;
		border: 1px solid #e2e6ef;
		border-radius: 12px;
		padding: 20px 24px;
	}

	.help-toc__nav {
		max-height: 200px;
		overflow-y: auto;
	}

	.help-article {
		max-width: 100%;
	}

	.help-article__content {
		padding: 28px 24px;
	}

	.help-article__content h2 {
		font-size: 24px;
		margin-top: 36px;
	}

	.help-article__content h3 {
		font-size: 20px;
	}

	.help-article__content p,
	.help-article__content li {
		font-size: 17px;
		line-height: 30px;
	}

	.help-vote {
		padding: 28px 24px;
	}

	.help-vote__buttons {
		flex-direction: column;
		gap: 10px;
	}

	.help-vote__btn {
		justify-content: center;
	}

	.help-breadcrumbs__current {
		max-width: 180px;
	}

	.help-article-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.help-article-row__right {
		width: 100%;
		justify-content: space-between;
	}

	.help-article-row__excerpt {
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.help-hero {
		padding: 32px 20px 32px;
	}

	.help-hero--article {
		padding: 28px 16px 32px;
	}

	.help-hero__mascot {
		width: 120px;
		margin-bottom: 16px;
	}

	.help-hero__heading {
		font-size: 28px;
	}

	.help-hero__heading--article {
		font-size: 24px;
	}

	.help-hero__subtext {
		font-size: 15px;
		line-height: 26px;
	}

	.help-search {
		margin-top: 28px;
	}

	.help-search__input {
		padding: 14px 44px 14px 48px;
		font-size: 15px;
	}

	.help-cat-card {
		padding: 24px;
	}

	.help-article-card {
		padding: 22px;
	}

	.help-article__content {
		padding: 24px 20px;
	}

	.help-article__content h2 {
		font-size: 22px;
	}

	.help-article__content h3 {
		font-size: 18px;
	}

	.help-article__content p,
	.help-article__content li {
		font-size: 16px;
		line-height: 28px;
	}

	.help-article__content pre {
		padding: 18px;
		border-radius: 8px;
		font-size: 13px;
	}

	.help-vote {
		padding: 24px 20px;
	}

	.help-vote__question {
		font-size: 16px;
	}

	.help-vote__btn {
		padding: 10px 20px;
		font-size: 14px;
	}
}
