* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: rgba(12, 18, 30, 0.96);
	--border: rgba(255, 255, 255, 0.08);
	--text: rgba(226, 232, 240, 0.90);
	--muted: rgba(148, 163, 184, 0.92);
	--accent: rgba(96, 165, 250, 0.95);
	--primary-dark: #0c121e;
	--primary-blue: #60a5fa;
	--secondary-blue: #3b82f6;
	--light-gray: #f8fafc;
	--dark-gray: #334155;
	--white: #ffffff;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #1e293b;
	background: var(--white);
	padding-bottom: 80px;
}

header {
	background: linear-gradient(135deg, #0c121e 0%, #1e293b 100%);
	color: var(--white);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.logo-img {
	height: 38px;
	width: auto;
	flex: 0 0 auto;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}

.logo-text span {
	color: var(--primary-blue);
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

nav a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

nav a:hover {
	color: var(--primary-blue);
}

.hero {
	background: linear-gradient(135deg, #0c121e 0%, #1e293b 50%, #334155 100%);
	color: var(--white);
	padding: 140px 2rem 100px;
	text-align: 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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%2360a5fa" opacity="0.1"/></svg>') repeat;
	opacity: 0.03;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero h1 span {
	color: var(--primary-blue);
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: var(--muted);
	font-weight: 300;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background: var(--primary-blue);
	color: var(--white);
	padding: 1rem 2.5rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.cta-button:hover {
	background: var(--secondary-blue);
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(96, 165, 250, 0.4);
}

.stats {
	background: var(--white);
	padding: 3rem 2rem;
	margin-top: -50px;
	position: relative;
	z-index: 10;
}

.stats-container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	background: var(--white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

.stat-item {
	text-align: center;
	padding: 1rem;
	border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
	border-right: none;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary-blue);
	line-height: 1;
}

.stat-label {
	font-size: 0.95rem;
	color: var(--dark-gray);
	margin-top: 0.5rem;
	font-weight: 500;
}

section {
	padding: 5rem 2rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--primary-dark);
	letter-spacing: -0.02em;
}

.section-subtitle {
	text-align: center;
	color: var(--dark-gray);
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 3rem;
	font-weight: 300;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
}

.about {
	background: var(--light-gray);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--primary-dark);
	font-weight: 700;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--dark-gray);
	line-height: 1.8;
}

.credentials {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.credential-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.credential-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.credential-text {
	font-weight: 600;
	color: var(--primary-dark);
}

.services {
	background: var(--white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(96, 165, 250, 0.2);
	border-color: var(--primary-blue);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--primary-dark);
	font-weight: 700;
}

.service-card p {
	color: var(--dark-gray);
	line-height: 1.7;
}

.service-card ul {
	list-style: none;
	margin-top: 1rem;
}

.service-card li {
	padding: 0.5rem 0;
	color: var(--dark-gray);
	position: relative;
	padding-left: 1.5rem;
}

.service-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-blue);
	font-weight: 700;
}

.gallery {
	background: var(--light-gray);
}

.gallery-topline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.gallery-intro {
	flex: 1;
}

.gallery .section-subtitle {
	margin-bottom: 0;
}


.gallery-preview-card {
	width: 100%;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.15);
	background: linear-gradient(130deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85), rgba(56, 78, 107, 0.8));
	padding: 1.6rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 0;
	color: var(--white);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	position: relative;
	overflow: hidden;
}

.gallery-preview-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at right, rgba(96, 165, 250, 0.25), transparent 55%);
	opacity: 0.7;
	pointer-events: none;
}

.gallery-expanded .gallery-preview-card::after {
	opacity: 0.3;
}

.gallery-preview-card:focus-within {
	outline: 3px solid rgba(96, 165, 250, 0.4);
	outline-offset: 3px;
}

