:root {
	--primary-50: #eff6ff;
	--primary-100: #dbeafe;
	--primary-200: #bfdbfe;
	--primary-300: #93c5fd;
	--primary-400: #60a5fa;
	--primary-500: #3b82f6;
	--primary-600: #2563eb;
	--primary-700: #1d4ed8;
	--primary-800: #1e40af;
	--primary-900: #1e3a8a;
	--primary-950: #172554;
	--secondary-50: #f9fafb;
	--secondary-100: #f3f4f6;
	--secondary-200: #e5e7eb;
	--secondary-300: #d1d5db;
	--secondary-400: #9ca3af;
	--secondary-500: #6b7280;
	--secondary-600: #4b5563;
	--secondary-700: #374151;
	--secondary-800: #1f2937;
	--secondary-900: #111827;
	--secondary-950: #030712;
	--lightYellow: #ffc03d;
	--darkYellow: #f6b245;
	--mainBG: #000837;
	--mainBG2: #050a30;
	--lightBG: #253052;
	--AiAuto: #a358df;
	--platform: #00cc6f;
	--white: #ffffff;
	--customise: #2bb9ff;
	--figmaCol: #4c1d95;
	--frontEnd: #1a5e52;
	--backEnd: #1e429f;
	--articleCol: #e4c4ea;
	--font-main: "Plus Jakarta Sans", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
}

@keyframes softFadeIn {
	0% {
		opacity: 0;
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

.fade-in {
	animation: softFadeIn 0.8s ease-out forwards;
}

.hero-section {
	min-height: 100vh;
	color: rgb(255 255 255 /1);
	padding-top: 2.5rem;
	background-color: var(--mainBG);
}

.hero-header {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-logo {
	width: 4rem;
	object-fit: cover;
}

.hero-title {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 0;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
}

.hero-title span {
	color: var(--lightYellow);
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	margin-top: 2.5rem;
}

.grid-side {
	grid-column: span 5 / span 5;
}

.hero-img {
	width: 100%;
}

.grid-center {
	grid-column: span 2 / span 2;
}

.arrow-mobile {
	width: 100%;
	margin-bottom: 1.25rem;
}

.arrow-desktop-wrap {
	display: none;
	justify-content: center;
	align-items: center;
}

.arrow-desktop {
	width: 100%;
	display: none;
	margin-bottom: 1.25rem;
}

.hero-center-text {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
	display: none;
}

.hero-mobile-title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
}

.hero-subtitle {
	text-align: center;
	margin-left: 1.25rem;
	margin-right: 1.25rem;
	color: var(--lightYellow);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin-bottom: 6rem;
}

.hero-testimonial {
	margin-left: 1.25rem;
}

.stars-img {
	margin-top: 2.5rem;
	margin-bottom: 0.25rem;
	width: 12rem;
}

.testimonial-text {
	font-size: 1.125rem;
	line-height: 1.75rem;
	padding-bottom: 1.25rem;
	color: white;
}

.clients-section {
	/* margin-left: 1.25rem;
	margin-right: 1.25rem; */
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	background-color: white;
}

.clients-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;

	width: 100%;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;

	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.clients-title {
	text-align: center;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 2.25rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.clients-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 1.25rem;

	width: 100%;
	font-weight: 600;
}

.client-logo {
	transition: transform 0.2s ease-in-out;
}

.logo-sm {
	width: 5rem;
}

.logo-md {
	width: 7rem;
}

.logo-lg {
	width: 9rem;
}

.how-we {
	padding: 2rem 0;
	background-color: var(--mainBG);
}

.how-we-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.how-we-header h3 {
	font-size: 1.875rem;
	line-height: 2.25rem;
	text-align: center;
	color: white;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	font-weight: 500;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}

.how-we-header p {
	font-size: 1.125rem;
	line-height: 1.75rem;
	text-align: center;
	font-weight: 400;
	margin-bottom: 2.5rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	color: white;
}

.how-we-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	width: 91.666%;
	margin-left: auto;
	margin-right: auto;
	color: white;
}

.how-card {
	margin-bottom: 3rem;
}

.icon-box {
	display: flex;
	justify-content: center;
	width: fit-content;
	border-radius: 0.5rem;
	padding: 1.25rem;
}

.icon-ai {
	background-color: var(--AiAuto);
}

.icon-platform {
	background-color: var(--platform);
}
.icon-customise {
	background-color: var(--customise);
}

.how-card h4 {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
	margin: 0.5rem 0;
}

.custom-work {
	background-color: var(--mainBG);
	padding: 2rem 0;
}

.custom-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 2rem;
}

