/* CSS Variables - Design System */
:root {
	/* Colors */
	--primary: hsl(0, 84%, 45%);
	--primary-foreground: hsl(0, 0%, 98%);
	--primary-glow: hsl(0, 84%, 55%);

	--secondary: hsl(215, 28%, 17%);
	--secondary-foreground: hsl(0, 0%, 98%);

	--accent: hsl(45, 93%, 58%);
	--accent-foreground: hsl(220, 13%, 18%);

	--background: hsl(0, 0%, 99%);
	--foreground: hsl(220, 13%, 18%);

	--muted: hsl(220, 14%, 96%);
	--muted-foreground: hsl(220, 9%, 46%);

	--border: hsl(220, 13%, 91%);
	--card: hsl(0, 0%, 100%);
	--card-foreground: hsl(220, 13%, 18%);

	/* Gradients */
	--gradient-hero: linear-gradient(
		135deg,
		hsl(0, 84%, 45%) 0%,
		hsl(215, 28%, 17%) 100%
	);
	--gradient-subtle: linear-gradient(
		180deg,
		hsl(0, 0%, 99%) 0%,
		hsl(220, 14%, 98%) 100%
	);
	--gradient-card: linear-gradient(
		145deg,
		hsl(0, 0%, 100%) 0%,
		hsl(220, 14%, 97%) 100%
	);

	/* Shadows */
	--shadow-elegant: 0 10px 40px -10px hsla(0, 84%, 45%, 0.15);
	--shadow-card: 0 4px 20px -4px hsla(220, 13%, 18%, 0.1);
	--shadow-glow: 0 0 60px hsla(0, 84%, 55%, 0.2);

	/* Transitions */
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
}

html {
	scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(252, 252, 252, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(220, 220, 220, 0.5);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

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

.logo-icon {
	width: 2rem;
	height: 2rem;
	background: var(--gradient-hero);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon span {
	color: var(--primary-foreground);
	font-weight: bold;
	font-size: 1.125rem;
}

.logo-text {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--foreground);
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: var(--foreground);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition-smooth);
}

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

.cta-button-desktop {
	display: none;
}

.mobile-menu-btn {
	display: block;
	background: none;
	border: none;
	padding: 0.5rem;
	color: var(--foreground);
	font-size: 1.5rem;
	cursor: pointer;
}

.nav-mobile {
	display: none;
	margin-top: 1rem;
	padding-bottom: 1rem;
	border-top: 1px solid rgba(220, 220, 220, 0.3);
}

.nav-mobile.active {
	display: block;
}

.nav-mobile-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 1rem;
}

/* Submenu styles */
.nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	color: var(--foreground);
	font-weight: 500;
	transition: var(--transition-smooth);
}

.has-submenu {
	cursor: pointer;
}

.submenu-icon {
	margin-left: 0.5rem;
	font-size: 0.75rem;
	transition: transform 0.3s ease;
}

/* Desktop submenu styles */
.hidden.md\:flex .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--card);
	border-radius: 0.5rem;
	box-shadow: var(--shadow-card);
	padding: 0.75rem;
	min-width: 200px;
	display: none;
	z-index: 10;
}

.hidden.md\:flex .has-submenu:hover .submenu {
	display: block;
}

.hidden.md\:flex .submenu .nav-link {
	padding: 0.5rem 0.75rem;
	display: block;
}

/* Mobile submenu styles */
.nav-mobile .submenu {
	display: none;
	flex-direction: column;
	padding-left: 1rem;
	margin-top: 0.5rem;
	border-left: 2px solid var(--border);
}

.nav-mobile .has-submenu.active .submenu {
	display: flex;
}

.nav-mobile .has-submenu.active .submenu-icon {
	transform: rotate(180deg);
}

.nav-mobile .submenu .nav-link {
	padding: 0.5rem 0;
	display: block;
	width: 100%;
}

/* Ensure each submenu item is on its own line in mobile */
.nav-mobile-content a {
	display: block;
	padding: 0.5rem 0;
	width: 100%;
}

