/* =========================
   Global Reset Styles
========================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	-webkit-font-smoothing: antialiased;
}
ul,
ol {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
	border: none;
	outline: none;
	background: none;
}
button {
	cursor: pointer;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* root variables */
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--text-primary: #171717;
	--text-secondary: #737373;
	--border-default: #d7d7d7;
	--border-accordion: #0000001a;
}

/* Keyframes */
@keyframes slideUp {
	0% {
		top: 100px;
	}
	100% {
		top: 0;
	}
}

/* Utility Classes */
.main-heading {
	color: var(--text-primary);
	font-family: Inter;
	font-size: 64px;
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -1px;
	text-transform: capitalize;
}
.section-heading {
	color: var(--text-primary);
	font-family: Inter;
	font-size: 54px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.8px;
}
.sub-heading {
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.2px;
}
.cta-button {
	padding: 10px 18px;
	border-radius: 6px;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: capitalize;
}
.cta-button.cta-button--light {
	background-color: var(--color-white);
	color: var(--text-primary);
	border: 1px solid var(--border-default);
}
.cta-button.cta-button--dark {
	background-color: var(--text-primary);
	color: var(--color-white);
	border: 1px solid var(--text-primary);
}
.section-heading-row {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 18px;
	text-align: center;
}

/* Header */
.header {
	width: 100%;
	position: sticky;
	z-index: 100;
	-webkit-backdrop-filter: blur(40px);
	backdrop-filter: blur(40px);
	left: 0;
	top: 0;
	border-bottom: 1px solid var(--border-default);
	background: #ffffff52;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px 60px;
	position: relative;
}
.header__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__logo {
	width: 185px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header__logo img {
	width: 104px;
	height: auto;
	object-fit: contain;
}
.header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 28px;
}
.header__nav ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.header__nav ul li a {
	color: rgba(23, 23, 23, 0.8);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16.8px; /* 120% */
	letter-spacing: -0.2px;
	transition: color 0.3s ease;
	padding: 4px;
}
.header__nav ul li a:hover {
	color: var(--text-primary);
}

.header__button-container {
	display: flex;
	align-items: stretch;
	justify-content: center;
	column-gap: 8px;
}
.header__button {
	padding: 10px 14px;
	border-radius: 6px;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}
.header__button.header__button--light {
	background-color: var(--color-white);
	color: var(--text-primary);
	border: 1px solid var(--border-default);
}
.header__button.header__button--dark {
	background-color: var(--text-primary);
	color: var(--color-white);
	border: 1px solid var(--text-primary);
}
.header__hamburger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 4px;
	margin-left: 8px;
}
.header__hamburger span {
	background-color: var(--text-primary);
	width: 24px;
	height: 3px;
	transition: all 0.3s ease;
	border-radius: 10px;
}
.header__hamburger.active span:first-child {
	transform: translateY(7px) rotate(45deg);
}
.header__hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
	transform: rotate(-45deg);
}

/* ---- Home Page Styles ---- */
/* Hero Section */
.hero-section {
	padding: 100px 60px 40px;
	width: 100%;
	background-color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 80px;
}
.hero__content-row {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 40px;
	text-align: center;
}
.hero__badge {
	border: 1px solid var(--border-default);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 6px;
	padding: 6px 10px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
	color: #282626;
	font-family: Inter;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
}
.hero__badge img {
	width: 16px;
	height: auto;
	object-fit: contain;
}
.hero__about-row {
	width: 100%;
	max-width: 820px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 16px;
}
.hero__sub-heading {
	font-size: 16px;
	line-height: 1.6;
}
.hero__button-container {
	display: flex;
	align-items: stretch;
	justify-content: center;
	column-gap: 8px;
}
.hero__image-row {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-default);
	border-radius: 20px;
	box-shadow:
		153px 482px 141px 0 rgba(0, 0, 0, 0),
		98px 308px 129px 0 rgba(0, 0, 0, 0.01),
		55px 173px 109px 0 rgba(0, 0, 0, 0.02),
		24px 77px 81px 0 rgba(0, 0, 0, 0.04),
		6px 19px 44px 0 rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
	top: 100px;
	animation: slideUp 1s ease-in-out forwards;
}
.hero__image-row img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* Featured Section */
.featured-section {
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 46px;
}
.featured__title {
	text-align: center;
	color: #475569;
	font-family: Inter;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.32px;
	padding: 0 20px;
}
.featured__slider-wrapper {
	width: 100%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: relative;
}
.featured__slider-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #fff 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, #fff 100%);
}
.featured__slider-wrapper .slick-track {
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 54px;
}
.featured__slider-wrapper .slick-slide,
.featured__slider-wrapper .slick-slide > div,
.featured__slider-card {
	display: flex;
	align-items: center;
	justify-content: center;
}
.featured__slider-card img {
	width: auto;
	height: auto;
}

