/* =========================================
   UNTYPED — PR Agency
   Main Stylesheet
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
	--black: #0a0a0a;
	--dark: #111111;
	--dark-mid: #1a1a1a;
	--mid: #2a2a2a;
	--border: rgba(255, 255, 255, 0.08);
	--white: #ffffff;
	--off-white: #f5f4f0;
	--muted: rgba(255, 255, 255, 0.5);
	--accent: #c8a86b; /* warm gold */
	--accent-dark: #a8893a;
	--accent-light: #e0c98a;

	--font-en: "Barlow", sans-serif;
	--font-ko: "Noto Sans KR", sans-serif;

	--nav-h: 72px;
	--max-w: 1200px;
	--radius: 12px;
	--radius-sm: 6px;

	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-ko);
	background: var(--black);
	color: var(--white);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

em {
	font-style: italic;
}

/* ---------- Utility ---------- */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 120px 0;
}

.mt-lg {
	margin-top: 40px;
}

.section-header {
	text-align: center;
	margin-bottom: 72px;
}

.section-label {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--accent);
	border: 1px solid var(--accent);
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.section-title {
	font-family: var(--font-en);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.section-title strong {
	color: var(--accent);
}

.section-desc {
	font-size: 17px;
	color: var(--muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.8;
	font-family: var(--font-ko);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 0.25s var(--ease);
	border: 2px solid transparent;
	white-space: nowrap;
}

.btn-primary {
	background: var(--accent);
	color: var(--black);
	border-color: var(--accent);
}
.btn-primary:hover {
	background: var(--accent-light);
	border-color: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 168, 107, 0.3);
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--accent);
	border-color: var(--accent);
}
.btn-outline:hover {
	background: var(--accent);
	color: var(--black);
	transform: translateY(-2px);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-h);
	transition:
		background 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
}

.logo-text {
	font-family: var(--font-en);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.12em;
	color: var(--white);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-link {
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	transition: color 0.2s;
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
	color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 168, 107, 0.12) 0%, transparent 60%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 24px;
	max-width: 900px;
}

.hero-eyebrow {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 24px;
}

.hero-headline {
	font-family: var(--font-en);
	font-size: clamp(42px, 7vw, 88px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 28px;
	color: var(--white);
}

.hero-headline em {
	font-style: italic;
	color: var(--accent);
}

.hero-sub {
	font-size: clamp(16px, 2vw, 19px);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.75;
	margin-bottom: 48px;
	font-family: var(--font-ko);
}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.scroll-down {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(255, 255, 255, 0.4);
	font-size: 16px;
	animation: bounce 2s ease-in-out infinite;
	transition: color 0.2s;
}
.scroll-down:hover {
	color: var(--accent);
}

@keyframes bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
	overflow: hidden;
	background: var(--accent);
	padding: 14px 0;
	white-space: nowrap;
}

.ticker-track {
	display: inline-flex;
	gap: 40px;
	animation: ticker 30s linear infinite;
}

.ticker-track span {
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--black);
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* =========================================
   ABOUT
   ========================================= */
.about {
	background: var(--dark);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	align-items: start;
}

.about-left .section-label {
	display: block;
	text-align: left;
	margin-bottom: 24px;
}

.about-left .section-title {
	text-align: left;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.1;
}

.about-left .section-title strong {
	display: block;
	font-size: 1.1em;
}

.about-lead {
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
	font-family: var(--font-ko);
	font-weight: 400;
}

.about-lead strong {
	color: var(--accent);
	font-weight: 700;
}

.about-body {
	font-size: 16px;
	line-height: 1.9;
	color: var(--muted);
	margin-bottom: 20px;
	font-family: var(--font-ko);
}

.about-body em {
	color: rgba(255, 255, 255, 0.75);
	font-style: italic;
}