.nav-mobile .submenu a {
	display: block;
	padding: 0.5rem 0;
	width: 100%;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.btn-primary {
	background: var(--primary);
	color: var(--primary-foreground);
}

.btn-primary:hover {
	background: hsl(0, 84%, 40%);
}

.btn-hero {
	background: var(--accent);
	color: var(--accent-foreground);
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-hero:hover {
	background: hsl(45, 93%, 50%);
}

.btn-outline {
	border: 1px solid rgba(252, 252, 252, 0.3);
	color: var(--primary-foreground);
	background: transparent;
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-outline:hover {
	background: rgba(252, 252, 252, 0.1);
}

.btn-accent {
	background: var(--accent);
	color: var(--accent-foreground);
	padding: 0.75rem 2rem;
}

.btn-outline-accent {
	border: 1px solid rgba(255, 223, 101, 0.3);
	color: var(--accent);
	background: transparent;
	padding: 0.75rem 2rem;
}

.btn-outline-accent:hover {
	background: rgba(255, 223, 101, 0.1);
}

.btn-full {
	width: 100%;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--gradient-hero);
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--gradient-hero);
	opacity: 0.8;
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 1200px;
	padding: 0 1.5rem;
}

.hero-title {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-foreground);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-accent {
	color: var(--accent);
	display: block;
}

.hero-description {
	font-size: 1.25rem;
	color: rgba(252, 252, 252, 0.9);
	margin-bottom: 2rem;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
}

.technologies {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	opacity: 0.9;
}

.tech-label {
	color: rgba(252, 252, 252, 0.8);
	font-size: 0.875rem;
	font-weight: 500;
}

.tech-badge {
	background: rgba(252, 252, 252, 0.1);
	backdrop-filter: blur(4px);
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(252, 252, 252, 0.2);
	color: var(--primary-foreground);
	font-weight: 500;
}

.floating-element {
	position: absolute;
	border-radius: 50%;
	filter: blur(48px);
	animation: pulse 2s infinite;
}

.floating-1 {
	top: 5rem;
	left: 2.5rem;
	width: 8rem;
	height: 8rem;
	background: rgba(255, 223, 101, 0.2);
}

.floating-2 {
	bottom: 5rem;
	right: 2.5rem;
	width: 12rem;
	height: 12rem;
	background: rgba(220, 38, 38, 0.2);
	animation-delay: 1s;
}

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1.5rem;
}

.section-description {
	font-size: 1.25rem;
	color: var(--muted-foreground);
	max-width: 48rem;
	margin: 0 auto;
}

.text-primary {
	color: var(--primary);
}

.text-accent {
	color: var(--accent);
}

/* Services Section */
.services {
	padding: 5rem 0;
	background: var(--gradient-subtle);
}

.services-grid {
	display: grid;
	gap: 2rem;
}

.service-card {
	background: var(--gradient-card);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(220, 220, 220, 0.5);
	box-shadow: var(--shadow-card);
	transition: var(--transition-smooth);
}

.service-card:hover {
	box-shadow: var(--shadow-elegant);
	transform: scale(1.05);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.service-icon {
	font-size: 2rem;
	padding: 0.75rem;
	background: rgba(220, 38, 38, 0.1);
	border-radius: 0.5rem;
	color: var(--primary);
}

.service-title {
	font-size: 1.25rem;
	color: var(--foreground);
	font-weight: bold;
}

.service-description {
	color: var(--muted-foreground);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.tech-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tech-tag {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	background: rgba(255, 223, 101, 0.2);
	color: var(--accent-foreground);
	border-radius: 9999px;
	border: 1px solid rgba(255, 223, 101, 0.3);
	font-weight: 500;
}

/* Why Vietnam Section */
.why-vietnam {
	padding: 5rem 0;
	background: var(--background);
}

.advantages-grid {
	display: grid;
	gap: 2rem;
	margin-bottom: 4rem;
}

.advantage-card {
	background: var(--card);
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(220, 220, 220, 0.5);
	transition: var(--transition-smooth);
}

.advantage-card:hover {
	box-shadow: var(--shadow-elegant);
}

.advantage-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: rgba(220, 38, 38, 0.1);
	border-radius: 50%;
	color: var(--primary);
	display: inline-block;
	width: 110px;
	height: 110px;
}

.advantage-title {
	font-size: 1.25rem;
	color: var(--foreground);
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.advantage-stat {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
	margin-bottom: 1rem;
}

.advantage-description {
	color: var(--muted-foreground);
	line-height: 1.6;
}

.trusted-section {
	text-align: center;
	padding: 2rem;
	background: var(--gradient-card);
	border-radius: 1rem;
	box-shadow: var(--shadow-elegant);
}

.trusted-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.trusted-description {
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

.trusted-indicators {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	opacity: 0.6;
}

.dot {
	width: 0.5rem;
	height: 0.5rem;
	background: var(--primary);
	border-radius: 50%;
}

/* Process Section */
.process {
	padding: 5rem 0;
	background: var(--secondary);
	color: var(--secondary-foreground);
}

.process .section-title {
	color: var(--secondary-foreground);
}

.process .section-description {
	color: rgba(252, 252, 252, 0.8);
}

.process-steps {
	display: grid;
	gap: 2rem;
	margin-bottom: 4rem;
}

.process-step {
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}

.step-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	width: 6rem;
	height: 6rem;
	background: rgba(255, 223, 101, 0.2);
	border-radius: 50%;
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.process-step:hover .step-icon {
	background: var(--accent);
	color: var(--accent-foreground);
}

.step-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--secondary-foreground);
	margin-bottom: 1rem;
}

.step-description {
	color: rgba(252, 252, 252, 0.7);
	line-height: 1.6;
}

.cta-section {
	text-align: center;
	background: rgba(255, 223, 101, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(255, 223, 101, 0.2);
}

.cta-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--secondary-foreground);
	margin-bottom: 1rem;
}

