@font-face {
	font-family: 'Qualy Neue';
	src: url('/assets/fonts/qualy-neue-regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--color-white: #FFFFFF;
	--color-dark: #2D3748;
	--color-gray: #4A5568;
	--color-light-gray: #718096;
	--color-cornflowerblue-100: #2296f3;
	--color-cornflowerblue-200: rgba(34, 150, 243, 0.5);
	--color-cornflowerblue-300: rgba(34, 150, 243, 0.1);
	--color-gold-200: rgba(255, 202, 13, 0.85);
	--color-whitesmoke: #f4f6f8;
	--color-darkslategray-100: #3f3d56;
	--color-darkslategray-300: rgba(63, 61, 86, 0.85);
	--color-gray-100: #0a142f;
	--color-lightgray: rgba(205, 214, 218, 0.25);
	--color-lightslategray: #9d96a8;
	--color-lightsteelblue: rgba(147, 169, 187, 0.1);
	--color-black: #000;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

	--font-poppins: "Poppins", sans-serif;
	--font-inter: "Inter", sans-serif;
}


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

.hero-content .hero-title {
	font-family: 'Qualy Neue', sans-serif !important;
	color: #3F3D56;
	font-size: 55px;
	font-style: normal;
	font-weight: 400;
	line-height: 70px;
	/* 150% */
}


body {
	font-family: var(--font-poppins);
	color: var(--color-dark);
	overflow-x: hidden;
	background-color: var(--color-white);
}

.landing-page {
	width: 100%;
	position: relative;
}

/* ============ NAVBAR ============ */
.navbar {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1200px;
	background-color: var(--color-white);
	padding: 18px 32px;
	z-index: 1000;
	box-shadow: var(--shadow-md);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.navbar:hover {
	box-shadow: var(--shadow-lg);
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.logo {
	height: 42px;
	width: auto;
	flex-shrink: 0;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 48px;
	flex: 1;
	justify-content: center;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: var(--color-gray);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.3s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-link:hover {
	color: var(--color-dark);
}

.nav-link.active {
	color: var(--color-dark);
	font-weight: 600;
}

.dropdown-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
	transform: rotate(180deg);
}

.login-btn {
	border: 2px solid var(--color-cornflowerblue-200);
	border-radius: 8px;
	padding: 10px 28px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	flex-shrink: 0;
	text-decoration: none;
	color: var(--color-cornflowerblue-100);
	font-weight: 600;
	font-size: 16px;
	white-space: nowrap;
}

.login-btn:hover {
	background-color: var(--color-cornflowerblue-100);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

.hamburger span {
	width: 28px;
	height: 3px;
	background-color: var(--color-dark);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
	display: block;
	opacity: 1;
}

/* ============ HERO SECTION ============ */
.hero-section {
	position: relative;
	/* min-height: 100vh; */
	overflow: hidden;
	padding-top: 100px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(34, 150, 243, 0.5) 0%, rgba(34, 150, 243, 0.3) 100%);
	z-index: 0;
}

.hero-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 24px;
	display: flex;
	justify-content: space-between;
	gap: 80px;
	z-index: 1;
}

.hero-content {
	flex: 1;
	max-width: 580px;
}

.hero-title {
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1.15;
	font-weight: 600;
	color: var(--color-dark);
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.hero-subtitle {
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.7;
	color: var(--color-gray);
	margin-bottom: 40px;
	max-width: 520px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 36px;
	border-radius: 8px;
	/* background-color: #FFD700; */
	font-size: 17px;
	font-weight: 600;
	/* color: var(--color-dark); */
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	box-shadow: var(--shadow-sm);
	text-decoration: none;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	background-color: #FFF54D;
}

.cta-button:active {
	transform: translateY(-1px);
}

.arrow-icon {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
	transform: translateX(4px);
}

.hero-image {
	flex: 1;
	max-width: 620px;
	min-height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content>* {
	animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
	animation-delay: 0.1s;
}

.hero-subtitle {
	animation-delay: 0.2s;
}

.cta-button {
	animation-delay: 0.3s;
}

.hero-image {
	animation: fadeInUp 0.8s ease-out 0.4s forwards;
	opacity: 0;
}

/* ============ FEATURES SECTION ============ */
.features-section {
	padding: 30px 25px;
	background-color: var(--color-white);
}

.features-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	text-align: center;
	position: relative;
	right: 130px;
	padding-bottom: 25px;
}

.features-grid {
	max-width: 1040px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--color-whitesmoke);
	border-radius: 8px 100px 8px 8px;
	padding: 20px 50px 20px 50px;
	position: relative;
	overflow: hidden;
	min-height: 100px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.feature-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: var(--color-cornflowerblue-100);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-dark);
}

.feature-subtitle {
	font-size: 15px;
	color: var(--color-gray);
	margin-bottom: 20px;
	line-height: 1.5;
}

.feature-description {
	font-size: 13px;
	line-height: 1.6;
	color: var(--color-gray);
}

.feature-highlight {
	font-weight: 600;
	color: #FFD700;
}

.feature-image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 60%;
	object-fit: contain;
	opacity: 0.8;
}