.gallery-preview-trigger {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	text-align: left;
	color: inherit;
	font: inherit;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.gallery-preview-trigger:focus-visible {
	outline: 3px solid rgba(96, 165, 250, 0.6);
	outline-offset: 4px;
}

.gallery-preview-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.preview-label span {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.preview-label small {
	display: block;
	color: rgba(226, 232, 240, 0.8);
	font-size: 0.9rem;
	font-weight: 500;
}

.preview-cta {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(226, 232, 240, 0.7);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
}

.preview-cta i {
	transition: transform 0.3s ease;
}

.preview-slices {
	display: flex;
	align-items: stretch;
	gap: 0;
	height: clamp(110px, 18vw, 160px);
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: opacity 0.3s ease, max-height 0.4s ease, margin 0.3s ease;
}

.preview-slice {
	--slice-index: 0;
	position: relative;
	flex: 1;
	min-width: clamp(90px, 14vw, 150px);
	overflow: hidden;
	clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
	border-left: 5px solid rgba(255, 255, 255, 0.3);
	transform: translateX(calc(var(--slice-index) * -18px));
}

.preview-slice:first-child {
	border-left: none;
}

.preview-slice::after {
	content: "";
	position: absolute;
	top: -25%;
	right: -12px;
	width: 5px;
	height: 150%;
	background: linear-gradient(180deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.85));
	transform: rotate(-12deg);
	box-shadow: 0 0 20px rgba(96, 165, 250, 0.55);
	opacity: 0.85;
}

.preview-slice:last-child::after {
	display: none;
}

.preview-slice img {
	width: 120%;
	height: 120%;
	object-fit: cover;
	transition: transform 0.5s ease;
	filter: saturate(1.1);
}

.preview-slices::-webkit-scrollbar {
	height: 6px;
}

.preview-slices::-webkit-scrollbar-thumb {
	background: rgba(148, 163, 184, 0.4);
	border-radius: 10px;
}

.gallery-preview-card .gallery-grid-wrapper {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.65s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.25s ease;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: relative;
	z-index: 1;
}

.gallery-preview-card .gallery-grid-wrapper>.gallery-grid {
	min-height: 0;
}

.gallery-preview-card .gallery-grid {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.2rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.gallery-expanded .gallery-grid-wrapper {
	grid-template-rows: 1fr;
	opacity: 1;
	pointer-events: auto;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-expanded .preview-slices {
	opacity: 0;
	max-height: 0;
	margin: 0;
	height: 0;
	transition: opacity 0.3s ease, max-height 0.4s ease, margin 0.3s ease;
	pointer-events: none;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	aspect-ratio: 4/3;
	background: #e2e8f0;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	position: relative;
	z-index: 0;
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-item {
	border: 1px solid rgba(15, 23, 42, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.00), rgba(96, 165, 250, 0.12));
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
	z-index: 1;
}



.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.16);
	border-color: rgba(96, 165, 250, 0.45);
}

.gallery-item:hover::after {
	opacity: 1;
}

.contact {
	background: var(--white);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
}

.contact-info {
	background: linear-gradient(135deg, #0c121e 0%, #1e293b 100%);
	padding: 3rem;
	border-radius: 16px;
	color: var(--white);
}

.contact-panel-title {
	text-align: center;
	font-size: 1.8rem;
	margin: 0 0 1.5rem;
	font-weight: 700;
}

.contact-item {
	margin-bottom: 1.25rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted);
	margin-bottom: 0.5rem;
}

.contact-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--white);
	word-break: break-word;
}

.contact-value a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.contact-value a:hover {
	opacity: 0.8;
}

.copy-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(96, 165, 250, 0.2);
	border: 1px solid var(--primary-blue);
	color: var(--primary-blue);
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.copy-btn:hover {
	background: var(--primary-blue);
	color: var(--white);
}

.copy-btn.copied {
	background: #10b981;
	border-color: #10b981;
	color: var(--white);
}

.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(12, 18, 30, 0.88);
	backdrop-filter: blur(8px);
	z-index: 10000;
}

.lightbox.open {
	display: flex;
}

.lightbox-inner {
	position: relative;
	max-width: min(1100px, 96vw);
	max-height: 88vh;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
	background: rgba(12, 18, 30, 0.35);
	isolation: isolate;
}

