/* ==========================================================================
   BUNDLED CSS - Layout, Landing Page, Features Page
   ========================================================================== */

/* ==========================================================================
   LAYOUT STYLES
   ========================================================================== */

/* Responsive visibility helpers */
.desktop-only {
	display: flex;
}

.mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: flex;
	}
}

/* Navigation Links (font/color styling for NavLink components) */
.nav-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 1rem;
	text-decoration: none;
	color: rgb(55, 65, 81);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: transparent;
}

	.nav-link:hover {
		background: rgba(243, 244, 246, 0.5);
	}

.nav-link-text {
	position: relative;
	z-index: 1;
}

.nav-link-indicator {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	height: 4px;
	width: 0;
	background: linear-gradient(135deg, #0c4a6e 0%, #14b8a6 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
	opacity: 0;
}

.nav-link.active {
	color: rgb(12, 74, 110);
	font-weight: 600;
}

	.nav-link.active .nav-link-indicator {
		width: calc(100% - 2rem);
		opacity: 1;
	}

/* Mobile Navigation Links */
.mobile-nav-link {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0.75rem 1rem;
	text-decoration: none;
	color: rgb(55, 65, 81);
	border-bottom: 1px solid rgb(243, 244, 246);
	transition: all 0.2s ease;
}

	.mobile-nav-link:hover {
		background: rgba(243, 244, 246, 0.5);
	}

.mobile-nav-link-text {
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.mobile-nav-link.active {
	background: rgb(229, 231, 235);
	color: rgb(12, 74, 110);
}

	.mobile-nav-link.active .mobile-nav-link-text {
		font-weight: 600;
	}

/* Menu Navigation */
.menu-nav {
	display: flex;
	gap: 60px;
	justify-content: flex-end;
	align-items: center;
	padding: 20px;
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
}

	.menu-nav a {
		color: #FFFFFF;
		text-decoration: none;
		transition: opacity 0.3s;
	}

		.menu-nav a:hover {
			opacity: 0.8;
		}

/* Footer Section */
.footer-section {
	background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	padding: 100px 100px 20px;
	position: relative;
	overflow: hidden;
}

/* Decorative Background Logos */
.footer-bg-logo {
	position: absolute;
	width: 600px;
	height: 600px;
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}

	.footer-bg-logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		filter: brightness(0) invert(1);
	}

.footer-bg-logo-left {
	bottom: -100px;
	right: 78%;
	transform: rotate(90deg);
}

.footer-bg-logo-right {
	bottom: -100px;
	right: 10%;
	transform: rotate(90deg);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.footer-text h2 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 85px;
	color: #FFFFFF;
	margin-bottom: 35px;
}

	.footer-text h2 .highlight {
		color: #00FFDE;
	}

.footer-text p {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #FFFFFF;
}

.footer-download {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-end;
}

.footer-links {
	display: flex;
	gap: 60px;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
}

	.footer-links a {
		color: #FFFFFF;
		text-decoration: none;
		transition: opacity 0.3s;
	}

		.footer-links a:hover {
			opacity: 0.8;
		}

/* Store Buttons */
.store-buttons {
	display: flex;
	gap: 0;
	flex-direction: column;
}

.store-button {
	width: 246px;
	height: 73px;
	transition: transform 0.3s;
}

	.store-button:hover {
		transform: scale(1.05);
	}

	.store-button img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

.qr-code {
	width: 165px;
	height: 162px;
}

	.qr-code img {
		width: 100%;
		height: 100%;
		border-radius: 20px;
	}

/* Responsive Design - Tablet and Below (1200px) */
@media (max-width: 1200px) {
	/* Footer Section */
	.footer-bg-logo {
		width: 500px;
		height: 500px;
	}

	.footer-bg-logo-left {
		right: 75%;
	}

	.footer-text h2 {
		font-size: 60px;
		line-height: 75px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-download {
		justify-content: center;
	}
}

/* Responsive Design - Mobile (768px) */
@media (max-width: 768px) {
	/* Menu Navigation */
	.menu-nav {
		gap: 30px;
		font-size: 16px;
	}

	/* Footer Section */
	.footer-section {
		padding: 80px 20px 20px;
	}

	.footer-bg-logo {
		width: 400px;
		height: 400px;
	}

	.footer-bg-logo-left {
		display: none;
	}

	.footer-bg-logo-right {
		right: -10%;
		bottom: -80px;
	}

	.footer-text h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.footer-text p {
		font-size: 16px;
	}

	.footer-links {
		flex-direction: column;
		gap: 20px;
	}

	.footer-download {
		flex-direction: column;
	}
}

/* ==========================================================================
   LANDING PAGE STYLES
   ========================================================================== */

/* Enable text selection globally */
* {
	-webkit-user-select: text !important;
	-moz-user-select: text !important;
	-ms-user-select: text !important;
	user-select: text !important;
}

/* Disable selection only for interactive elements */
button, .carousel-arrow, .carousel-indicator-dot {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

.nowrap {
	white-space: nowrap;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(90deg, #063163 0%, #00BFA5 100%);
}

.hero-layout {
	display: flex;
	align-items: flex-start;
	gap: 48px;
}

.hero-text {
	flex: 1;
	min-width: 0;
}

.hero-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

	.hero-cta > * {
		flex-shrink: 0;
	}

.hero-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 85px;
	color: #FFFFFF;
	margin-bottom: 45px;
}

	.hero-title .highlight {
		color: #00FFDE;
	}

.hero-description {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #FFFFFF;
	max-width: 677px;
	margin-bottom: 45px;
}


.hero-phone-mockup {
	max-width: 508px;
	flex-shrink: 0;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

	.hero-phone-mockup img {
		width: 100%;
		height: auto;
	}

/* Features Section */
.features-section {
	position: relative;
	padding: 160px 20px 160px;
	background: #F5F5F5;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	transform: translateY(-50px);
}

.features-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	border-radius: 50px;
	background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
}

.features-container {
	margin: 0 auto;
	position: relative;
}

.features-background {
	padding: 80px 60px 40px;
	position: relative;
}

.features-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 85px;
	color: #FFFFFF;
	text-align: center;
}

	.features-title .highlight {
		color: #00FFDE;
	}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 57px;
	margin: 0 50px;
	position: relative;
	z-index: 2;
}


.feature-card {
	background: #FFFFFF;
	border-radius: 50px;
	padding: 50px 25px 50px;
	box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
	display: flex;
	flex-direction: column;
}

.feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 46px 50px;
	height: 200px;
}

	.feature-icon img {
		width: 180px;
		height: 200px;
		object-fit: contain;
	}