/* ============ TEAM SECTION ============ */
.team-section {
	background: linear-gradient(135deg, rgba(147, 169, 187, 0.1) 0%, rgba(147, 169, 187, 0.05) 100%);
	padding: 50px 24px;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
}

.team-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	margin-bottom: 30px;
	position: relative;
	left: 30px;
	/* 150% */
}

.team-members {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.team-member {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.team-member img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.team-member:hover {
	transform: scale(1.05);
}

.team-placeholder {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background-color: rgba(255, 215, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	font-size: 18px;
	color: var(--color-gray);
	font-weight: 500;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
	background: linear-gradient(135deg, rgba(147, 169, 187, 0.1) 0%, rgba(147, 169, 187, 0.05) 100%);
	padding: 35px 24px;
}

.contact-container {
	/* max-width: 1200px; */
	/* margin: 0 auto; */
	display: flex;
	justify-content: space-around;
	/* gap: 80px; */
	align-items: center;
}

.contact-content {
	flex: 1;
	max-width: 500px;
}

.contact-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	/* 150% */
	margin-bottom: 40px;
}

.contact-phone {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-cornflowerblue-100);
	margin-bottom: 20px;
}

.contact-email {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-cornflowerblue-100);
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: var(--color-dark);
}

.contact-image {
	flex: 1;
	max-width: 250px;
	height: 300px;
	object-fit: contain;
}

.contact-image img {
	max-width: 350px;
	max-height: 350px;
}

.phone-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.phone-link:hover {
	color: #2296f3;
	text-decoration: underline;
}

.contact-email {
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: #2296f3;
}

/* ============ FAQ SECTION ============ */
.faq-section {
	padding: 60px 24px;
	background-color: var(--color-white);
}

.faq-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	margin-bottom: 40px;
	text-align: left;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 50px;
	
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-header {
	background: rgba(34, 150, 243, 0.10);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.3s ease;
	gap: 20px;
}

.faq-header:hover {
	background-color: rgba(34, 150, 243, 0.15);
}

.faq-number {
	font-size: 32px;
	font-weight: 600;
	color: var(--color-cornflowerblue-100);
	min-width: 50px;
	flex-shrink: 0;
}

.faq-question {
	flex: 1;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-dark);
	margin-left: 30px;
	margin-right: 20px;
}