.cta-description {
	color: rgba(252, 252, 252, 0.7);
	margin-bottom: 1.5rem;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

/* Contact Section */
.contact {
	padding: 5rem 0;
	background: var(--gradient-subtle);
}

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

.contact-info {
	order: 2;
}

.contact-form-wrapper {
	order: 1;
}

.contact-form-wrapper {
	/* Grid column span removed for responsive layout */
}

.contact-form-card {
	background: var(--card);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: var(--shadow-elegant);
	border: 1px solid rgba(220, 220, 220, 0.5);
}

.form-title {
	font-size: 1.5rem;
	color: var(--foreground);
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-description {
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem;
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	background: var(--background);
	color: var(--foreground);
	font-size: 1rem;
}

.form-group textarea {
	min-height: 8rem;
	resize: vertical;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-card {
	background: var(--card);
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(220, 220, 220, 0.5);
}

.info-title {
	font-size: 1.25rem;
	color: var(--foreground);
	margin-bottom: 1rem;
	font-weight: bold;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.contact-icon {
	padding: 0.5rem;
	background: rgba(220, 38, 38, 0.1);
	border-radius: 0.5rem;
	color: var(--primary);
}

.contact-details {
	flex: 1;
}

.contact-label {
	font-weight: 500;
	color: var(--foreground);
}

.contact-value {
	color: var(--muted-foreground);
}

.response-card {
	background: var(--gradient-card);
	border-radius: 1rem;
	padding: 1.5rem;
	text-align: center;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(220, 220, 220, 0.5);
}

.response-title {
	font-size: 1.125rem;
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.response-description {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.response-time {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
}

/* Footer */
.footer {
	background: var(--secondary);
	color: var(--secondary-foreground);
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-company {
	grid-column: span 2;
}

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

.footer-description {
	color: rgba(252, 252, 252, 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

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

.social-link {
	padding: 0.5rem;
	background: rgba(252, 252, 252, 0.1);
	border-radius: 0.5rem;
	color: var(--secondary-foreground);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.social-link:hover {
	background: var(--accent);
	color: var(--accent-foreground);
}

.footer-title {
	font-weight: bold;
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

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

.footer-links a {
	color: rgba(252, 252, 252, 0.8);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-contact .contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: rgba(252, 252, 252, 0.8);
}

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

.footer-bottom p {
	color: rgba(252, 252, 252, 0.6);
	font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
	padding: 5rem 0;
	background: var(--background);
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
	align-items: stretch;
}

.pricing-card {
	background: var(--gradient-card);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(220, 220, 220, 0.5);
	box-shadow: var(--shadow-card);
	transition: var(--transition-smooth);
	position: relative;
	text-align: center;
}

.pricing-card.featured {
	border: 2px solid var(--primary);
	box-shadow: var(--shadow-elegant);
	transform: scale(1.05);
}

.pricing-card:hover {
	box-shadow: var(--shadow-elegant);
	transform: translateY(-4px);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-4px);
}

.popular-badge {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: var(--shadow-card);
}

.pricing-header {
	margin-bottom: 2rem;
}

.pricing-badge {
	display: inline-block;
	background: rgba(220, 38, 38, 0.1);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.pricing-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.pricing-rate {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.125rem;
	margin-bottom: 1.5rem;
	flex-wrap: nowrap;
	white-space: nowrap;
	min-height: 4rem;
}

.currency {
	font-size: 1.5rem;
	color: var(--primary);
	font-weight: bold;
	line-height: 1;
}

.amount {
	font-size: 3rem;
	font-weight: bold;
	color: var(--foreground);
	line-height: 1;
	letter-spacing: -0.02em;
}

.range {
	font-size: 2rem;
	color: var(--primary);
	font-weight: bold;
	line-height: 1;
	margin-left: 0.125rem;
	letter-spacing: -0.02em;
}

.period {
	font-size: 1rem;
	color: var(--muted-foreground);
	font-weight: 500;
	margin-left: 0.125rem;
	line-height: 1;
}

.currency-unit {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	font-weight: 500;
	margin-left: 0.75rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	transition: var(--transition-smooth);
}

.pricing-card:hover .currency-unit {
	opacity: 1;
	color: var(--primary);
}

.pricing-features {
	text-align: left;
	margin-bottom: 2rem;
}

.feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--foreground);
	font-size: 0.875rem;
	border-bottom: 1px solid rgba(220, 220, 220, 0.3);
}

.feature:last-child {
	border-bottom: none;
}

.pricing-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.skill-tag {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	background: rgba(255, 223, 101, 0.2);
	color: var(--accent-foreground);
	border-radius: 9999px;
	border: 1px solid rgba(255, 223, 101, 0.3);
	font-weight: 500;
}

.pricing-notes {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 3rem;
	padding: 2rem;
	background: var(--gradient-card);
	border-radius: 1rem;
	border: 1px solid rgba(220, 220, 220, 0.5);
	margin-top: 2rem;
}

.pricing-note {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.note-icon {
	font-size: 1.5rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.note-content {
	color: var(--foreground);
	line-height: 1.6;
}

.pricing-cta {
	text-align: center;
	background: var(--gradient-card);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(220, 220, 220, 0.5);
	box-shadow: var(--shadow-card);
}

.pricing-cta-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.pricing-cta-description {
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.hero-content {
		margin-top: 100px;
		padding-bottom: 30px;
	}

	/* Mobile Contact Form Improvements */
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-form-wrapper {
		order: 1;
	}

	.contact-info {
		order: 2;
	}

	.wpcf7-submit {
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
		align-self: stretch;
	}

	.wpcf7-form-control {
		padding: 0.875rem 1rem;
		font-size: 1rem;
	}

	.wpcf7-textarea {
		min-height: 100px;
	}

	.contact-form-card {
		padding: 1.5rem;
	}

	.contact-info-card {
		padding: 1.25rem;
	}

	.pricing-grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}

	.pricing-card.featured {
		transform: none !important;
		order: -1;
	}

	.pricing-card.featured:hover {
		transform: translateY(-4px) !important;
	}

	.pricing-rate {
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.pricing-rate .currency {
		font-size: 1.25rem;
		margin-bottom: 0.25rem;
	}

	.pricing-rate .amount {
		font-size: 2.5rem;
		margin-bottom: 0.125rem;
	}

	.pricing-rate .range {
		font-size: 1.75rem;
		margin-left: 0;
		margin-bottom: 0.25rem;
	}

	.pricing-rate .period {
		font-size: 0.875rem;
		margin-left: 0;
		opacity: 0.8;
	}

	.pricing-rate .currency-unit {
		font-size: 0.75rem;
		margin-left: 0;
		margin-top: 0.25rem;
		opacity: 0.7;
		display: block;
		text-align: center;
	}

	.pricing-notes {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}

	.pricing-card {
		display: block;
		height: auto;
	}
}

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

/* Animations */
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.hero-text {
	animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}

	.cta-buttons {
		flex-direction: row;
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}

	.cta-button-desktop {
		display: block;
	}

	.mobile-menu-btn {
		display: none;
	}

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

	.hero-accent {
		display: inline;
		margin-left: 1rem;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-content {
		grid-template-columns: 2fr 1fr;
		gap: 3rem;
		align-items: start;
	}

	.contact-info {
		order: 2;
	}

	.contact-form-wrapper {
		order: 1;
	}

	/* Contact Form 7 Desktop Improvements */
	.wpcf7-submit {
		padding: 1.125rem 2.5rem;
		font-size: 1.125rem;
	}

	.wpcf7-form-control {
		padding: 1rem 1.25rem;
		font-size: 1.125rem;
	}

	.wpcf7-textarea {
		min-height: 140px;
	}

	.footer-content {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

@media (min-width: 768px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-rate {
		gap: 0.125rem;
		flex-direction: row;
		align-items: baseline;
	}

	.pricing-rate .currency,
	.pricing-rate .amount,
	.pricing-rate .range,
	.pricing-rate .period,
	.pricing-rate .currency-unit {
		margin: 0;
	}

	.pricing-rate .range {
		margin-left: 0.125rem;
	}

	.pricing-rate .period {
		margin-left: 0.125rem;
	}

	.pricing-rate .currency-unit {
		margin-left: 0.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 4.5rem;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.advantages-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1200px) {
	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 1200px;
		margin: 0 auto;
		gap: 2rem;
	}

	.pricing-card {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.pricing-features {
		flex-grow: 1;
	}

	.pricing-rate {
		justify-content: center;
		align-items: baseline;
		gap: 0.125rem;
	}

	.pricing-rate .currency-unit {
		margin-left: 1rem;
		font-size: 0.875rem;
	}
}