.feature-content h3 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1;
	color: #063163;
	margin-bottom: 25px;
}

.feature-content p {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #063163;
}

/* Screens Section */
.screens-section {
	padding: 80px 20px;
	background: #FFFFFF;
	position: relative;
	overflow: hidden;
}

.screens-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 100px;
	position: relative;
	touch-action: pan-y;
}

/* Background Logo */
.screens-bg-logo {
	position: absolute;
	width: 800px;
	height: 800px;
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(10deg) scale(1.5);
}

	.screens-bg-logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

.screen-phone {
	flex: 0 0 auto;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

	.screen-phone img {
		max-height: 680px;
	}

/* Phone Tilts */
.screen-phone-left {
	transform: rotate(-5deg);
}

	.screen-phone-left:hover {
		transform: rotate(0deg) scale(1.05);
	}

.screen-phone-center {
	transform: scale(1.1);
}

	.screen-phone-center:hover {
		transform: scale(1.15);
	}

.screen-phone-right {
	transform: rotate(5deg);
}

	.screen-phone-right:hover {
		transform: rotate(0deg) scale(1.05);
	}

/* Text Section */
.text-section {
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #063163;
}

	.text-section h2 {
		font-family: 'Nunito', sans-serif;
		font-weight: 700;
		font-size: 55px;
		line-height: 85px;
		margin-bottom: 45px;
	}

	.text-section p {
		font-family: 'Nunito', sans-serif;
		font-weight: 500;
		font-size: 20px;
		line-height: 1.3;
		max-width: 782px;
	}

/* Responsive Design - Tablet and Below (1200px) */
@media (max-width: 1200px) {
	/* Hero Section */
	.hero-phone-mockup {
		max-width: 400px;
	}

	.hero-title {
		font-size: 60px;
		line-height: 75px;
	}

	/* Features Section */
	.features-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}

	.feature-card {
		min-height: auto;
		padding: 60px 30px 50px;
	}

	.features-container::before {
		content: "";
		position: absolute;
		top: 0;
		width: 80%;
		height: 100%;
		border-radius: 50px;
		background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
		left: 50%;
		transform: translateX(-50%);
	}

	.features-title {
		font-size: 42px;
		line-height: 55px;
		margin-bottom: 10px;
	}

	.features-container {
		padding: 30px 20px 0px;
	}

	.features-background {
		padding: 0px 50px 0px;
	}

	/* Text Section */
	.text-section h2 {
		font-size: 48px;
		line-height: 60px;
	}
}