/* Think Section */
.think-section {
	width: 100%;
	padding: 80px 60px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.think__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 54px;
}
.section-heading-row--think {
	max-width: 560px;
	text-align: center;
}
.think__image-wrapper {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.think__image-col {
	border: 1px solid var(--border-default);
	padding: 40px 0 0 40px;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 36px;
}
.think__image-col:first-child {
	width: 60%;
}
.think__image-col:nth-child(2) {
	width: calc(40% - 6px);
}
.think__img-content {
	width: 100%;
	padding-right: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 8px;
}
.think__img-content h5 {
	color: var(--text-primary);
	font-family: Inter;
	font-size: 24px;
	font-weight: 600;
	line-height: normal;
}
.think__img-content p {
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.2px;
	max-width: 400px;
}
.think__img-box {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	flex-grow: 1;
	position: relative;
}
.think__img-box img {
	border-radius: 12px;
	background: #fff;
	border: 1px solid #f5f6f8;
	box-shadow:
		0 305px 85px 0 rgba(0, 0, 0, 0),
		0 195px 78px 0 rgba(0, 0, 0, 0.01),
		0 110px 66px 0 rgba(0, 0, 0, 0.05),
		0 49px 49px 0 rgba(0, 0, 0, 0.08),
		0 12px 27px 0 rgba(0, 0, 0, 0.1);
}
.think__img-box img.think__img-visible {
	width: 100%;
	height: auto;
	border-radius: 12px 0 0 0;
}
.think__img-box img.think__img1 {
	position: relative;
	z-index: 1;
	max-width: 86%;
	height: auto;
}
.think__img-box img.think__img2 {
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 12px 0 0 0;
	max-width: 86%;
	height: auto;
}

/* Chat Section */
.chat-section {
	width: 100%;
	padding: 60px 60px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chat__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 54px;
}
.section-heading-row--chat {
	text-align: center;
	max-width: 640px;
}
.section-heading-row--chat .sub-heading {
	max-width: 460px;
}
.chat__grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 20px;
}
.chat__card {
	width: calc((100% - 20px) / 2);
	border: 1px solid var(--border-default);
	border-radius: 16px;
	padding: 22px 22px 40px 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 36px;
}
.chat__img-box {
	width: 100%;
	aspect-ratio: 1.8;
	border-radius: 16px;
	border: 1px solid #f5f5f5;
	background: #f7f7f7;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chat__img-box > img {
	height: 100%;
	width: auto;
	object-fit: contain;
}
.chat__img-box.chat__img-prompt > img,
.chat__img-box.chat__img-source > img {
	box-shadow:
		0 0 0.357px 0 rgba(0, 0, 0, 0.25),
		0 0 1.428px 0 rgba(0, 0, 0, 0.1),
		0 0 2.855px 0 rgba(0, 0, 0, 0.05),
		0 2.855px 5.71px 0 rgba(0, 0, 0, 0.02);
	border-radius: 6px;
}
.chat__img-grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	justify-content: center;
}
.chat__img-grid img {
	background-color: var(--color-white);
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	max-width: calc((100% - 12px) / 2);
	height: auto;
}
.chat__img-grid img:first-child {
	box-shadow:
		12px 81px 23px 0 rgba(0, 0, 0, 0),
		8px 52px 21px 0 rgba(0, 0, 0, 0.01),
		4px 29px 18px 0 rgba(0, 0, 0, 0.05),
		2px 13px 13px 0 rgba(0, 0, 0, 0.08),
		0 3px 7px 0 rgba(0, 0, 0, 0.09);
}
.chat__content_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 6px;
}
.chat__content_wrapper h5 {
	color: var(--text-primary);
	font-family: Inter;
	font-size: 24px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.137px;
}
.chat__content_wrapper p {
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.137px;
}