.custom-header h3 {
	font-size: 1.875rem;
	line-height: 2.25rem;
	text-align: center;
	color: white;
	margin-bottom: 1.25rem;
	font-weight: 500;
	margin-top: 1.25rem;
}

.custom-header p {
	font-size: 1.125rem;
	line-height: 1.75rem;
	text-align: center;
	font-weight: 400;
	margin-bottom: 2.5rem;
	color: white;
}

.custom-grid {
	display: grid;
	row-gap: 40px;
	width: 91.666%;
	margin: 0 auto;
}

.custom-card {
	border-radius: 0.5rem;
	color: white;
	cursor: pointer;
	background-color: transparent;
	border-radius: 0.75rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.custom-card:hover {
	transform: scale(1.05);
}

.card-image {
	display: flex;
	justify-content: center;
}

.card-image img {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	width: 100%;
}

.faq-section {
	background-color: var(--lightBG);
}

.faq-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.faq-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	letter-spacing: -0.025em;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 2rem;
}

.faq-grid {
	text-align: left;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	border-top: 1px solid #e5e7eb;
	padding-top: 2rem;
}

.contact-section {
	background-color: var(--mainBG);
	color: #ffffff;
	width: 100%;
}

.contact-container {
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2.5rem;
	letter-spacing: -0.025em;
}

.contact-form {
	width: 100%;
	max-width: 640px;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.25rem;
}
.form-group {
	display: flex;
	flex-direction: column;
	position: relative;
}

.form-group label {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
	color: #c7d2fe;
	letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
	padding: 0.85rem 0.9rem;
	font-size: 1rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background-color: rgba(255, 255, 255, 0.04);
	color: #ffffff;
	outline: none;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #facc15;
	background-color: rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}

.error-text {
	font-size: 0.75rem;
	font-weight: 500;
	color: #f87171;
	margin-top: 0.3rem;
	visibility: hidden;
}

.border-red-500 {
	border-color: #ef4444 !important;
}

.form-actions {
	display: flex;
	justify-content: center;
	margin-top: 0.75rem;
}

.submit-btn {
	background: linear-gradient(135deg, #facc15, #fde047);
	color: #000837;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-weight: 500;
	text-align: center;
	border-radius: 0.5rem;
	border: none;
	cursor: pointer;
	letter-spacing: 0.03em;
	max-width: 10rem;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
	box-shadow: 0 8px 20px rgba(250, 204, 21, 0.25);
}

.submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(250, 204, 21, 0.35);
}

.submit-btn:active {
	transform: translateY(0);
	box-shadow: 0 6px 14px rgba(250, 204, 21, 0.25);
}

.site-footer {
	background-color: #000837;
	padding: 2rem 1rem;
	color: #e5e7eb;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #f9fafb;
	text-decoration: none;
}

.footer-logo {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.footer-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #d1d5db;
	max-width: 640px;
}

.footer-text a {
	color: #facc15;
	text-decoration: none;
}

.footer-text a:hover {
	text-decoration: underline;
}

.footer-copy {
	font-size: 0.8rem;
	line-height: 1.25rem;
	color: #cbd5f5;
}

.footer-copy a {
	color: #e5e7eb;
	text-decoration: none;
}

.footer-copy a:hover {
	text-decoration: underline;
}

.planningPermission-hero {
	color: white;
	padding-top: 2.5rem;
	min-height: 100vh;
}

.planningPermission-header {
	display: flex;
	align-items: center;
	justify-content: center;
}

