@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap");

:root {
	--bg: #f4f5f7;
	--bg-alt: #edf1f5;
	--bg-radial: #ffffff;
	--bg-linear-start: #f9fbff;
	--bg-linear-end: #e9eff5;
	--panel: #ffffff;
	--panel-strong: #f2f5f8;
	--accent: #0f8f6f;
	--accent-strong: #0a6dd4;
	--accent-soft: rgba(15, 143, 111, 0.12);
	--text: #0b1117;
	--text-muted: #455566;
	--border: rgba(8, 18, 28, 0.12);
	--shadow: 0 24px 60px rgba(10, 20, 30, 0.12);
	--radius-xl: 28px;
	--radius-lg: 22px;
	--radius-md: 14px;
}

html[data-theme="dark"] {
	--bg: #0b0f14;
	--bg-alt: #101822;
	--bg-radial: #0e1926;
	--bg-linear-start: #0b0f14;
	--bg-linear-end: #0f1a25;
	--panel: #111a26;
	--panel-strong: #162233;
	--accent: #25d0aa;
	--accent-strong: #4cc3ff;
	--accent-soft: rgba(37, 208, 170, 0.18);
	--text: #e8eef5;
	--text-muted: #9db0c4;
	--border: rgba(255, 255, 255, 0.08);
	--shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Sora", sans-serif;
	background:
		radial-gradient(circle at top, var(--bg-radial) 0%, var(--bg) 60%),
		linear-gradient(
			140deg,
			var(--bg-linear-start) 0%,
			var(--bg-linear-end) 100%
		);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(transparent 94%, rgba(0, 0, 0, 0.04) 96%),
		linear-gradient(90deg, transparent 94%, rgba(0, 0, 0, 0.04) 96%);
	background-size: 48px 48px;
	opacity: 0.35;
	pointer-events: none;
	z-index: -1;
}

html[data-theme="dark"] body::before {
	opacity: 0.22;
	background-image:
		linear-gradient(transparent 94%, rgba(255, 255, 255, 0.05) 96%),
		linear-gradient(90deg, transparent 94%, rgba(255, 255, 255, 0.05) 96%);
}

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--accent-strong);
	outline-offset: 3px;
}

.site-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	padding: 2.8rem 6vw 1.8rem;
	max-width: 1400px;
	margin: 0 auto;
}