/* Review Section */
.review-section {
	width: 100%;
	padding: 60px 60px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.review__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 54px;
}
.section-heading-row--review {
	max-width: 730px;
	text-align: center;
}
.review__grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 16px 12px;
}
.review__card {
	width: calc((100% - 24px) / 3);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 22px;
	border-radius: 12px;
	border: 1px solid var(--border-default);
	background: linear-gradient(180deg, rgba(157, 157, 157, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%);
	box-shadow: 0 4px 4px 0 rgba(23, 23, 23, 0.04);
	padding: 32px 30px 30px;
}
.review__card-star {
	width: auto;
	height: auto;
}
.review__card-text {
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.2px;
}
.review__reviewer {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 8px;
}
.review__reviewer h6 {
	color: var(--text-primary);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px; /* 100% */
	letter-spacing: -0.32px;
}
.review__reviewer p {
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 114.286% */
	letter-spacing: -0.28px;
}

/* Start Section */
.start-section {
	width: 100%;
	padding: 60px 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.start__inner {
	width: 100%;
	max-width: 1200px;
	border-radius: 24px;
	border: 1px solid var(--border-default);
	background: var(--color-black);
	box-shadow:
		0 2px 4px 0 rgba(3, 7, 18, 0.04),
		0 1px 2px -1px rgba(3, 7, 18, 0.08),
		0 0 0 1px rgba(3, 7, 18, 0.08);
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	overflow: hidden;
}
.start__content-col {
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	row-gap: 32px;
	padding: 40px 0 40px 32px;
}
.start__content-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	row-gap: 24px;
}
.start__heading {
	color: var(--color-white);
	font-family: Inter;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.72px;
}
.start__content-wrapper .sub-heading {
	color: var(--color-white);
}
.start__img_container {
	width: calc(65% - 16px);
	padding-left: 46px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding-top: 70px;
	background: url(../images/dddFsgmRa9OauZfj8SILbI78XY.webp) no-repeat left center / cover;
}
.start__img_container img {
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 24px 0 0 0;
}

/* FAQ Section */
.faq-section {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 60px 100px;
}
.faq__inner {
	width: 100%;
	max-width: 1080px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 44px;
}
.faq__accordion-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.faq__accordion-cover {
	width: 100%;
	border-bottom: 1px solid #0000001a;
}
.faq__accordion-heading {
	width: 100%;
	padding: 24px 50px 24px 14px;
	position: relative;
	cursor: pointer;
	margin: 0;
	color: var(--color-black);
	font-family: Inter;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}
.faq__accordion-heading::after {
	content: "";
	position: absolute;
	height: 20px;
	width: 20px;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(0deg);
	transition: all 0.2s linear;
	background: url(../images/acc_arrow.svg) no-repeat center center / contain;
}
.faq__accordion-heading.active::after {
	transform: translateY(-50%) rotate(180deg);
}
.faq__accordion-panel {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.faq__accordion-desc {
	width: 100%;
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	padding: 0 50px 24px 14px;
}

/* Footer */
.footer {
	padding: 48px 60px;
	width: 100%;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 32px;
}
.footer__top-row {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer__top-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 32px;
}
.footer__logo {
	width: auto;
	max-width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}
.footer__form-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 8px;
}
.footer__form-field {
	width: 100%;
	max-width: 300px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding: 5px;
	border-radius: 8px;
	background-color: var(--color-white);
}
.footer__form-field input {
	width: 66%;
	padding: 10px;
	color: var(--text-secondary);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
}
.footer__form-field button {
	width: 34%;
	padding: 8px 8px;
	background-color: var(--color-black);
	color: var(--color-white);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	border-radius: 8px;
}
.footer__form-caption {
	color: var(--color-white);
	font-family: Inter;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.15px;
}
.footer__top-right {
	width: fit-content;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	column-gap: 32px;
}
.footer__link-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 16px;
}
.footer__link-head {
	color: var(--color-white);
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.16px;
}
.footer__link-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 8px;
}
.footer__link-list a {
	min-width: 144px;
	color: var(--color-white);
	font-family: Inter;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}