.planningPermission-logo {
	width: 4rem;
}

.planningPermission-title {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 0;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	cursor: pointer;
}

.planningPermission-title span {
	color: var(--lightYellow);
}

.planningPermission-subtitle {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.planningPermission-ctaRow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.625rem;
}

.planningPermission-subtitle-btn {
	display: flex;
	align-items: center;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-weight: 500;
	text-align: center;
	color: var(--mainBG);
	border-radius: 0.5rem;
	background-color: var(--lightYellow);
	font-size: 1rem;
	line-height: 1.5rem;
}

.planningPermission-subtitle-btn:hover {
	background: var(--darkYellow);
}

.planningPermission-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2.5rem auto 5rem auto;
	padding: 0 1.25rem;
	max-width: 1400px;
}

.planningPermission-step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.planningPermission-arrow-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.step-number-icon {
	width: 4rem;
	height: auto;
	margin-bottom: 1rem;
}

.step-illustration {
	width: 100%;
	max-width: 18rem;
	height: auto;
	margin-bottom: 1rem;
}

.step-text {
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 600;
	margin: 0;
	color: #333;
}

.arrow-icon {
	width: 3rem;
	transform: rotate(90deg);
	margin: 1rem 0;
}

.planningPermission-testimonial {
	margin-left: 1.25rem;
	margin-right: 1.25rem;
	margin-top: 1.5rem;
}