.lightbox-img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	max-height: 88vh;
	object-fit: contain;
	background: rgba(12, 18, 30, 0.55);
	will-change: transform, opacity;
	transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
}

.lightbox-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: rgba(12, 18, 30, 0.85);
	color: var(--text);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
	opacity: 0.95;
	transform: translateY(-1px);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(12, 18, 30, 0.85);
	color: var(--text);
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
	left: 10px;
}

.lightbox-next {
	right: 10px;
}

.lightbox-nav:hover {
	opacity: 0.95;
	transform: translateY(-50%) scale(1.03);
}

.lightbox-nav i {
	font-size: 18px;
}

.no-scroll {
	overflow: hidden;
}

.lightbox-inner {
	touch-action: none;
}

.contact-form {
	background: var(--white);
	padding: 3rem;
	border-radius: 16px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 10px 40px rgba(15, 23, 42, 0.10);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--primary-dark);
}

.required-mark {
	color: #ef4444;
	margin-left: 4px;
	font-weight: 700;
}

.form-message {
	margin-bottom: 1.5rem;
}

.form-message-box {
	padding: 0.85rem 1rem;
	border-radius: 10px;
	border: 1px solid transparent;
	box-shadow: 0 6px 20px rgba(12, 18, 30, 0.08);
	font-weight: 600;
	line-height: 1.5;
}

.form-message-title {
	font-size: 0.95rem;
	margin-bottom: 0.35rem;
}

.form-message-body {
	font-weight: 500;
	color: #0f172a;
}

.form-message-list {
	margin: 0.35rem 0 0 1.1rem;
	padding: 0;
	color: #0f172a;
	font-weight: 500;
}