.about-stats {
	display: flex;
	gap: 48px;
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.stat-number {
	font-family: var(--font-en);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
	color: var(--accent);
	display: inline;
}

.stat-unit {
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	vertical-align: super;
}

.stat-label {
	font-size: 13px;
	color: var(--muted);
	margin-top: 8px;
	font-family: var(--font-ko);
	letter-spacing: 0.02em;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
	background: var(--black);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.service-card {
	background: var(--dark);
	padding: 52px 48px;
	position: relative;
	transition: background 0.3s var(--ease);
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}

.service-card:hover {
	background: var(--dark-mid);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-num {
	font-family: var(--font-en);
	font-size: 60px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.04);
	position: absolute;
	top: 32px;
	right: 40px;
	letter-spacing: -0.04em;
	pointer-events: none;
	transition: color 0.3s;
}

.service-card:hover .service-num {
	color: rgba(200, 168, 107, 0.08);
}

.service-icon {
	width: 52px;
	height: 52px;
	background: rgba(200, 168, 107, 0.1);
	border: 1px solid rgba(200, 168, 107, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--accent);
	margin-bottom: 28px;
	transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
	background: var(--accent);
	color: var(--black);
	border-color: var(--accent);
	transform: scale(1.05);
}

.service-name {
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.service-desc {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 24px;
	font-family: var(--font-ko);
}

.service-tag {
	display: inline-block;
	font-family: var(--font-ko);
	font-size: 11px;
	color: var(--accent);
	border: 1px solid rgba(200, 168, 107, 0.3);
	padding: 4px 12px;
	border-radius: 100px;
	letter-spacing: 0.04em;
}

/* =========================================
   INDUSTRIES
   ========================================= */
.industries {
	background: var(--dark);
	padding: 80px 0;
}

.industries .section-header {
	margin-bottom: 52px;
}

.industry-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.industry-item {
	background: var(--dark);
	padding: 40px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition:
		background 0.3s var(--ease),
		color 0.3s;
	cursor: default;
}

.industry-item:hover {
	background: var(--dark-mid);
}

.industry-item i {
	font-size: 28px;
	color: var(--accent);
	transition: transform 0.3s var(--ease);
}

.industry-item:hover i {
	transform: translateY(-4px);
}

.industry-item span {
	font-size: 13px;
	font-family: var(--font-ko);
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
	line-height: 1.4;
	transition: color 0.3s;
}

.industry-item:hover span {
	color: var(--white);
}

/* =========================================
   PORTFOLIO / CLIENTS
   ========================================= */
.portfolio {
	background: var(--black);
}

/* ── Client Card Grid ── */
.clients-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.client-card {
	background: var(--dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 32px 36px;
	gap: 24px;
	transition: background 0.3s var(--ease);
	position: relative;
	overflow: hidden;
	cursor: default;
}

.client-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.4s var(--ease);
}

.client-card:hover {
	background: var(--dark-mid);
}

.client-card:hover::after {
	transform: scaleX(1);
}

/* Logo wrapper — white bg pill so any logo is readable */
.client-logo-wrap {
	width: 100%;
	max-width: 220px;
	height: 80px;
	background: #ffffff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.client-card:hover .client-logo-wrap {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.client-logo-wrap img {
	max-width: 100%;
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Special adjustments for specific logos */
.watcha-logo img {
	max-height: 32px;
	filter: none;
}

.artblood-logo img {
	max-height: 40px;
}

.faindersai-logo img {
	max-height: 36px;
}

.dearu-logo img {
	max-height: 36px;
	filter: none;
}

/* 누리하우스 로고 — 흰 배경 이미지이므로 카드 배경 그대로 유지 */
.nurihaus-logo {
	background: #ffffff !important;
}

.nurihaus-logo img {
	max-height: 28px;
	filter: none;
}

/* Client info */
.client-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.client-name {
	font-family: var(--font-ko);
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.01em;
}

.client-cat {
	font-family: var(--font-ko);
	font-size: 12px;
	color: var(--accent);
	letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.clients-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 420px) {
	.clients-grid {
		grid-template-columns: 1fr;
	}
	.client-logo-wrap {
		max-width: 180px;
		height: 70px;
	}
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
	background: var(--dark);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 72px;
	align-items: start;
}

/* Form */
.contact-form-wrap {
	background: var(--dark-mid);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 48px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 8px;
	font-family: var(--font-en);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	font-size: 15px;
	font-family: var(--font-ko);
	color: var(--white);
	outline: none;
	transition:
		border-color 0.25s var(--ease),
		background 0.25s;
	-webkit-appearance: none;
}

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

.form-group select option {
	background: var(--dark);
	color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent);
	background: rgba(200, 168, 107, 0.05);
}

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

.form-check {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-check input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	background: transparent;
}

.form-check input[type="checkbox"]:hover {
	border-color: var(--accent);
	box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
}

.form-check input[type="checkbox"]:checked {
	background: linear-gradient(135deg, var(--accent) 0%, #764ba2 100%);
	border-color: var(--accent);
	box-shadow: 0 0 12px rgba(102, 126, 234, 0.5);
}

.form-check label {
	font-size: 13px;
	text-transform: none;
	letter-spacing: 0;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: color 0.3s ease;
}

.form-check input[type="checkbox"]:checked + label {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}

.form-check label a {
	color: var(--accent);
	text-decoration: underline;
}

.form-feedback {
	margin-top: 16px;
	font-size: 14px;
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	display: none;
}

.form-feedback.success {
	display: block;
	background: rgba(72, 199, 142, 0.12);
	border: 1px solid rgba(72, 199, 142, 0.3);
	color: #48c78e;
}

.form-feedback.error {
	display: block;
	background: rgba(240, 80, 60, 0.12);
	border: 1px solid rgba(240, 80, 60, 0.3);
	color: #f0503c;
}

/* Contact Info */
.contact-info {
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.info-block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.info-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(200, 168, 107, 0.1);
	border: 1px solid rgba(200, 168, 107, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 16px;
	margin-top: 2px;
}

.info-block h4 {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}

.info-block p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	font-family: var(--font-ko);
}

.info-block a:hover {
	color: var(--white);
	text-decoration: underline;
}

.contact-cta {
	padding: 32px;
	background: rgba(200, 168, 107, 0.06);
	border: 1px solid rgba(200, 168, 107, 0.2);
	border-radius: var(--radius);
	text-align: center;
}

.contact-cta p {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 20px;
	font-family: var(--font-ko);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
	background: var(--dark-mid);
	border-top: 1px solid var(--border);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr;
	gap: 60px;
	padding-top: 64px;
	padding-bottom: 64px;
	align-items: start;
}

.footer-brand .logo-text {
	font-size: 20px;
	display: block;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.8;
	font-family: var(--font-ko);
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-nav a {
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted);
	transition: color 0.2s;
}

.footer-nav a:hover {
	color: var(--white);
}

.footer-contact p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.8;
	font-family: var(--font-ko);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 20px 0;
}

.footer-bottom p {
	font-family: var(--font-en);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.05em;
	text-align: center;
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up,
.reveal-left,
.reveal-right {
	opacity: 0;
	transition:
		opacity 0.8s var(--ease-out),
		transform 0.8s var(--ease-out);
}

.reveal-up {
	transform: translateY(40px);
}
.reveal-left {
	transform: translateX(-40px);
}
.reveal-right {
	transform: translateX(40px);
}

.revealed {
	opacity: 1;
	transform: none;
}

.delay-1 {
	transition-delay: 0.1s !important;
}
.delay-2 {
	transition-delay: 0.2s !important;
}
.delay-3 {
	transition-delay: 0.3s !important;
}
.delay-4 {
	transition-delay: 0.4s !important;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}
	.about-left .section-title {
		font-size: 40px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 52px;
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	.industry-list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.section {
		padding: 80px 0;
	}

	.nav-links {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		background: rgba(10, 10, 10, 0.97);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: center;
		padding: 40px 24px;
		gap: 28px;
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.4s var(--ease),
			opacity 0.4s var(--ease);
	}

	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.nav-link {
		font-size: 16px;
		color: var(--white);
	}

	.hamburger {
		display: flex;
	}

	.hero-headline {
		font-size: clamp(36px, 10vw, 56px);
	}
	.hero-sub {
		font-size: 16px;
	}
	.hero-actions {
		gap: 12px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}
	.service-card {
		padding: 40px 32px;
	}

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

	.about-stats {
		gap: 32px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

@media (max-width: 480px) {
	.industry-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-headline {
		font-size: 36px;
	}

	.contact-form-wrap {
		padding: 32px 24px;
	}

	.about-stats {
		flex-direction: column;
		gap: 28px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 13px;
	}

	.section-title {
		font-size: 28px;
	}
}
