body {
	font-family: 'Inter', sans-serif;
}

/* Scroll animations */
[data-anim] {
	opacity: 0;
	transition-property: opacity, transform;
	transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-anim="fade-up"] {
	transform: translateY(40px);
	transition-duration: 0.8s;
}

[data-anim="fade-up"].is-visible {
	opacity: 1;
	transform: translateY(0);
}

[data-anim="fade-in"] {
	transition-duration: 1s;
}

[data-anim="fade-in"].is-visible {
	opacity: 1;
}

[data-anim="fade-left"] {
	transform: translateX(-60px);
	transition-duration: 0.9s;
}

[data-anim="fade-left"].is-visible {
	opacity: 1;
	transform: translateX(0);
}

[data-anim="fade-right"] {
	transform: translateX(60px);
	transition-duration: 0.9s;
}

[data-anim="fade-right"].is-visible {
	opacity: 1;
	transform: translateX(0);
}

[data-anim="zoom-in"] {
	transform: scale(0.9);
	transition-duration: 0.8s;
}

[data-anim="zoom-in"].is-visible {
	opacity: 1;
	transform: scale(1);
}

[data-delay="100"] {
	transition-delay: 0.1s;
}

[data-delay="200"] {
	transition-delay: 0.2s;
}

[data-delay="300"] {
	transition-delay: 0.3s;
}

[data-delay="400"] {
	transition-delay: 0.4s;
}

/* Solutions dropdown trigger active state */
#solutionsDropdown:hover .solutions-trigger {
	border-color: #e5e7eb;
	color: #FF7343;
}

/* Header scroll state */
#header.scrolled {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
	padding-top: 22px;
	padding-bottom: 22px;
}

/* Mobile App Swiper */
.appSwiper {
	position: relative;
}

.appSwiper .swiper-slide {
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.appSwiper .swiper-pagination {
	bottom: -40px !important;
}

.appSwiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #d1d5db;
	opacity: 1;
	transition: all 0.3s ease;
}

.appSwiper .swiper-pagination-bullet-active {
	background: #FF7343;
	width: 30px;
	border-radius: 5px;
}

/* FAQ Accordion */
.faq-item {
	transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

/* Phone mockup */
.phone-mockup {
	background: #1a1a1a;
	border-radius: 40px;
	padding: 12px;
	/*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);*/
	position: relative;
	max-width: 320px;
	margin: 0 auto;
}

.phone-screen {
	border-radius: 28px;
	overflow: hidden;
	background: transparent;
	aspect-ratio: 9/19.5;
	position: relative;
}

.phone-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.phone-notch {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 28px;
	background: #1a1a1a;
	border-radius: 0 0 20px 20px;
	z-index: 10;
}

/* ============================================ */
/* Feature Cards - Core Features Section        */
/* ============================================ */

.feature-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 24px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
	transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
	            box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
	            border-color 0.4s ease;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2.5px;
	width: 0%;
	background: linear-gradient(90deg, #FF7343, #FFAB88);
	transition: width 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(255, 115, 67, 0.11), 0 6px 16px rgba(0, 0, 0, 0.05);
	border-color: rgba(255, 115, 67, 0.2);
}

.feature-card:hover::after {
	width: 100%;
}

.feature-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	background: linear-gradient(135deg, #FF7343 0%, #FF9869 100%);
	box-shadow: 0 4px 16px rgba(255, 115, 67, 0.3);
	transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
	            box-shadow 0.4s ease;
	position: relative;
	overflow: hidden;
}

/* Shimmer sweep on hover */
.feature-card-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -80%;
	width: 50%;
	height: 200%;
	background: rgba(255, 255, 255, 0.32);
	transform: skewX(-18deg);
	transition: left 0.55s ease;
}

.feature-card:hover .feature-card-icon::before {
	left: 160%;
}

.feature-card:hover .feature-card-icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 8px 28px rgba(255, 115, 67, 0.45);
}

.feature-card-icon svg {
	width: 22px;
	height: 22px;
	stroke: white;
	fill: none;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.feature-card-num {
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color: rgba(255, 115, 67, 0.2);
	transition: color 0.35s ease;
	font-family: 'Inter', sans-serif;
}

.feature-card:hover .feature-card-num {
	color: rgba(255, 115, 67, 0.5);
}

.feature-card h3 {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 6px;
}

.feature-card p {
	font-size: 13px;
	line-height: 1.65;
}

/* Hero Swiper */
.heroSwiper .swiper-pagination {
	bottom: 20px !important;
}

.heroSwiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
	background: #FF7343;
	width: 36px;
	border-radius: 6px;
}
