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

:root {
	--plum: #1b294e;
	--terracotta: #5ed4c0;
	--sage: #aeb5a0;
	--cream: #f5f1e8;
	--white: #ffffff;
	--dark: #1a1a1a;
	--light-gray: #f8f8f8;
}

body {
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
}

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

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 20px rgba(45, 27, 78, 0.1);
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;

	text-decoration: none;
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 600;
	background: linear-gradient(135deg, var(--plum) 0%, var(--terracotta) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

.logo:hover img {
	transform: scale(1.05);
}

.logo:hover .logo-text {
	transform: translateX(3px);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: var(--plum);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--terracotta);
	transition: width 0.3s ease;
}

.nav-menu a:hover {
	color: var(--terracotta);
}

.nav-menu a:hover::after {
	width: 100%;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: var(--plum);
	transition: all 0.3s ease;
}

.hero {
	/* min-height: 100vh; */
	/* display: flex;
	align-items: center; */
	padding: 150px 0;
	/* background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%); */
	/* position: relative;
	overflow: hidden; */
}

.hero__cont {
	display: flex;
	align-items: center;
	gap: 40px;
}

.hero-content {
	flex: 1;
	max-width: 600px;
	z-index: 2;
	animation: fadeInUp 1s ease;
}

.hero-title {
	font-size: 4rem;
	color: #fff;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(45, 27, 78, 0.2);
	animation: fadeIn 1.5s ease;
}

.btn {
	display: inline-block;
	padding: 1rem 2.5rem;

	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--plum) 0%, var(--terracotta) 100%);
	color: var(--white);
	box-shadow: 0 10px 30px rgba(45, 27, 78, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(45, 27, 78, 0.4);
}

.btn-secondary {
	background: var(--cream);
	color: var(--plum);
	border: 2px solid var(--plum);
}

.btn-secondary:hover {
	background: var(--plum);
	color: var(--white);
}

section {
	padding: 100px 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 3rem;
	color: var(--plum);
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--dark);
	opacity: 0.8;
}

.about {
	background: var(--white);
}

/* .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
} */

.about-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	display: block;
	font-size: 3rem;
	font-weight: 700;
	color: var(--plum);
}

.stat-label {
	display: block;
	font-size: 1rem;
	color: var(--dark);
	margin-top: 0.5rem;
}

.services {
	background: var(--light-gray);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--terracotta);
	box-shadow: 0 20px 40px rgba(45, 27, 78, 0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-size: 1.5rem;
	color: var(--plum);
	margin-bottom: 1rem;
}

.service-card p {
	color: var(--dark);
	opacity: 0.8;
}

.process {
	background: linear-gradient(135deg, var(--plum) 0%, #3d2a5f 100%);
	color: var(--white);
}

.process .section-header h2,
.process .section-header .section-subtitle {
	color: var(--white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.process-step {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.process-step:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

.step-number {
	display: inline-block;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--terracotta);
	margin-bottom: 1rem;
}

.process-step h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.portfolio {
	background: var(--white);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	cursor: pointer;
	aspect-ratio: 4/3;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		to top,
		rgba(45, 27, 78, 0.95) 0%,
		transparent 100%
	);
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-overlay h3 {
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.portfolio-overlay p {
	color: var(--terracotta);
	font-weight: 500;
}

.why-us {
	background: var(--cream);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.why-item {
	text-align: center;
	padding: 2rem;
}

.why-item h3 {
	font-size: 1.5rem;
	color: var(--plum);
	margin-bottom: 1rem;
}

.why-item p {
	color: var(--dark);
	opacity: 0.8;
}

.team {
	background: var(--white);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.team-member {
	text-align: center;
	padding: 2rem;
	background: var(--light-gray);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(45, 27, 78, 0.15);
}

.member-info h3 {
	font-size: 1.5rem;
	color: var(--plum);
	margin-bottom: 0.5rem;
}

.member-role {
	color: var(--terracotta);
	font-weight: 600;
	margin-bottom: 1rem;
}

.member-bio {
	color: var(--dark);
	opacity: 0.8;
	line-height: 1.6;
}

.testimonials {
	background: var(--light-gray);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(45, 27, 78, 0.15);
}

.testimonial-text {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--dark);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.author-name {
	font-weight: 600;
	color: var(--plum);
	margin-bottom: 0.25rem;
}

.author-company {
	font-size: 0.9rem;
	color: var(--dark);
	opacity: 0.7;
}

.statistics {
	background: linear-gradient(135deg, var(--terracotta) 0%, var(--plum) 100%);
	padding: 80px 20px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-box {
	text-align: center;
	padding: 2rem;
}

.stat-value {
	display: block;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--white);

	margin-bottom: 0.5rem;
}

.stat-text {
	display: block;
	color: var(--white);
	font-size: 1rem;
	opacity: 0.9;
}

.application {
	background: var(--white);
}

/* .form-container {
	max-width: 700px;
	margin: 0 auto;
} */

.multi-step-form {
	background: var(--light-gray);
	padding: 3rem;

	box-shadow: 0 20px 60px rgba(45, 27, 78, 0.1);
}

.form-progress {
	margin-bottom: 3rem;
}

.progress-bar {
	height: 8px;
	background: var(--cream);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--plum) 0%, var(--terracotta) 100%);
	width: 33.33%;
	transition: width 0.3s ease;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	max-width: 300px;
	margin: 0 auto;
}

.progress-steps .step {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--dark);
	transition: all 0.3s ease;
}

.progress-steps .step.active {
	background: var(--plum);
	color: var(--white);
	transform: scale(1.1);
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.form-step h3 {
	font-size: 1.75rem;
	color: var(--plum);
	margin-bottom: 2rem;
	text-align: center;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--plum);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--cream);
	border-radius: 10px;

	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(212, 116, 94, 0.1);
}

.checkbox-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.checkbox-group input[type='checkbox'] {
	width: auto;
}

.checkbox-group a {
	color: var(--terracotta);
	text-decoration: underline;
}

.form-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.form-buttons .btn {
	flex: 1;
}

.contact {
	background: var(--cream);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.contact-item h3 {
	text-align: center;
	font-size: 1.25rem;
	color: var(--plum);
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: var(--dark);
	line-height: 1.8;
}

.contact-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(45, 27, 78, 0.15);
}

.faq {
	background: var(--white);
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 2rem;
	padding: 2rem;
	background: var(--light-gray);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
}

.faq-question {
	font-size: 1.25rem;
	color: var(--plum);
	margin-bottom: 1rem;
}

.faq-answer {
	color: var(--dark);
	line-height: 1.8;
	opacity: 0.9;
}

.footer {
	background: var(--plum);
	color: var(--white);
	padding: 60px 20px 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-logo-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-logo {
	height: 50px;
}

.footer-logo-text {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--white);
}

.footer-col h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--terracotta);
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.75rem;
}

