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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: #666;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	text-decoration: none;
}

.btn-primary {
	background: #2563eb;
	color: white;
}

.btn-primary:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.btn-secondary:hover {
	background: #2563eb;
	color: white;
}

/* Header */
.header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid #e5e7eb;
}

.navbar {
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2563eb;
}

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

.nav-link {
	color: #374151;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #2563eb;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #2563eb;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #374151;
	margin: 3px 0;
	transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 1rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.cookie-actions {
	display: flex;
	gap: 1rem;
}

.cookie-actions .btn {
	padding: 8px 20px;
	font-size: 0.9rem;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 100px 0;
	min-height: 700px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.hero .container {
	display: flex;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.hero-content {
	flex: 1;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-title .highlight {
	background: linear-gradient(45deg, #ffd700, #ffa500);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-stats {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
	font-size: 0.9rem;
	color: #ffffff;
	opacity: 0.9;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-actions .btn {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-image {
	flex: 1;
	text-align: center;
	position: relative;
}

.hero-image-wrapper {
	position: relative;
	display: inline-block;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.floating-card {
	position: absolute;
	background: white;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
	top: 20%;
	left: -10%;
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 50%;
	right: -10%;
	animation-delay: 1s;
}

.floating-card.card-3 {
	bottom: 20%;
	left: -5%;
	animation-delay: 2s;
}

.card-icon {
	font-size: 1.5rem;
}

.card-text {
	font-size: 0.8rem;
	font-weight: 600;
	color: #333;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Technologies Section */
.technologies-section {
	padding: 80px 0;
	background: white;
}

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

.tech-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e2e8f0;
}

.tech-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-icon img {
	width: 40px;
	height: 40px;
}

.tech-item h3 {
	font-size: 1.2rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.tech-item p {
	color: #64748b;
	font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
	padding: 80px 0;
	background: #f8fafc;
}

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

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid #e2e8f0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #eff6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.2rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.feature-card p {
	color: #64748b;
	line-height: 1.6;
}

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

.hero-actions {
	display: flex;
	gap: 1rem;
}

.hero-image img {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: #1e293b;
	margin-bottom: 3rem;
}

.page-header {
	padding: 120px 0 60px;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Services */
.services-overview {
	padding: 80px 0;
	background: white;
}

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

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

.service-card:hover {
	transform: translateY(-5px);
}

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

.service-card h3 {
	color: #1e293b;
	margin-bottom: 1rem;
}

/* About Section */
.about-section {
	padding: 80px 0;
	background: #f8fafc;
}

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

.about-text h2 {
	color: #1e293b;
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
}

.about-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #475569;
	margin-bottom: 2rem;
}

.achievements {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.achievement {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.achievement-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.achievement-text h4 {
	color: #1e293b;
	margin-bottom: 0.25rem;
}

.achievement-text p {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

.stats {
	display: flex;
	gap: 2rem;
	margin: 2rem 0;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: #2563eb;
}

.stat-label {
	color: #64748b;
	font-size: 0.9rem;
}

.about-image img {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio */
.portfolio-preview {
	padding: 80px 0;
	background: white;
}

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

.portfolio-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

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

.portfolio-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(37, 99, 235, 0.9);
	color: white;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-action {
	text-align: center;
}

/* Services Detail */
.services-detail {
	padding: 80px 0;
}

.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.service-detail.reverse {
	direction: rtl;
}

.service-detail.reverse > * {
	direction: ltr;
}

.service-features ul {
	list-style: disc;
	margin-left: 2rem;
}

.service-features li {
	margin-bottom: 0.5rem;
}

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

.tech-tag {
	background: #e2e8f0;
	color: #475569;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
}

.service-image img {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
	padding: 80px 0;
	background: #f8fafc;
}

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

.process-step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.step-content h3 {
	font-size: 1.3rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.step-content p {
	color: #64748b;
	line-height: 1.6;
}

/* Pricing */
.pricing-section {
	padding: 80px 0;
	background: white;
}

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

.pricing-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
}

.pricing-card.featured {
	border: 2px solid #2563eb;
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: 'Рекомендуем';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #2563eb;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2563eb;
	margin: 1rem 0;
}

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

.pricing-features li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #e5e7eb;
}

/* About Detailed */
.about-detailed {
	padding: 80px 0;
	background: white;
}

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

.story-image img {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Team */
.team-section {
	padding: 80px 0;
	background: #f8fafc;
}

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

.team-member {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1rem;
}

.team-member h3 {
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.team-member p {
	color: #2563eb;
	font-weight: 600;
	margin-bottom: 1rem;
}

.member-bio {
	color: #64748b;
	font-size: 0.9rem;
}

/* Values */
.values-section {
	padding: 80px 0;
	background: white;
}

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

.value-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Office */
.office-section {
	padding: 80px 0;
	background: #f8fafc;
}

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

.office-features {
	margin-top: 2rem;
}

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

.feature-icon {
	font-size: 1.5rem;
}

.office-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.office-images img {
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Page */
.portfolio-stats {
	padding: 80px 0;
	background: white;
}

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

.stat-card {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #2563eb;
	display: block;
	margin-bottom: 0.5rem;
}

.stat-card .stat-label {
	color: #64748b;
	font-size: 1rem;
}

.portfolio-grid-section {
	padding: 80px 0;
	background: #f8fafc;
}

.portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.75rem 1.5rem;
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 25px;
	color: #64748b;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
	background: #2563eb;
	color: white;
	border-color: #2563eb;
}

.portfolio-grid .portfolio-item {
	margin-bottom: 2rem;
}

.portfolio-info {
	background: white;
	padding: 1.5rem;
	border-radius: 0 0 10px 10px;
}

.portfolio-info h3 {
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.portfolio-details {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

.detail {
	background: #f1f5f9;
	color: #64748b;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.875rem;
}

.portfolio-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tag {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.875rem;
}

/* Success Stories */
.success-stories {
	padding: 80px 0;
	background: white;
}

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

.story-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-quote {
	font-style: italic;
	color: #64748b;
	margin-bottom: 1.5rem;
}

.story-author {
	border-top: 1px solid #e5e7eb;
	padding-top: 1rem;
}

.story-author strong {
	color: #1e293b;
	display: block;
}

.story-author span {
	color: #64748b;
	font-size: 0.9rem;
}

/* Contact */
.contact-section {
	padding: 80px 0;
	background: white;
}

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

.contact-methods {
	margin: 2rem 0;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.method-icon {
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.method-info h3 {
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.method-info p {
	color: #64748b;
	margin: 0;
}

.social-contact {
	margin-top: 2rem;
}

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

.social-link {
	color: #2563eb;
	text-decoration: underline;
}

.social-link:hover {
	color: #1d4ed8;
}

/* Forms */
.contact-form {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 10px;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #374151;
	font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

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

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.9rem;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.error-message {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: block;
}

.form-message {
	padding: 1rem;
	border-radius: 5px;
	margin-top: 1rem;
}

.success-message {
	background: #dcfce7;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}

.error-message.form-message {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

/* Map */
.map-section {
	padding: 80px 0;
	background: #f8fafc;
}

.map-wrapper {
	margin-top: 2rem;
}

.map-placeholder {
	position: relative;
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.map-info {
	position: absolute;
	top: 2rem;
	left: 2rem;
	background: rgba(255, 255, 255, 0.95);
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 300px;
}

.map-info h3 {
	color: #1e293b;
	margin-bottom: 1rem;
}

.map-info p {
	color: #64748b;
	margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
	padding: 80px 0;
	background: white;
}

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

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	color: #1e293b;
	margin-bottom: 1rem;
}

.faq-item p {
	color: #64748b;
	margin: 0;
}

/* Legal Pages */
.legal-content {
	padding: 80px 0;
	background: white;
}

.content-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.content-wrapper h2 {
	color: #1e293b;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
}

.content-wrapper h3 {
	color: #374151;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.content-wrapper ul {
	list-style: disc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.content-wrapper li {
	margin-bottom: 0.5rem;
	color: #64748b;
}

.contact-info {
	background: #f8fafc;
	padding: 1.5rem;
	border-radius: 10px;
	margin: 2rem 0;
}

.contact-info p {
	margin-bottom: 0.5rem;
}

/* Cookie Controls */
.cookie-controls {
	margin: 2rem 0;
	padding: 2rem;
	background: #f8fafc;
	border-radius: 10px;
}

.cookie-control {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: '';
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: #2563eb;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

input:disabled + .slider {
	background-color: #94a3b8;
	cursor: not-allowed;
}

.control-info strong {
	color: #1e293b;
	display: block;
	margin-bottom: 0.25rem;
}

.control-info p {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

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

.browser-setting {
	background: #f8fafc;
	padding: 1.5rem;
	border-radius: 10px;
}

.browser-setting h4 {
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.browser-setting p {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	text-align: center;
}

.cta-content h2 {
	color: white;
	margin-bottom: 1rem;
	font-size: 2.5rem;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

.cta-benefits {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.benefit {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.benefit-icon {
	font-size: 1.2rem;
}

.btn-large {
	padding: 15px 40px;
	font-size: 1.1rem;
}

.cta-section .btn-primary {
	background: white;
	color: #2563eb;
}

.cta-section .btn-primary:hover {
	background: #f8fafc;
}

/* Footer */
.footer {
	background: #1e293b;
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h3 {
	color: white;
	margin-bottom: 1rem;
}

.footer-section h4 {
	color: white;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #94a3b8;
	margin-bottom: 0.5rem;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #94a3b8;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: #94a3b8;
	margin: 0;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: #94a3b8;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 2rem;
		gap: 1rem;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.hero-actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.about-content,
	.about-story,
	.office-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.service-detail {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.stats {
		justify-content: center;
	}

	.cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.cookie-actions {
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
	}

	.portfolio-filters {
		justify-content: center;
	}

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

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

	.pricing-card.featured {
		transform: none;
	}

	.office-images {
		grid-template-columns: 1fr;
	}

	.map-info {
		position: static;
		margin-top: 1rem;
		max-width: none;
	}

	.h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

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

	.section-title {
		font-size: 1.75rem;
	}

	.service-card,
	.team-member,
	.value-card {
		padding: 1.5rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.stats {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-actions {
		flex-direction: column;
		gap: 1rem;
	}

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

/* Print Styles */
@media print {
	.header,
	.cookie-banner,
	.cta-section,
	.footer {
		display: none;
	}

	.hero {
		padding: 20px 0;
	}

	.page-header {
		padding: 20px 0;
		background: none;
		color: #000;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}

	.container {
		max-width: none;
		padding: 0;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* Hidden but accessible to screen readers */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
