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

:root {
	--color-teal: #570d5c;
	--color-teal-light: #6b1a7f;
	--color-amber: #aad474;
	--color-purple: #6b4e71;
	--color-coral: #5f97e0;
	--color-dark: #2f1639;
	--color-light: #f8f9fa;
	--gradient-1: linear-gradient(135deg, #500d5c 0%, #751a7f 100%);
	--gradient-2: linear-gradient(135deg, #6b4e71 0%, #5f88e0 100%);
	--gradient-3: linear-gradient(135deg, #7ad474 0%, #e05f81 100%);
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--color-dark);
	overflow-x: hidden;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 1rem 0;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 30px;
}

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

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

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

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

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

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--color-teal);
	cursor: pointer;
}

.hero {
	padding: 150px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-1);
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
	max-width: 900px;
	padding: 2rem;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
	display: inline-block;
	padding: 1rem 3rem;
	background: var(--gradient-3);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

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

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

.section {
	padding: 5rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--color-teal);

	padding-bottom: 1rem;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-image {
	width: 100%;
	height: 400px;
	background: url('../img/h.jpg') center/cover no-repeat;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-text h3 {
	font-size: 2rem;
	color: var(--color-purple);
	margin-bottom: 1rem;
}

.about-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
}

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

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

.service-card p {
	color: #666;
	line-height: 1.8;
}

.philosophy-content {
	background: var(--gradient-1);
	padding: 4rem;
	border-bottom-left-radius: 40px;
	border-top-right-radius: 40px;
	color: white;
	text-align: center;
}

.philosophy-content h3 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.philosophy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.philosophy-item {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy-item h4 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.process-timeline {
	position: relative;
	padding: 2rem 0;
}

.timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
	position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
	order: 2;
}

.timeline-number {
	width: 80px;
	height: 80px;
	background: var(--gradient-3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	color: white;
	margin: 0 auto 1rem;
}

.timeline-content {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
	color: var(--color-teal);
	margin-bottom: 1rem;
}

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

.portfolio-item {
	position: relative;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	background: url('../img/creative-process.jpg') center/cover no-repeat;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item:nth-child(2) {
	background: url('../img/team-collaboration.jpg') center/cover no-repeat;
}

.portfolio-item:nth-child(3) {
	background: url('../img/portfolio-showcase.jpg') center/cover no-repeat;
}

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

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

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

.team-member {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.team-member:hover {
	transform: translateY(-10px);
}

.team-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	background: var(--gradient-2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
}

.team-member h3 {
	color: var(--color-teal);
	margin-bottom: 0.5rem;
}

.team-member p {
	color: var(--color-amber);
	font-weight: 600;
}

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

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

.testimonial-card {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 5rem;
	color: var(--color-amber);
	opacity: 0.3;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1rem;
	color: #555;
}

.testimonial-author {
	font-weight: 600;
	color: var(--color-teal);
}

.stats-section {
	background: var(--gradient-2);
	color: white;
	text-align: center;
}

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

.stat-item {
	padding: 2rem;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.2rem;
	opacity: 0.9;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.tech-item {
	background: white;
	padding: 1.5rem 2.5rem;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	font-weight: 600;
	color: var(--color-teal);
	transition: transform 0.3s ease;
}

.tech-item:hover {
	transform: scale(1.1);
	background: var(--gradient-3);
	color: white;
}

.case-study {
	background: var(--color-light);
}

.case-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.case-image {
	width: 100%;
	height: 400px;
	background: url('../img/design-workspace.jpg') center/cover no-repeat;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.case-text h3 {
	font-size: 2rem;
	color: var(--color-purple);
	margin-bottom: 1rem;
}

.case-text p {
	color: #555;
	line-height: 1.8;
	margin-bottom: 1rem;
}

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

.pricing-card {
	background: white;
	padding: 3rem 2rem;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
	border: 2px solid transparent;
}

.pricing-card.featured {
	border-color: var(--color-amber);
	transform: scale(1.05);
}

.pricing-card:hover {
	transform: scale(1.05);
}

.pricing-name {
	font-size: 1.5rem;
	color: var(--color-teal);
	margin-bottom: 1rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: bold;
	color: var(--color-purple);
	margin-bottom: 2rem;
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.5rem 0;
	color: #555;
}

.pricing-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--gradient-3);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: transform 0.3s ease;
}

.pricing-button:hover {
	transform: translateY(-3px);
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 1rem;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 1.5rem;
	background: var(--color-light);
	cursor: pointer;
	font-weight: 600;
	color: var(--color-teal);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:hover {
	background: #e9ecef;
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
	color: #555;
}

.faq-item.active .faq-answer {
	padding: 1.5rem;
	max-height: 500px;
}

.faq-icon {
	transition: transform 0.3s ease;
}

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

.contact-form-section {
	background: var(--gradient-1);
	color: white;

	padding-top: 100px !important;
}

.form-wizard {
	max-width: 700px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.wizard-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
}

.form-step {
	display: none;
}

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

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

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

.form-group {
	margin-bottom: 2rem;
	position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: white;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--color-amber);
	background: rgba(255, 255, 255, 0.2);
}

.form-group label {
	position: absolute;
	top: -10px;
	left: 15px;
	background: var(--color-teal);
	padding: 0 0.5rem;
	font-size: 0.9rem;
	border-radius: 5px;
}

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

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-prev {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.btn-next,
.btn-submit {
	background: var(--gradient-3);
	color: white;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.footer {
	background: var(--color-dark);
	color: white;
	padding: 4rem 2rem 2rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--color-amber);
	margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--color-amber);
}

.footer-logo {
	height: 50px;
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.social-links a:hover {
	background: var(--color-amber);
}

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

@media (max-width: 768px) {
	.mobile-toggle {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		background: white;
		flex-direction: column;
		padding: 2rem;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		transition: left 0.3s ease;
	}

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

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

	.hero p {
		font-size: 1.2rem;
	}

	.about-grid,
	.case-content,
	.timeline-item {
		grid-template-columns: 1fr;
	}

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

	.section {
		padding: 3rem 1rem;
	}
}

.page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6rem 2rem 4rem;
}

.page-header {
	text-align: center;
	margin-bottom: 3rem;
}

.page-title {
	font-size: 3rem;
	color: var(--color-teal);
	margin-bottom: 1rem;
}

.page-content {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
}

.page-content h2 {
	color: var(--color-purple);
	margin: 2rem 0 1rem;
}

.page-content h3 {
	color: var(--color-teal);
	margin: 1.5rem 0 0.5rem;
}

.page-content p {
	margin-bottom: 1rem;
	color: #555;
}

.page-content ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.page-content li {
	margin-bottom: 0.5rem;
	color: #555;
}

.thanks-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-1);
	text-align: center;
	color: white;
	padding: 2rem;
}

.thanks-content {
	max-width: 600px;
}

.checkmark {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--color-amber);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 3rem;
	animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

.thanks-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.thanks-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}