.msg-info {
	background: linear-gradient(120deg, #e0f2fe, #dbeafe);
	border-color: #38bdf8;
	color: #0b4f6c;
}

.msg-success {
	background: linear-gradient(120deg, #ecfdf3, #d1fae5);
	border-color: #10b981;
	color: #065f46;
}

.msg-error {
	background: linear-gradient(120deg, #fef2f2, #fee2e2);
	border-color: #ef4444;
	color: #991b1b;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.9rem;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	background: var(--white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.input-feedback {
	min-height: 1.1em;
	margin-top: 0.35rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.input-feedback.is-valid {
	color: var(--primary-blue);
}

.input-feedback.is-invalid {
	color: var(--secondary-blue);
}

.submit-btn {
	background: var(--primary-blue);
	color: var(--white);
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: var(--secondary-blue);
	transform: translateY(-2px);
}

.pro-bottom-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: linear-gradient(180deg, rgba(12, 18, 30, .92), var(--bg));
	border-top: 1px solid var(--border);
	backdrop-filter: blur(10px);
	padding-top: 2px;
}

.pro-bottom-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 16px 10px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 12px;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
}

.pro-legal {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .02em;
	text-align: center;
}

.pro-block {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pro-title {
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
}

.pro-value {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.35;
}

.pro-strong {
	font-size: 14px;
	font-weight: 700;
	color: #f1f5f9;
	line-height: 1.2;
}

.pro-row {
	display: flex;
	gap: 8px;
	align-items: baseline;
	flex-wrap: wrap;
	line-height: 1.35;
}

.pro-accent {
	color: var(--accent);
	font-weight: 600;
}

.pro-link {
	color: var(--accent);
	text-decoration: none;
	border-bottom: none;
}

.pro-link:hover {
	opacity: .9;
}

.pro-social {
	gap: 8px;
	margin-top: 2px;
}

.pro-social-link {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	border: 1px solid var(--border);
	background: rgba(12, 18, 30, 0.25);
	color: var(--text);
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pro-social-link:hover {
	opacity: 1;
	transform: translateY(-1px);
	border-color: rgba(96, 165, 250, 0.45);
	color: var(--accent);
}

.pro-social-link:focus-visible {
	outline: 3px solid rgba(96, 165, 250, 0.45);
	outline-offset: 2px;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
}

@media (max-width: 1024px) {
	body {
		padding-bottom: 110px;
	}

	.pro-bottom-inner {
		grid-template-columns: 1fr 1fr;
		row-gap: 18px;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		align-items: stretch;
	}

	.stat-item {
		border-right: none;
		border-bottom: 1px solid #e2e8f0;
		padding-bottom: 1.5rem;
	}

	.stat-item:last-child {
		border-bottom: none;
		padding-bottom: 1rem;
	}

	nav ul {
		gap: 1rem;
	}

	nav a {
		font-size: 0.9rem;
	}

	.gallery-topline {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	body {
		padding-bottom: 0;
	}

	.pro-bottom-bar {
		position: static;
		border-top: none;
		box-shadow: 0 -10px 45px rgba(12, 18, 30, 0.25);
	}

	.pro-bottom-inner {
		padding: 14px 14px 10px;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.pro-block {
		padding: 10px 12px;
		border-radius: 14px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.05);
	}

	.pro-legal {
		padding: 0 14px 14px;
	}

	.pro-social-link {
		width: 32px;
		height: 32px;
	}

	section {
		padding: 4rem 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.stats {
		padding: 2rem 1.25rem;
		margin-top: -30px;
	}

	.stats-container {
		padding: 1.25rem;
		gap: 1.25rem;
		border-radius: 14px;
	}

	.stat-item {
		padding: 0.5rem;
	}

	.stat-number {
		font-size: 2.35rem;
	}

	.stat-label {
		font-size: 0.9rem;
	}

	.credentials {
		gap: 0.75rem;
		margin-top: 1.25rem;
	}

	.credential-item {
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.credential-icon {
		width: 42px;
		height: 42px;
		border-radius: 10px;
		font-size: 1.2rem;
	}

	.credential-text {
		font-size: 0.95rem;
		line-height: 1.35;
	}

	.gallery-preview-card {
		padding: 1.25rem 1.5rem;
	}

	.pro-bottom-bar {
		position: static;
		border-top: none;
		box-shadow: 0 -10px 45px rgba(12, 18, 30, 0.25);
	}

	.pro-bottom-inner {
		padding: 18px 0 10px;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.pro-bottom-bar .pro-legal {
		padding: 0 0 20px;
	}

	.mobile-menu-btn {
		display: block;
	}


	nav {
		display: none;
	}

	header.nav-open nav {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: linear-gradient(135deg, #0c121e 0%, #1e293b 100%);
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
		padding: 12px 18px 16px;
	}

	header.nav-open nav ul {
		flex-direction: column;
		gap: 10px;
	}

	header.nav-open nav a {
		display: block;
		padding: 10px 12px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card {
		padding: 1.25rem;
	}

	.service-icon {
		width: 56px;
		height: 56px;
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}

	.service-card h3 {
		font-size: 1.2rem;
		margin-bottom: 0.65rem;
	}

	.service-card p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.service-card ul {
		margin-top: 0.75rem;
	}

	.service-card li {
		font-size: 0.95rem;
		padding: 0.35rem 0;
		padding-left: 1.35rem;
	}

	.gallery-preview-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.preview-slices {
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 0.75rem;
		padding-bottom: 0.5rem;
		scroll-snap-type: x mandatory;
	}

	.preview-slice {
		flex: 0 0 140px;
		min-width: 140px;
		border-left-width: 3px;
		transform: translateX(calc(var(--slice-index) * -10px));
		scroll-snap-align: start;
	}

	.preview-slice::after {
		width: 4px;
		opacity: 0.65;
	}
}

@media (max-width: 600px) {
	.contact-content {
		gap: 2rem;
	}

	.contact-info,
	.contact-form {
		padding: 1.5rem;
	}

	.contact-panel-title {
		font-size: 1.5rem;
		margin: 0 0 1.1rem;
	}

	.contact-item {
		padding: 1.05rem;
		margin-bottom: 1rem;
	}

	.copy-btn {
		top: 0.75rem;
		right: 0.75rem;
		padding: 0.42rem 0.75rem;
		font-size: 0.8rem;
	}

	.form-group {
		margin-bottom: 1rem;
	}

	.form-group label {
		margin-bottom: 0.35rem;
		font-size: 0.95rem;
	}

	.form-group input,
	.form-group textarea {
		padding: 0.75rem;
		font-size: 0.95rem;
	}

	.form-group textarea {
		min-height: 120px;
	}

	.submit-btn {
		padding: 0.9rem 1.5rem;
		font-size: 1rem;
	}

	body {
		padding-bottom: 32px;
	}

	.hero {
		padding: 110px 1.25rem 70px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 1rem;
	}

	section {
		padding: 2.5rem 1.25rem;
	}

	.section-title {
		font-size: 1.65rem;
	}

	.services-grid {
		gap: 0.9rem;
	}

	.service-card {
		padding: 0.95rem;
		border-radius: 10px;
	}

	.service-icon {
		width: 44px;
		height: 44px;
		font-size: 1.2rem;
		margin-bottom: 0.65rem;
		border-radius: 11px;
	}

	.service-card h3 {
		font-size: 1.02rem;
		margin-bottom: 0.45rem;
	}

	.service-card p {
		font-size: 0.88rem;
		line-height: 1.55;
	}

	.service-card ul {
		margin-top: 0.5rem;
	}

	.service-card li {
		font-size: 0.85rem;
		padding: 0.22rem 0;
		padding-left: 1.15rem;
		line-height: 1.4;
	}

	.service-card li::before {
		font-size: 0.85rem;
	}

	.stats {
		padding: 1.5rem 1.25rem;
	}

	.stats-container {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 1rem;
	}

	.stat-item {
		padding: 0.4rem 0.25rem;
	}

	.stat-number {
		font-size: 2.05rem;
	}

	.stat-label {
		font-size: 0.85rem;
		margin-top: 0.35rem;
	}

	.credentials {
		gap: 0.65rem;
		margin-top: 1rem;
	}

	.credential-item {
		padding: 0.65rem;
	}

	.credential-icon {
		width: 38px;
		height: 38px;
		font-size: 1.1rem;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contact-info,
	.contact-form {
		padding: 1.75rem;
	}

	.lightbox-nav {
		display: none;
	}

	.preview-slices {
		gap: 0.5rem;
		scroll-snap-type: x proximity;
	}

	.preview-slice {
		flex: 0 0 120px;
		min-width: 120px;
	}

	.preview-slice::after {
		display: block;
	}

	.preview-cta {
		font-size: 0.68rem;
	}
}

@media (max-width: 420px) {

	.services-grid {
		gap: 0.8rem;
	}

	.service-card {
		padding: 0.85rem;
	}

	.service-icon {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
		margin-bottom: 0.55rem;
	}

	.service-card h3 {
		font-size: 0.98rem;
	}

	.service-card p {
		font-size: 0.86rem;
	}

	.service-card li {
		font-size: 0.83rem;
		padding-left: 1.05rem;
	}

	.contact-info,
	.contact-form {
		padding: 1.25rem;
	}

	.form-group textarea {
		min-height: 105px;
	}
}

@media (min-width: 1600px) {
	body {
		font-size: 1.05rem;
	}

	.hero {
		padding: 180px 2.5rem 140px;
	}

	.hero h1 {
		font-size: 4rem;
	}

	.hero p {
		font-size: 1.35rem;
	}

	.gallery-preview-card {
		padding: 2.5rem 3rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	}

	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 2.5rem;
	}
}

.pro-bottom-inner {
	padding: 8px 16px 8px;
	gap: 10px;
}

.pro-legal {
	padding: 0 16px 6px;
}

.pro-row {
	gap: 4px;
}

@media (max-width: 768px) {
	.pro-bottom-bar {
		border-top: none;
		border-radius: 18px 18px 0 0;
	}

	.pro-bottom-inner {
		padding: 12px 14px 8px;
	}

	.pro-block {
		padding: 10px 12px;
		border-radius: 12px;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(255, 255, 255, 0.05);
	}
}

html {
	scroll-behavior: smooth;
}