.brand {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.brand-logo {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	object-fit: contain;
	background: var(--panel-strong);
	border: 1px solid var(--border);
	padding: 0.45rem;
	box-shadow: 0 16px 40px rgba(10, 20, 30, 0.16);
}

.brand-text h1 {
	margin: 0;
	font-size: 1.55rem;
	letter-spacing: -0.02em;
}

.brand-text p {
	margin: 0.25rem 0 0;
	color: var(--text-muted);
	font-size: 0.95rem;
}

.site-nav {
	display: flex;
	gap: 0.5rem;
	font-weight: 600;
	flex-wrap: wrap;
	align-items: center;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.35rem 0.5rem;
	box-shadow: 0 10px 24px rgba(10, 20, 30, 0.08);
}

.site-nav a {
	position: relative;
	padding: 0.45rem 0.85rem;
	color: var(--text-muted);
	border-radius: 999px;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.site-nav a.active,
.site-nav a:hover {
	color: var(--text);
	background: var(--panel-strong);
}

.site-nav a.active::after,
.site-nav a:hover::after {
	content: none;
}

.lang-toggle {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.lang-toggle:hover {
	background: var(--panel-strong);
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(10, 20, 30, 0.12);
}

.theme-toggle {
	background: var(--panel-strong);
	border: 1px solid var(--border);
	color: var(--text);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	position: relative;
	text-indent: -9999px;
	overflow: hidden;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.theme-toggle::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--text);
	box-shadow: -6px -6px 0 0 var(--panel);
}

html[data-theme="dark"] .theme-toggle::before {
	background: var(--accent-strong);
	box-shadow:
		0 -10px 0 -7px var(--accent-strong),
		0 10px 0 -7px var(--accent-strong),
		10px 0 0 -7px var(--accent-strong),
		-10px 0 0 -7px var(--accent-strong);
}

.theme-toggle:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(10, 20, 30, 0.12);
}

main {
	padding: 0 6vw 4.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	margin-top: 2.5rem;
}

.hero-content {
	max-width: 760px;
}

.hero-content h2 {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	margin: 0.6rem 0 1rem;
	letter-spacing: -0.02em;
}

.eyebrow {
	font-family: "JetBrains Mono", monospace;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.7rem;
	color: var(--accent);
}

.lead {
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 760px;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.7rem;
}

.button {
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #ffffff;
	padding: 0.8rem 1.8rem;
	border-radius: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	box-shadow: 0 14px 30px rgba(15, 143, 111, 0.25);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(15, 143, 111, 0.3);
}

.button.ghost {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	box-shadow: none;
}

.hero-card {
	background: linear-gradient(150deg, var(--panel), var(--panel-strong));
	padding: 2.2rem;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.hero-card .card-title {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-family: "JetBrains Mono", monospace;
}

.hero-card ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.8rem;
}

.hero-card li {
	padding: 0.7rem 0.9rem;
	border-radius: 14px;
	background: var(--panel);
	border: 1px solid var(--border);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.8rem;
	margin-top: 3.5rem;
}

.panel {
	background: var(--panel);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: 0 16px 32px rgba(10, 20, 30, 0.08);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.panel:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 45px rgba(10, 20, 30, 0.14);
}

.panel h3 {
	margin-top: 0;
	margin-bottom: 0.6rem;
	font-size: 1.2rem;
}

.panel p {
	color: var(--text-muted);
	line-height: 1.7;
}

.page-hero {
	margin-top: 1.8rem;
	padding: 1.8rem 0 2.2rem;
	border-bottom: 1px solid var(--border);
}

.page-hero h2 {
	font-size: clamp(2rem, 3vw, 2.8rem);
	margin-bottom: 0.4rem;
	letter-spacing: -0.02em;
}

.page-hero p {
	color: var(--text-muted);
	max-width: 720px;
}

.blog-list {
	margin-top: 2.4rem;
}

.wip-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2.8rem;
	box-shadow: var(--shadow);
	text-align: center;
}

.wip-card h3 {
	margin: 1.2rem 0 0.6rem;
	font-size: 1.4rem;
}

.wip-card p {
	color: var(--text-muted);
	margin: 0;
}

.wip-loader {
	display: inline-flex;
	gap: 0.6rem;
	align-items: center;
	justify-content: center;
}

.wip-loader span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	animation: wip-bounce 1.2s infinite ease-in-out;
}

.wip-loader span:nth-child(2) {
	animation-delay: 0.15s;
}

.wip-loader span:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes wip-bounce {
	0%,
	80%,
	100% {
		transform: translateY(0);
		opacity: 0.6;
	}
	40% {
		transform: translateY(-8px);
		opacity: 1;
	}
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.blog-card-link {
	text-decoration: none;
	color: inherit;
}

.blog-card {
	background: var(--panel);
	padding: 2.4rem;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.blog-card-link:hover .blog-card {
	transform: translateY(-6px);
	box-shadow: 0 26px 60px rgba(10, 20, 30, 0.18);
}

.read-more {
	display: inline-flex;
	margin-top: 1.4rem;
	font-weight: 600;
	color: var(--accent-strong);
}

.post-hero {
	margin-top: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.post-hero h2 {
	font-size: clamp(2.2rem, 3.5vw, 3rem);
	margin-bottom: 0.6rem;
}

.post-meta {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.post-lead {
	font-size: 1.1rem;
	color: var(--text-muted);
}

.post-content {
	margin-top: 2rem;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: 0 18px 40px rgba(10, 20, 30, 0.08);
}

.post-content h3 {
	margin-top: 0;
}

.back-link {
	display: inline-flex;
	margin-top: 1.5rem;
	color: var(--accent-strong);
	font-weight: 600;
}

.blog-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at top right,
		var(--accent-soft),
		transparent 55%
	);
	opacity: 0.8;
	pointer-events: none;
}

.blog-meta {
	font-family: "JetBrains Mono", monospace;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--accent-strong);
	letter-spacing: 0.18em;
}

.blog-placeholder {
	color: var(--text-muted);
	margin: 1rem 0 1.5rem;
	font-size: 1.05rem;
}

.tag-row {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.tag-row span {
	background: var(--panel-strong);
	color: var(--text-muted);
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	font-size: 0.8rem;
	border: 1px solid var(--border);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.8rem;
	margin-top: 2.8rem;
}

.contact-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2.2rem;
	margin-top: 2.8rem;
}

input,
textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: var(--panel);
	color: var(--text);
	font-family: inherit;
	transition:
		border 0.2s ease,
		box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent-strong);
	box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-details h3 {
	margin-top: 0;
	font-size: 1.3rem;
}