/* Responsive Design - Mobile (768px) */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-layout {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-layout {
		gap: 45px;
	}

	.hero-phone-mockup {
		max-width: 350px;
		margin: 0 auto;
	}

	.hero-title {
		font-size: 45px;
		line-height: 50px;
	}

	.hero-description {
		font-size: 16px;
	}

	/* Features Section */
	.features-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.features-section {
		padding: 50px 11px 80px;
	}

	.features-title {
		font-size: 33px;
		line-height: 44px;
	}

	.feature-card {
		border-radius: 50px;
		padding: 61px 24px 36px;
		min-height: 355px;
	}

	.feature-icon {
		height: 150px;
		margin-bottom: 30px;
	}

		.feature-icon img {
			max-height: 141px;
			aspect-ratio: 1;
		}

	.feature-content h3 {
		font-size: 26px;
		margin-bottom: 17px;
	}

	.feature-content p {
		font-size: 16px;
	}

	/* Screens Section - Carousel */
	.screens-container {
		overflow: visible;
		position: relative;
		flex-direction: column;
		gap: 0;
		min-height: 80vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-bottom: 60px;
	}

	.screens-bg-logo {
		width: 500px;
		height: 500px;
	}

	.screen-phone {
		position: absolute !important;
		top: 50%;
		left: 50%;
		transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
		width: 80vw;
		max-width: 450px;
	}

		.screen-phone img {
			width: 100% !important;
			height: auto !important;
			max-height: none !important;
		}

		/* Carousel Slide Positions */
		.screen-phone.active-slide {
			transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
			opacity: 1;
			pointer-events: none;
			z-index: 10;
		}

		.screen-phone.left-slide {
			transform: translate(-150%, -50%) rotate(-15deg) scale(0.7) !important;
			opacity: 0.3;
			z-index: 5;
			transform-origin: center;
		}

		.screen-phone.right-slide {
			transform: translate(50%, -50%) rotate(15deg) scale(0.7) !important;
			opacity: 0.3;
			z-index: 5;
			transform-origin: center;
		}

		/* Far positions for wrap-around effect - more extreme positioning */
		.screen-phone.far-left-slide {
			transform: translate(-300%, -50%) rotate(-25deg) scale(0.5) !important;
			opacity: 0.1;
			z-index: 1;
			transform-origin: center;
		}

		.screen-phone.far-right-slide {
			transform: translate(200%, -50%) rotate(25deg) scale(0.5) !important;
			opacity: 0.1;
			z-index: 1;
			transform-origin: center;
		}

	/* Reset Desktop Phone Styles */
	.screen-phone-left,
	.screen-phone-center,
	.screen-phone-right {
		position: absolute !important;
		transform: rotate(0deg);
	}

		.screen-phone-left:hover,
		.screen-phone-center:hover,
		.screen-phone-right:hover,
		.screen-phone:hover {
			transform: none !important;
		}

	/* Carousel Controls */
	.carousel-arrow {
		display: flex !important;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 44px;
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border: none;
		border-radius: 50%;
		cursor: pointer;
		z-index: 15;
		transition: all 0.3s ease;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		color: #00BFA5;
		padding: 0;
	}

		.carousel-arrow:active {
			transform: translateY(-50%) scale(0.95);
			background: rgba(0, 191, 165, 0.9);
			color: white;
		}

		.carousel-arrow svg {
			width: 24px;
			height: 24px;
		}

	.carousel-arrow-left {
		left: 10px;
	}

	.carousel-arrow-right {
		right: 10px;
	}

	.carousel-indicator {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 8px;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(10px);
		border-radius: 20px;
		padding: 8px 16px;
		z-index: 20;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	.carousel-indicator-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: rgba(6, 49, 99, 0.3);
		transition: all 0.3s ease;
	}

		.carousel-indicator-dot.active {
			background: #00BFA5;
			width: 24px;
			border-radius: 4px;
		}

	/* Text Section */
	.text-section h2 {
		font-size: 36px;
		line-height: 44px;
	}

	.text-section p {
		font-size: 16px;
	}
}

/* Hide carousel controls on desktop */
.carousel-arrow,
.carousel-indicator,
.carousel-indicators {
	display: none;
}

/* ==========================================================================
   FEATURES PAGE STYLES
   ========================================================================== */

.features-page-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.features-content-wrapper {
	flex: 1;
	padding: 3rem 0.75rem;
	display: flex;
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

/* Sidebar Navigation */
.features-sidebar {
	width: 330px;
	flex-shrink: 0;
	display: none;
}

.sidebar-sticky {
	position: sticky;
	top: 2rem;
	background: white;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e7eb;
	max-height: calc(100vh - 4rem);
	display: flex;
	flex-direction: column;
}

.sidebar-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 1rem 0;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	overflow-y: auto;
	overflow-x: hidden;
}