.planningPermission-footer {
	color: white;
	background-color: var(--lightBG);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.planningPermission-footer-header {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0;
}
.planningPermission-footer-btn {
	display: flex;
	align-items: center;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-weight: 500;
	text-align: center;
	color: var(--mainBG);
	border-radius: 0.5rem;
	background-color: var(--lightYellow);
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.planningPermission-footer-btn:hover {
	background: var(--darkYellow);
}

.modal {
	display: none;
}
.modal.is-open {
	display: block;
}

.modal__overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(17, 24, 39, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
}

.modal__container {
	width: 100%;
	max-width: 28rem;
	padding: 1rem;
	box-sizing: border-box;
}

.modal__content {
	background-color: #ffffff;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	text-align: center;
	position: relative;
}

.close-modal-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #9ca3af;
	width: 2rem;
	height: 2rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.close-modal-btn:hover {
	background-color: #e5e7eb;
	color: #111827;
}

.modal-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding-top: 1rem;
}

.hidden {
	display: none !important;
}

.spinner {
	width: 2.5rem;
	height: 2.5rem;
	border: 3px solid #e5e7eb;
	border-top-color: var(--primary-600);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	font-weight: 500;
	color: #6b7280;
}

.success-icon {
	width: 3rem;
	height: 3rem;
	color: var(--primary-600);
}

.success-btn {
	background-color: var(--primary-600);
	color: white;
	font-weight: 500;
	border-radius: 0.5rem;
	padding: 0.625rem 1.25rem;
	border: none;
}

.success-text {
	color: var(--primary-600);
	margin: 0;
}

@media (min-width: 640px) {
	.form-group input,
	.form-group textarea {
		font-size: 0.85rem;
		padding: 0.75rem;
	}

	.submit-btn {
		width: fit-content;
	}

	.contact-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.contact-title {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

	.contact-form {
		grid-template-columns: repeat(2, 1fr);
		max-width: 768px;
	}

	.full-width {
		grid-column: span 2;
	}

	.faq-container {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.planningPermission-subtitle-btn {
		width: fit-content;
	}

	.planningPermission-footer-btn {
		width: fit-content;
	}

	.planningPermission-footer-header {
		font-size: 1.5rem;
		line-height: 2rem;
	}
}

@media (min-width: 768px) {
	.site-footer {
		padding: 3rem 1rem;
	}

	.footer-brand {
		font-size: 1.75rem;
	}

	.footer-text {
		font-size: 1rem;
	}

	.faq-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}

	.custom-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 4rem;
		row-gap: 0px;
	}

	.custom-header p {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	.custom-header h3 {
		font-size: 3rem;
		line-height: 1;
	}

	.custom-work {
		padding: 4rem 0;
	}

	.how-we-grid {
		display: grid;
		gap: 2.5rem;
	}

	.how-we-header h3 {
		font-size: 3rem;
		line-height: 1;
	}

	.how-we {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.how-we-header h3 {
		font-size: 3rem;
		line-height: 1.1;
	}

	.how-we-header p {
		font-size: 1.25rem;
		line-height: 1.8;
	}

	.how-we-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}

	.how-card {
		margin-bottom: 0;
	}

	.clients-container {
		padding-top: 5rem;
		padding-bottom: 5rem;
		gap: 0;
	}

	.clients-title {
		font-size: 3rem;
		line-height: 1;
		max-width: 66.666%;
	}

	.testimonial-text {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.stars-img {
		margin-top: 0px;
	}

	.hero-subtitle {
		font-size: 2.25rem;
		line-height: 2.5rem;
		margin-top: -2.5rem;
	}

	.hero-mobile-title {
		font-size: 1.875rem;
		line-height: 2.25rem;
		display: none;
	}

	.hero-center-text {
		font-size: 1.875rem;
		line-height: 2.25rem;
		display: block;
	}

	.hero-section {
		padding-top: 0px;
	}

	.hero-logo {
		width: 8rem;
	}

	.hero-title {
		font-size: 4.5rem;
		line-height: 1;
	}

	.hero-grid {
		margin-top: 0px;
	}

	.grid-side {
		grid-column: span 4 / span 4;
	}

	.hero-img {
		aspect-ratio: 4 / 3;
	}

	.grid-center {
		grid-column: span 4 / span 4;
	}

	.arrow-mobile {
		display: none;
	}

	.arrow-desktop-wrap {
		display: flex;
		flex-direction: column;
	}

	.arrow-desktop {
		display: flex;
	}

	.planningPermission-ctaRow {
		margin-bottom: 1.25rem;
	}

	.planningPermission-subtitle {
		font-size: 2.25rem;
		line-height: 2.5rem;
		margin-bottom: 3rem;
	}

	.planningPermission-title {
		font-size: 3rem;
		line-height: 1;
	}

	.planningPermission-title span {
		font-size: 3rem;
		line-height: 1;
	}

	.planningPermission-logo {
		width: 5rem;
	}

	.planningPermission-hero {
		padding-top: 0.5rem;
	}

	.planningPermission-footer {
		display: flex;
		flex-direction: row;
		gap: 2rem;
	}

	.planningPermission-footer-header {
		font-size: 48px;
		line-height: 1;
	}

	.planningPermission-testimonial {
		margin-top: 3rem;
	}

	.planningPermission-steps {
		display: grid;

		grid-template-columns: repeat(11, 1fr);
		align-items: start;
		gap: 1rem;
		margin-bottom: 0;
	}

	.planningPermission-step-card {
		grid-column: span 2;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.step-number-icon {
		width: 3.5rem;
		height: 4rem;
		object-fit: contain;
		object-position: bottom left;
		margin-bottom: 1rem;
		margin-left: 0;
	}

	.step-illustration {
		width: 100%;
		height: 12rem;
		object-fit: contain;
		object-position: center;
		margin-bottom: 1.5rem;
	}

	.last-illustration {
		height: 12rem;
		object-fit: contain;
	}

	.step-text {
		font-size: 1rem;
		text-align: left;
	}

	.planningPermission-arrow-container {
		grid-column: span 1;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		height: 100%;
	}

	.arrow-icon {
		transform: rotate(0deg);
		width: 100%;
		max-width: 5rem;
		height: auto;
		margin-top: 9rem;
	}
}

@media (min-width: 1024px) {
	.faq-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.custom-header {
		margin-left: auto;
		margin-right: auto;
	}

	.how-we-header {
		margin-left: auto;
		margin-right: auto;
	}

	.client-logo:hover {
		transform: scale(1.1);
	}

	.hero-mobile-title {
		font-size: 3rem;
		line-height: 1;
	}

	.hero-center-text {
		font-size: 3rem;
		line-height: 1;
	}
}