.footer-col a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.footer-col a:hover {
	opacity: 1;
	color: var(--terracotta);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

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

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

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

	.mobile-toggle {
		display: flex;
	}

	.hero__cont {
		flex-direction: column-reverse;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-image {
		margin-top: 2rem;
	}

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.services-grid,
	.portfolio-grid,
	.team-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.form-buttons {
		flex-direction: column;
	}
}

.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	background: #111;
	color: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	padding: 16px 20px;
	max-width: 520px;
	margin: 0 auto;
	display: none;
}

.cookie-banner.show {
	display: block;
}

.cookie-banner__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.cookie-banner__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	flex: 1;
	min-width: 220px;
}

.cookie-banner__btn {
	border: none;
	background: #fff;
	color: #111;
	padding: 10px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.cookie-banner__btn:hover {
	opacity: 0.85;
}

@media (max-width: 576px) {
	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 14px;
	}

	.cookie-banner__content {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-banner__btn {
		width: 100%;
	}
}

/* NAV */
.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-menu {
	display: flex;
	gap: 30px;
	list-style: none;
}

/* burger */
.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-toggle span {
	width: 26px;
	height: 3px;
	background: #000;
	display: block;
	border-radius: 3px;
}

/* MOBILE */
@media (max-width: 768px) {
	.mobile-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 260px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		padding: 100px 30px;
		gap: 25px;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
	}

	.nav-menu.active {
		right: 0;
	}
}

.legal-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px 80px;
	color: #1a1a1a;

	line-height: 1.75;
}

.legal-page h1 {
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 12px;
	color: #111;
}

.legal-page h2 {
	font-size: 26px;
	line-height: 1.3;
	margin-top: 38px;
	margin-bottom: 14px;
	color: #111;
}

.legal-page p {
	font-size: 16px;
	margin-bottom: 16px;
	color: #333;
}

.legal-page ul {
	margin: 0 0 20px 22px;
	padding: 0;
}

.legal-page li {
	margin-bottom: 10px;
	font-size: 16px;
	color: #333;
}

.legal-page a {
	text-decoration: none;
}

.legal-page .btn.btn-primary {
	display: inline-block;
	padding: 14px 26px;
	border-radius: 10px;
	background: #111;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.legal-page .btn.btn-primary:hover {
	opacity: 0.85;
}

@media (max-width: 768px) {
	.legal-page {
		padding: 100px 16px 60px;
	}

	.legal-page h1 {
		font-size: 32px;
	}

	.legal-page h2 {
		font-size: 22px;
		margin-top: 30px;
	}

	.legal-page p,
	.legal-page li {
		font-size: 15px;
	}
}

.faq-answer {
	display: none;
	margin-top: 10px;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-question {
	cursor: pointer;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 14px;
}

.newsletter-form input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: transparent;
	color: #fff;
	outline: none;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.newsletter-form button {
	padding: 12px 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.newsletter-form button:hover {
	opacity: 0.85;
}