.faq-icon {
	width: 24px;
	height: 24px;
	background-color: var(--color-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

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

.faq-answer {
	background-color: var(--color-white);
	padding: 30px 25px 30px 105px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-gray);
	display: none;
	border-radius: 0 0 8px 8px;
}

.faq-answer.active {
	display: block;
	background: rgba(34, 150, 243, 0.1);
}

/* ============ RESPONSIVE FAQ ============ */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-title {
        font-size: 28px;
        line-height: 40px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-header {
        padding: 20px;
        gap: 15px;
    }

    .faq-number {
        font-size: 24px;
        min-width: 40px;
    }

    .faq-question {
        font-size: 16px;
        margin-left: 15px;
        margin-right: 10px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
    }

    .faq-answer {
        padding: 20px 20px 20px 79px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-title {
        font-size: 24px;
        line-height: 36px;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-header {
        padding: 15px;
        gap: 10px;
    }

    .faq-number {
        font-size: 20px;
        min-width: 35px;
    }

    .faq-question {
        font-size: 14px;
        margin-left: 10px;
        margin-right: 5px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 18px 15px 18px 65px;
        font-size: 14px;
    }
}



/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.navbar {
		padding: 15px 20px;
		width: 95%;
	}

	.nav-menu {
		gap: 35px;
	}

	.hero-container {
		flex-direction: column;
		gap: 50px;
		text-align: center;
	}

	.contact-container {
		flex-direction: column;
		gap: 50px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hero-container {
		flex-direction: row;
		/* side-by-side layout for tablets */
		gap: 30px;
		/* optional spacing */
		text-align: left;
	}
}


@media (max-width: 768px) {
	.navbar {
		padding: 12px 15px;
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.nav-menu.active {
		position: fixed;
		top: 0;
		right: 0;
		width: 280px;
		height: 50vh;
		background-color: var(--color-white);
		flex-direction: column;
		align-items: flex-start;
		padding: 0px 30px 30px;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		z-index: 999;
		display: flex;
	}

	.hero-section {
		padding-top: 80px;
	}

	.hero-container {
		padding: 40px 20px;
	}

	.features-grid {
		padding: 0;
	}

	.feature-card {
		border-radius: 8px;
	}

	.team-members {
		flex-direction: column;
		justify-content: center;
	}

	.contact-container {
		padding: 0;
	}

	.faq-header {
		/* flex-direction: column; */
		align-items: flex-start;
		/* gap: 15px; */
	}

	.faq-question {
		margin-left: 0;
	}

	.faq-answer {
		padding-left: 40px;
	}

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

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-image {
		flex: 1;
		max-width: 300px;
		height: 300px;
		object-fit: contain;
	}

	.contact-image img {
		max-width: 300px;
		max-height: 300px;
	}

	.login-btn {
		border: 2px solid var(--color-cornflowerblue-200);
		border-radius: 8px;
		padding: 7px 29px;
		cursor: pointer;
		transition: all 0.3s ease;
		background-color: transparent;
		flex-shrink: 0;
		text-decoration: none;
		color: var(--color-cornflowerblue-100);
		font-weight: 600;
		font-size: 15px;
		white-space: nowrap;
		width: 100px;
		position: relative;
		bottom: 0px;
		right: 9px;
		top: 5px;
	}
}

@media (max-width: 480px) {
	.navbar {
		padding: 10px 12px;
		top: 10px;
	}

	.logo {
		height: 35px;
	}

	.login-btn {
		padding: 8px 30px;
		font-size: 14px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.cta-button {
		padding: 14px 24px;
		font-size: 14px;
	}

	.hero-container {
		gap: 30px;
		padding: 30px 16px;
	}

	.features-title {
		font-size: 20px;
		right: 0;
		padding: 0;
		line-height: 40px;
		margin-bottom: 10px;
		
	}

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

	.feature-card {
		padding: 25px;
	}

	.team-title {
		font-size: 20px;
		line-height: 34px;
	}

	.team-member,
	.team-placeholder {
		width: 200px;
		height: 200px;
	}

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

	.faq-title {
		font-size: 20px;
	}

	.faq-number {
		font-size: 16px;
	}

	.faq-question {
		font-size: 14px;
	}
}

/* Animation */

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content>* {
	animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
	animation-delay: 0.1s;
}

.hero-subtitle {
	animation-delay: 0.2s;
}

.cta-button {
	animation-delay: 0.3s;
}

.hero-image {
	animation: fadeInUp 0.8s ease-out 0.4s forwards;
	opacity: 0;
}
/* ============ FEATURES SECTION ============ */
.features-section {
	padding: 60px 24px;
	background-color: var(--color-white);
}

.features-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	text-align: center;
	margin: 0 auto 40px;
	max-width: 1200px;
	padding: 0 24px;
	position: relative;
	right: 180px;
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	gap: 30px;
	padding: 0 24px;
}

.feature-card {
	background-color: var(--color-whitesmoke);
	border-radius: 8px 100px 8px 8px;
	padding: 30px 40px;
	position: relative;
	overflow: hidden;
	min-height: 100px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.feature-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: var(--color-cornflowerblue-100);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
}

.feature-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.3;
}

.feature-subtitle {
	font-size: 15px;
	color: var(--color-gray);
	margin-bottom: 15px;
	line-height: 1.5;
}

.feature-description {
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-gray);
	margin-bottom: 20px;
}

.feature-highlight {
	font-weight: 600;
	color: var(--color-cornflowerblue-100);
}

.feature-card > div:last-child {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: auto;
	padding-top: 20px;
}

.feature-card > div:last-child img {
	width: 100%;
	max-width: 300px;
	height: auto;
	object-fit: contain;
}

/* ============ FAQ SECTION ============ */
.faq-section {
	padding: 60px 24px;
	background-color: var(--color-white);
}

.faq-title {
	color: #3F3D56;
	font-family: "Qualy Neue";
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 60px;
	margin: 0 auto 40px;
	text-align: left;
	max-width: 1200px;
	padding: 0 24px;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.faq-item {
	margin-bottom: 20px;
}

.faq-header {
	background: rgba(34, 150, 243, 0.10);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.3s ease;
	gap: 20px;
}

.faq-header:hover {
	background-color: rgba(34, 150, 243, 0.15);
}

.faq-number {
	font-size: 32px;
	font-weight: 600;
	color: var(--color-cornflowerblue-100);
	min-width: 50px;
	flex-shrink: 0;
}

.faq-question {
	flex: 1;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-dark);
	margin-left: 30px;
	margin-right: 20px;
	line-height: 1.4;
}

.faq-icon {
	width: 24px;
	height: 24px;
	background-color: var(--color-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	font-size: 20px;
}

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

.faq-answer {
	background-color: var(--color-white);
	padding: 30px 25px 30px 105px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-gray);
	display: none;
	border-radius: 0 0 8px 8px;
}

.faq-answer.active {
	display: block;
	background: rgba(34, 150, 243, 0.1);
}

/* ============ RESPONSIVE - FEATURES ============ */
@media screen and (max-width: 1024px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

@media screen and (max-width: 768px) {
	.features-section {
		padding: 40px 20px;
	}

	.features-title {
		font-size: 28px;
		line-height: 40px;
		padding: 0 20px;
		margin-bottom: 30px;
	}

	.features-grid {
		padding: 0 20px;
		gap: 20px;
	}

	.feature-card {
		padding: 25px 30px;
		border-radius: 8px 60px 8px 8px;
	}

	.feature-title {
		font-size: 18px;
	}

	.feature-subtitle {
		font-size: 14px;
	}

	.feature-description {
		font-size: 13px;
	}

	.feature-card > div:last-child img {
		max-width: 250px;
	}
}

@media screen and (max-width: 480px) {
	.features-section {
		padding: 30px 15px;
	}

	.features-title {
		font-size: 24px;
		line-height: 36px;
		padding: 0 15px;
		margin-bottom: 25px;
		right: 0;
		text-align: left;
	}

	.features-grid {
		padding: 0 15px;
	}

	.feature-card {
		padding: 20px 25px;
		border-radius: 8px 50px 8px 8px;
	}

	.feature-header {
		gap: 15px;
	}

	.feature-icon {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}

	.feature-title {
		font-size: 16px;
	}

	.feature-subtitle {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.feature-description {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.feature-card > div:last-child img {
		max-width: 200px;
	}
}

/* ============ RESPONSIVE - FAQ ============ */
@media screen and (max-width: 768px) {
	.faq-section {
		padding: 40px 20px;
	}

	.faq-title {
		font-size: 28px;
		line-height: 40px;
		padding: 0 20px;
		margin-bottom: 30px;
	}

	.faq-container {
		padding: 0 20px;
	}

	.faq-header {
		padding: 20px;
		gap: 15px;
	}

	.faq-number {
		font-size: 24px;
		min-width: 40px;
	}

	.faq-question {
		font-size: 16px;
		margin-left: 15px;
		margin-right: 10px;
	}

	.faq-icon {
		width: 22px;
		height: 22px;
		font-size: 18px;
	}

	.faq-answer {
		padding: 20px 20px 20px 79px;
		font-size: 15px;
	}
}

@media screen and (max-width: 480px) {
	.faq-section {
		padding: 30px 15px;
	}

	.faq-title {
		font-size: 24px;
		line-height: 36px;
		padding: 0 15px;
		margin-bottom: 25px;
	}

	.faq-container {
		padding: 0 15px;
	}

	.faq-header {
		padding: 15px;
		gap: 10px;
	}

	.faq-number {
		font-size: 20px;
		min-width: 35px;
	}

	.faq-question {
		font-size: 14px;
		margin-left: 10px;
		margin-right: 5px;
	}

	.faq-icon {
		width: 20px;
		height: 20px;
		font-size: 16px;
	}

	.faq-answer {
		padding: 18px 15px 18px 65px;
		font-size: 14px;
	}
}