.sidebar-nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: transparent;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	width: 100%;
	color: #6b7280;
	font-size: 0.9375rem;
}

	.sidebar-nav-item:hover {
		background: #f3f4f6;
		color: #111827;
	}

	.sidebar-nav-item.active {
		background: linear-gradient(135deg, #0c4a6e 0%, #14b8a6 100%);
		color: white;
		font-weight: 600;
	}

	.sidebar-nav-item .nav-icon {
		font-size: 1.25rem;
		flex-shrink: 0;
	}

	.sidebar-nav-item .nav-title {
		flex: 1;
	}

.features-list-container {
	flex: 1;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
}

/* Feature Item */
.feature-item {
	background: white;
	border-radius: 0;
	box-shadow: none;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
	border-top: 1px solid #e5e7eb;
	border-bottom: none;
	overflow: hidden;
	transition: all 0.3s ease;
	margin: 0;
	position: relative;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

	.feature-item:first-child {
		border-top-left-radius: 1rem;
		border-top-right-radius: 1rem;
	}

	.feature-item:last-child {
		border-bottom-left-radius: 1rem;
		border-bottom-right-radius: 1rem;
		border-bottom: 1px solid #e5e7eb;
	}

	.feature-item.expanded:not(:first-child):not(:last-child) {
		border-radius: 0;
	}

	.feature-item.expanded:first-child {
		border-top-left-radius: 1rem;
		border-top-right-radius: 1rem;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.feature-item.expanded:last-child {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: 1rem;
		border-bottom-right-radius: 1rem;
	}

	.feature-item:not(.expanded):not(:last-child)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 1px;
		background: #e5e7eb;
	}

	.feature-item:hover {
		box-shadow: none;
	}

	.feature-item.expanded {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
		border: 1px solid #0c4a6e;
		border-radius: 1rem;
		z-index: 10;
	}

		.feature-item.expanded::after {
			display: none;
		}

		/* Remove double border between adjacent expanded items */
		.feature-item.expanded + .feature-item.expanded {
			border-top: none;
		}

/* Feature Header */
.feature-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

	.feature-header:hover {
		background-color: #f9fafb;
	}

.feature-header-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.features-page-icon-box {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #14b8a6 0%, #0c4a6e 100%);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(12, 74, 110, 0.2);
}

.features-page-icon {
	font-size: 2rem;
	line-height: 1;
	font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

.feature-title-section {
	flex: 1;
	min-width: 0;
}

.feature-title {
	font-weight: 700;
	font-size: 1.125rem;
	color: #111827;
	margin: 0 0 0.25rem 0;
}

.feature-subtitle {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0;
}

/* Expand Button */
.expand-button {
	width: 48px;
	height: 48px;
	background: #f3f4f6;
	border: 2px solid #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.2s ease;
	color: #6b7280;
}

	.expand-button:hover {
		background: #e5e7eb;
		border-color: #d1d5db;
		color: #374151;
	}

	.expand-button:active {
		transform: scale(0.95);
	}

	.expand-button svg {
		transition: transform 0.3s ease;
	}

		.expand-button svg.expanded {
			transform: rotate(180deg);
		}

/* Feature Content */
.features-page-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-in-out;
}

	.features-page-content.expanded {
		max-height: 5000px;
	}

.features-page-content-inner {
	padding: 0 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-detail-item {
	display: flex;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 0.75rem;
	transition: background-color 0.2s ease;
}

	.feature-detail-item:hover {
		background-color: #f9fafb;
	}

.feature-checkmark {
	width: 40px;
	height: 40px;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.feature-detail-item:hover .feature-checkmark {
	transform: scale(1.1);
}

.checkmark-icon {
	width: 24px;
	height: 24px;
	color: #14b8a6;
	stroke-width: 3;
}

.feature-detail-text {
	flex: 1;
	min-width: 0;
}

.feature-detail-title {
	font-weight: 600;
	font-size: 1rem;
	color: #111827;
	margin: 0 0 0.25rem 0;
}

.feature-detail-description {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.5;
}

/* Collapse All Button */
.collapse-all-button {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #0c4a6e 0%, #14b8a6 100%);
	border: none;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
	z-index: 1000;
}

	.collapse-all-button:hover {
		transform: scale(1.1);
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	}

	.collapse-all-button:active {
		transform: scale(0.95);
	}

/* Desktop - Show Sidebar */
@media (min-width: 1024px) {
	.features-sidebar {
		display: block;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.features-content-wrapper {
		padding: 1.5rem 0.75rem;
	}

	.feature-header {
		padding: 1rem;
	}

	.features-page-icon-box {
		width: 48px;
		height: 48px;
	}

	.features-page-icon {
		font-size: 1.5rem;
	}

	.feature-title {
		font-size: 1.125rem;
	}

	.feature-subtitle {
		font-size: 0.8125rem;
	}

	.expand-button {
		width: 40px;
		height: 40px;
		border-width: 1.5px;
	}

	.features-page-content-inner {
		padding: 0 1rem 1rem 1rem;
	}

	.collapse-all-button {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 48px;
		height: 48px;
	}
}