.contact-details p {
	color: var(--text-muted);
}

.contact-box {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.contact-box div {
	background: var(--panel);
	padding: 1.2rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	box-shadow: 0 12px 24px rgba(10, 20, 30, 0.08);
}

.contact-box span {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.7rem;
	color: var(--text-muted);
}

.contact-box strong {
	display: block;
	margin-top: 0.4rem;
	font-weight: 700;
}

.contact-box .contact-value {
	color: var(--text);
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1.05rem;
	font-weight: 700;
}

.contact-phone {
	user-select: text;
	cursor: text;
}

.workflow-section {
	padding: 3.5rem 6vw;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}

.cta-section {
	padding: 2rem 6vw;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

.workflow-section h3 {
	font-size: 2.2rem;
	margin-bottom: 3rem;
	margin-top: 0;
	color: var(--text);
	font-weight: 600;
}

.workflow-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.workflow-header h3 {
	margin-bottom: 0;
}

.workflow-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.8rem;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: white;
	text-decoration: none;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 0.95rem;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	box-shadow: 0 12px 24px rgba(15, 143, 111, 0.25);
	white-space: nowrap;
}

.workflow-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(15, 143, 111, 0.35);
}

.workflow-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	position: relative;
}

.workflow-step {
	position: relative;
	z-index: 1;
	background: var(--panel);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.workflow-step:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(10, 20, 30, 0.15);
	border-color: var(--accent-soft);
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: white;
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 12px 24px rgba(15, 143, 111, 0.25);
}

.workflow-step h4 {
	font-size: 1.2rem;
	margin: 1rem 0 0.8rem;
	color: var(--text);
	font-weight: 600;
}