.footer__bottom-row {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__copyright {
	color: var(--color-white);
	font-family: Inter;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.15px;
}
.footer__social-list {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 16px;
}
.footer__social-list a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__social-list a img {
	width: 24px;
	height: auto;
	object-fit: contain;
}

/* Responsive Visibility Utilities */
.desktop {
	display: flex;
}
.tablet {
	display: none;
}
.mobile {
	display: none;
}
.hide-mobile {
	display: flex;
}

/* Media Query */
@media (max-width: 1023px) {
	.desktop {
		display: none;
	}
	.tablet {
		display: flex;
	}
	.main-heading {
		font-size: 58px;
	}
	.section-heading {
		font-size: 50px;
	}
	.header__wrapper {
		padding: 16px 40px;
	}
	.header__nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		padding: 20px 40px;
		width: 100%;
		height: calc(100vh - 69px);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		row-gap: 16px;
		transform: translateX(-100%);
		transition: all 0.3s ease;
		background-color: #fff;
	}
	.header__nav.active {
		transform: translateX(0);
	}
	.header__nav ul {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}
	.header__nav ul li {
		width: 100%;
		justify-content: flex-start;
	}
	.header__nav ul li a {
		width: 100%;
		padding: 12px 0;
	}

	.hero-section {
		padding: 80px 40px 40px;
	}
	.featured-section {
		padding: 40px 0;
		row-gap: 36px;
	}
	.think-section {
		padding: 60px 40px 40px;
	}
	.chat-section {
		padding: 60px 40px 40px;
	}
	.review-section {
		padding: 60px 40px 40px;
	}
	.start-section {
		padding: 60px 40px;
	}
	.start__content-col {
		width: 40%;
		row-gap: 26px;
		padding: 30px 0 30px 26px;
	}
	.start__heading {
		font-size: 44px;
	}
	.start__content-wrapper {
		row-gap: 20px;
	}
	.start__img_container {
		width: calc(60% - 16px);
		padding-left: 36px;
		padding-top: 50px;
	}
	.faq-section {
		padding: 40px 40px 80px;
	}
	.footer {
		padding: 48px 40px;
	}
}
@media (max-width: 767px) {
	.mobile {
		display: flex;
	}
	.hide-mobile {
		display: none;
	}
	.main-heading {
		font-size: 46px;
	}
	.section-heading {
		font-size: 38px;
	}
	.header__wrapper {
		padding: 14px 20px;
	}
	.header__nav {
		height: calc(100vh - 63px);
		padding: 14px 20px;
	}

	.hero-section {
		padding: 60px 20px 40px;
	}
	.hero__inner {
		row-gap: 60px;
	}

	.featured__slider-wrapper::after {
		background: linear-gradient(90deg, #fff 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, #fff 100%);
	}
	.featured__slider-wrapper .slick-track {
		column-gap: 20px;
	}
	.slick-slide img {
		transform: scale(0.8);
	}
	.think-section {
		padding: 40px 20px 40px;
	}
	.think__inner {
		row-gap: 44px;
	}
	.think__image-wrapper {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		row-gap: 12px;
	}
	.think__image-col {
		padding: 26px 0 0 26px;
	}
	.think__image-col:first-child {
		width: 100%;
	}
	.think__img-content {
		padding-right: 24px;
	}
	.think__image-col:nth-child(2) {
		width: 100%;
	}
	.think__img-box img.think__img2 {
		position: static;
		max-width: 90%;
		margin-left: auto;
		margin-top: -50px;
	}
	.chat-section {
		padding: 60px 20px 40px;
	}
	.chat__grid {
		flex-direction: column;
		align-items: center;
	}
	.chat__card {
		width: 100%;
	}
	.review-section {
		padding: 60px 20px 40px;
	}
	.review__inner {
		row-gap: 44px;
	}
	.review__grid {
		flex-direction: column;
		align-items: center;
	}
	.review__card {
		width: 100%;
	}
	.start-section {
		padding: 40px 20px;
	}
	.start__inner {
		flex-direction: column;
		border-radius: 16px;
	}
	.start__content-col {
		width: 100%;
		row-gap: 26px;
		padding: 30px 30px 30px 26px;
	}
	.start__img_container {
		width: 100%;
		padding-top: 30px;
	}
	.faq-section {
		padding: 40px 20px 60px;
	}
	.faq__accordion-heading {
		padding: 16px 30px 16px 6px;
	}
	.faq__accordion-desc {
		padding: 0 10px 16px 6px;
	}

	.footer {
		padding: 36px 20px;
	}
	.footer__top-row {
		flex-direction: column;
		row-gap: 36px;
	}
	.footer__top-left {
		width: 100%;
	}
	.footer__top-right {
		justify-content: space-between;
	}
	.footer__bottom-row {
		flex-direction: column-reverse;
		row-gap: 24px;
		align-items: flex-start;
	}
}