.workflow-step p {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.site-footer {
	padding: 2.5rem 6vw 3.5rem;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
	margin-top: 3.5rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero,
.grid,
.page-hero,
.blog-card,
.content-grid,
.contact-panel {
	animation: rise-in 0.6s ease both;
}

@media (max-width: 900px) {
	.site-header {
		padding: 2.2rem 6vw 1.5rem;
	}

	.site-nav {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.site-header {
		padding: 2rem 6vw 1.2rem;
	}

	.brand {
		width: 100%;
		justify-content: flex-start;
	}

	.site-nav {
		gap: 0.5rem;
		width: 100%;
		justify-content: center;
		border-radius: 18px;
		padding: 0.7rem;
	}

	.site-nav a {
		flex: 1 1 auto;
		text-align: center;
	}

	.theme-toggle,
	.lang-toggle {
		flex: 0 0 auto;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.panel,
	.blog-card,
	.post-content {
		padding: 1.6rem;
	}

	.workflow-steps::before {
		display: none;
	}

	.workflow-section h3 {
		font-size: 1.8rem;
	}

	.workflow-header {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.workflow-cta {
		width: 100%;
	}

	.workflow-step {
		padding: 1.5rem;
	}
}

@media (max-width: 560px) {
	.site-header {
		gap: 1rem;
	}

	.brand-text h1 {
		font-size: 1.35rem;
	}

	.site-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}

	.site-nav a {
		width: 100%;
	}

	.theme-toggle,
	.lang-toggle {
		width: 100%;
	}

	.hero-content h2 {
		font-size: clamp(1.9rem, 8vw, 2.4rem);
	}

	.lead {
		font-size: 1rem;
	}

	.blog-grid,
	.grid,
	.content-grid,
	.contact-panel {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Hero Section Enhancements */
.credibility-line {
	color: var(--text);
	font-size: 0.95rem;
	margin: 0.8rem 0 1rem;
	font-weight: 500;
}

.credibility-line strong {
	color: var(--accent-strong);
}

.button.primary {
	font-size: 1.05rem;
	padding: 1rem 2.2rem;
	box-shadow: 0 16px 36px rgba(15, 143, 111, 0.3);
}

.button.primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(15, 143, 111, 0.4);
}

/* Portfolio Section */
.portfolio-section {
	margin-top: 4.5rem;
	scroll-margin-top: 100px;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	margin-bottom: 0.8rem;
	letter-spacing: -0.02em;
}

.section-header p {
	color: var(--text-muted);
	font-size: 1.05rem;
	max-width: 680px;
	margin: 0 auto;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.portfolio-item {
	background: var(--panel);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(10, 20, 30, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 54px rgba(10, 20, 30, 0.16);
}

.portfolio-image {
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: var(--panel-strong);
	position: relative;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
	transform: scale(1.05);
}

.portfolio-content {
	padding: 1.8rem;
}

.portfolio-content h3 {
	margin: 0 0 0.8rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.portfolio-content p {
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 1.2rem;
	font-size: 0.95rem;
}

.portfolio-tech {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.tech-tag {
	background: var(--accent-soft);
	color: var(--accent-strong);
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	border: 1px solid rgba(15, 143, 111, 0.2);
}

/* Service Specs */
.service-specs {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0;
	display: grid;
	gap: 0.7rem;
}

.service-specs li {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.service-specs strong {
	color: var(--text);
	font-weight: 600;
}

/* Trust Signals Section */
.trust-section {
	margin-top: 4.5rem;
	padding: 3rem 0;
	background: linear-gradient(150deg, var(--panel), var(--panel-strong));
	border-radius: var(--radius-xl);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2.5rem;
	padding: 0 2.5rem;
}

.trust-item {
	text-align: center;
}

.trust-number {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.trust-label {
	color: var(--text-muted);
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.8rem;
}

.trust-text {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
	color: var(--text);
}

.trust-industries {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Footer Enhancements */
.site-footer {
	padding: 3.5rem 6vw 2.5rem;
	color: var(--text-muted);
	border-top: 1px solid var(--border);
	margin-top: 4.5rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(180deg, transparent, var(--bg-alt));
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.footer-section h3 {
	margin: 0 0 0.8rem;
	font-size: 1.4rem;
	color: var(--text);
}

.footer-section h4 {
	margin: 0 0 0.8rem;
	font-size: 1rem;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
}

.footer-tagline {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.footer-section p {
	margin: 0;
	line-height: 1.8;
}

.footer-section a {
	color: var(--accent-strong);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: var(--accent);
	text-decoration: underline;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-nav a {
	color: var(--text-muted);
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.footer-nav a:hover {
	color: var(--text);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
}

/* Contact Section */
.contact-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin: 2.8rem auto 0;
	max-width: 760px;
}

.response-time {
	margin-top: 1.5rem;
	padding: 1rem 1.2rem;
	background: var(--accent-soft);
	border-left: 4px solid var(--accent-strong);
	border-radius: var(--radius-md);
	font-size: 0.9rem;
}

.response-time strong {
	color: var(--text);
}

/* Responsive Adjustments */
@media (max-width: 720px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		padding: 0 1.5rem;
	}

	.trust-number {
		font-size: 2.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 560px) {
	.credibility-line {
		font-size: 0.85rem;
	}

	.portfolio-item {
		border-radius: var(--radius-lg);
	}

	.portfolio-content {
		padding: 1.4rem;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.trust-section {
		padding: 2rem 0;
	}
}
