/* ============================================
   GitHub Main Page Exact Style
   Dark Theme with Gradient Backgrounds
   ============================================ */

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #e6edf3;
	background-color: #0d1117;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Variables - GitHub Exact Colors */
:root {
	--gh-bg-dark: #0d1117;
	--gh-bg-darker: #010409;
	--gh-bg-gradient-start: #000240;
	--gh-text-white: #ffffff;
	--gh-text-muted: rgba(240, 246, 252, 0.7);
	--gh-text-subtle: rgba(240, 246, 252, 0.5);
	--gh-border-dark: rgba(240, 246, 252, 0.1);
	--gh-btn-primary-bg: #238636;
	--gh-btn-primary-hover: #2ea043;
	--gh-btn-secondary-bg: rgba(255, 255, 255, 0.08);
	--gh-btn-secondary-border: rgba(240, 246, 252, 0.3);
	--gh-accent-green: #3fb950;
	--gh-accent-purple: #a371f7;
	--gh-accent-blue: #58a6ff;
	--gh-accent-yellow: #d29922;
}

/* Main Container Override */
.main-hero,
.main-section {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
}

/* ===== Hero Section ===== */
.main-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 132px 40px 60px;
	background: linear-gradient(180deg, var(--gh-bg-gradient-start) 0%, var(--gh-bg-dark) 50%);
	overflow: hidden;
}

.main-hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.main-hero-gradient {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200%;
	height: 100%;
	background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(88, 166, 255, 0.15) 0%, transparent 60%);
}

.main-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(240, 246, 252, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(240, 246, 252, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.main-hero-content {
	position: relative;
	z-index: 1;
	max-width: 960px;
	text-align: center;
}

.main-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(63, 185, 80, 0.15);
	border: 1px solid rgba(63, 185, 80, 0.4);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gh-accent-green);
	margin-bottom: 32px;
}

.main-hero-badge svg {
	width: 16px;
	height: 16px;
}

.main-hero-title {
	font-size: clamp(40px, 8vw, 64px);
	font-weight: 700;
	color: var(--gh-text-white);
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin: 0 0 24px;
}

.main-hero-highlight {
	background: linear-gradient(135deg, var(--gh-accent-green) 0%, var(--gh-accent-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.main-hero-desc {
	font-size: 18px;
	font-weight: 450;
	color: var(--gh-text-muted);
	line-height: 1.5;
	margin: 0 auto 40px;
	max-width: 600px;
}

.main-hero-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.main-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.main-hero-btn svg {
	width: 18px;
	height: 18px;
}

.main-hero-btn--primary {
	color: var(--gh-text-white);
	background-color: var(--gh-btn-primary-bg);
	border: 1px solid rgba(240, 246, 252, 0.1);
}

.main-hero-btn--primary:hover {
	background-color: var(--gh-btn-primary-hover);
	text-decoration: none;
}

.main-hero-btn--secondary {
	color: var(--gh-text-white);
	background-color: var(--gh-btn-secondary-bg);
	border: 1px solid var(--gh-btn-secondary-border);
}

.main-hero-btn--secondary:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(240, 246, 252, 0.5);
	text-decoration: none;
}

/* Stats */
.main-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--gh-border-dark);
}

.main-hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.main-hero-stat-value {
	font-size: 32px;
	font-weight: 700;
	color: var(--gh-text-white);
}

.main-hero-stat-label {
	font-size: 14px;
	color: var(--gh-text-muted);
}

.main-hero-stat-divider {
	width: 1px;
	height: 48px;
	background-color: var(--gh-border-dark);
}

/* ===== Section Common ===== */
.main-section {
	padding: 80px 40px;
}

.main-section--process {
	background-color: var(--gh-bg-dark);
}

.main-section--services {
	background: linear-gradient(180deg, var(--gh-bg-dark) 0%, #0a0c10 100%);
}

.main-section--reviews {
	background-color: var(--gh-bg-dark);
	border-top: 1px solid var(--gh-border-dark);
}

.main-section--contact {
	background: linear-gradient(180deg, var(--gh-bg-dark) 0%, var(--gh-bg-gradient-start) 100%);
}

.main-section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

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

.main-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(88, 166, 255, 0.1);
	border: 1px solid rgba(88, 166, 255, 0.3);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gh-accent-blue);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.main-section-badge--primary {
	background: rgba(63, 185, 80, 0.1);
	border-color: rgba(63, 185, 80, 0.3);
	color: var(--gh-accent-green);
}

.main-section-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	color: var(--gh-text-white);
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.main-section-desc {
	font-size: 18px;
	color: var(--gh-text-muted);
	margin: 0 auto;
	max-width: 600px;
	line-height: 1.5;
}

/* ===== Process Section ===== */
.main-process-grid {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 24px;
}

.main-process-card {
	flex: 1;
	max-width: 280px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--gh-border-dark);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.main-process-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(240, 246, 252, 0.2);
	transform: translateY(-4px);
}

.main-process-step {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 12px;
	background: var(--gh-btn-primary-bg);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
	color: var(--gh-text-white);
}

.main-process-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(63, 185, 80, 0.2) 0%, rgba(88, 166, 255, 0.2) 100%);
	border-radius: 12px;
	margin-bottom: 20px;
	color: var(--gh-accent-green);
}

.main-process-icon--2 {
	background: linear-gradient(135deg, rgba(163, 113, 247, 0.2) 0%, rgba(88, 166, 255, 0.2) 100%);
	color: var(--gh-accent-purple);
}

.main-process-icon--3 {
	background: linear-gradient(135deg, rgba(88, 166, 255, 0.2) 0%, rgba(63, 185, 80, 0.2) 100%);
	color: var(--gh-accent-blue);
}

.main-process-icon--4 {
	background: linear-gradient(135deg, rgba(63, 185, 80, 0.3) 0%, rgba(63, 185, 80, 0.1) 100%);
	color: var(--gh-accent-green);
}

.main-process-icon svg {
	width: 28px;
	height: 28px;
}

.main-process-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--gh-text-white);
	margin: 0 0 8px;
}

.main-process-desc {
	font-size: 14px;
	color: var(--gh-text-muted);
	margin: 0;
	line-height: 1.5;
}

.main-process-arrow {
	display: none;
}

/* ===== Services Section ===== */
.main-services-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}

.main-services-info {
	position: sticky;
	top: 100px;
}

.main-services-info .main-section-badge {
	margin-bottom: 24px;
}

.main-services-title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	color: var(--gh-text-white);
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
}

.main-services-title strong {
	background: linear-gradient(135deg, var(--gh-accent-green) 0%, var(--gh-accent-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.main-services-desc {
	font-size: 16px;
	color: var(--gh-text-muted);
	line-height: 1.6;
	margin: 0 0 32px;
}

.main-services-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gh-text-white);
	background-color: var(--gh-btn-primary-bg);
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.main-services-cta:hover {
	background-color: var(--gh-btn-primary-hover);
	text-decoration: none;
}

.main-services-cta svg {
	width: 16px;
	height: 16px;
}

.main-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.main-service-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--gh-border-dark);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.main-service-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(240, 246, 252, 0.2);
	text-decoration: none;
}

.main-service-card--primary {
	background: rgba(63, 185, 80, 0.08);
	border-color: rgba(63, 185, 80, 0.3);
}

.main-service-card--primary:hover {
	background: rgba(63, 185, 80, 0.12);
	border-color: rgba(63, 185, 80, 0.5);
}

.main-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(63, 185, 80, 0.15);
	border-radius: 10px;
	color: var(--gh-accent-green);
	flex-shrink: 0;
}

.main-service-icon--purple {
	background: rgba(163, 113, 247, 0.15);
	color: var(--gh-accent-purple);
}

.main-service-icon--yellow {
	background: rgba(210, 153, 34, 0.15);
	color: var(--gh-accent-yellow);
}

.main-service-icon--blue {
	background: rgba(88, 166, 255, 0.15);
	color: var(--gh-accent-blue);
}

.main-service-icon svg {
	width: 24px;
	height: 24px;
}

.main-service-content {
	flex: 1;
	min-width: 0;
}

.main-service-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--gh-text-white);
	margin: 0 0 4px;
}

.main-service-desc {
	font-size: 14px;
	color: var(--gh-text-muted);
	margin: 0;
}

.main-service-arrow {
	color: var(--gh-text-subtle);
	flex-shrink: 0;
}

.main-service-arrow svg {
	width: 16px;
	height: 16px;
}

/* ===== Scroll Animations ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.1);
	}
}

@keyframes reviewSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes glowPulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.4);
	}

	50% {
		box-shadow: 0 0 20px 4px rgba(63, 185, 80, 0.2);
	}
}

/* Animate on Scroll */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger Items */
.stagger-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-item[data-delay="0"].is-visible {
	transition-delay: 0ms;
}

.stagger-item[data-delay="1"].is-visible {
	transition-delay: 100ms;
}

.stagger-item[data-delay="2"].is-visible {
	transition-delay: 200ms;
}

.stagger-item[data-delay="3"].is-visible {
	transition-delay: 300ms;
}

/* ===== Reviews Section ===== */
.main-reviews-live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(63, 185, 80, 0.1);
	border: 1px solid rgba(63, 185, 80, 0.3);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gh-accent-green);
	margin-bottom: 16px;
}

.main-reviews-pulse {
	width: 8px;
	height: 8px;
	background: var(--gh-accent-green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

.main-reviews-feed {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

/* Review Card */
.review-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--gh-border-dark);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	overflow: hidden;
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gh-accent-green) 0%, var(--gh-accent-blue) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.review-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(240, 246, 252, 0.2);
	transform: translateY(-4px);
}

.review-card:hover::before {
	opacity: 1;
}

.review-card.is-new {
	animation: reviewSlideIn 0.5s ease-out, glowPulse 2s ease-in-out;
	border-color: rgba(63, 185, 80, 0.5);
}

.review-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.review-card-badge {
	display: inline-flex;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.review-card-badge--nonface {
	background: rgba(63, 185, 80, 0.15);
	color: var(--gh-accent-green);
}

.review-card-badge--estate {
	background: rgba(163, 113, 247, 0.15);
	color: var(--gh-accent-purple);
}

.review-card-badge--empty {
	background: rgba(88, 166, 255, 0.15);
	color: var(--gh-accent-blue);
}

.review-card-badge--close {
	background: rgba(248, 81, 73, 0.15);
	color: #f85149;
}

.review-card-rating {
	display: flex;
	gap: 2px;
}

.review-card-rating svg {
	width: 14px;
	height: 14px;
	color: #d29922;
	fill: #d29922;
}

.review-card-rating svg.empty {
	fill: none;
	color: rgba(240, 246, 252, 0.3);
}

.review-card-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--gh-text-white);
	margin: 0 0 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.review-card-content {
	font-size: 14px;
	color: var(--gh-text-muted);
	line-height: 1.6;
	margin: 0 0 16px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.review-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid var(--gh-border-dark);
}

.review-card-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-card-avatar {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, var(--gh-accent-green) 0%, var(--gh-accent-blue) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	color: white;
}

.review-card-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--gh-text-white);
}

.review-card-date {
	font-size: 12px;
	color: var(--gh-text-subtle);
}

.main-reviews-more {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.main-reviews-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gh-text-white);
	background: var(--gh-btn-secondary-bg);
	border: 1px solid var(--gh-btn-secondary-border);
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.main-reviews-link:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(240, 246, 252, 0.5);
	text-decoration: none;
}

.main-reviews-link svg {
	width: 16px;
	height: 16px;
}

/* ===== Contact Section ===== */
.main-contact-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--gh-border-dark);
	border-radius: 16px;
}

.main-contact-content {
	flex: 1;
}

.main-contact-title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
	color: var(--gh-text-white);
	margin: 0 0 8px;
}

.main-contact-desc {
	font-size: 16px;
	color: var(--gh-text-muted);
	margin: 0;
}

.main-contact-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.main-contact-phone {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	font-size: 20px;
	font-weight: 700;
	color: var(--gh-text-white);
	background: var(--gh-btn-primary-bg);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.main-contact-phone:hover {
	background: var(--gh-btn-primary-hover);
	text-decoration: none;
}

.main-contact-phone svg {
	width: 24px;
	height: 24px;
}

.main-contact-info {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--gh-text-muted);
}

.main-contact-badge {
	padding: 4px 12px;
	background: rgba(63, 185, 80, 0.15);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--gh-accent-green);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.main-hero {
		min-height: auto;
		padding: 80px 24px 60px;
	}

	.main-hero-stats {
		gap: 32px;
	}

	.main-section {
		padding: 60px 24px;
	}

	.main-process-grid {
		flex-wrap: wrap;
	}

	.main-process-card {
		flex: 0 0 calc(50% - 12px);
		max-width: none;
	}

	.main-services-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.main-services-info {
		position: static;
		text-align: center;
	}

	.main-services-desc br {
		display: none;
	}

	.main-contact-card {
		flex-direction: column;
		text-align: center;
		padding: 40px 24px;
	}

	.main-contact-actions {
		align-items: center;
	}

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

@media (max-width: 768px) {
	.main-hero {
		padding: 102px 16px 40px;
	}

	.main-hero-title {
		font-size: 32px;
	}

	.main-hero-desc {
		font-size: 15px;
	}

	.main-hero-cta {
		flex-direction: column;
		width: 100%;
	}

	.main-hero-btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	.main-hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.main-hero-stat-divider {
		width: 50px;
		height: 1px;
	}

	.main-section {
		padding: 48px 16px;
	}

	.main-section-header {
		margin-bottom: 32px;
	}

	.main-process-grid {
		flex-direction: column;
	}

	.main-process-card {
		flex: none;
		width: 100%;
	}

	.main-services-grid {
		grid-template-columns: 1fr;
	}

	.main-reviews-feed {
		grid-template-columns: 1fr;
	}

	.review-card {
		padding: 20px;
	}

	.main-contact-phone {
		font-size: 18px;
		padding: 14px 24px;
	}
}

@media (max-width: 480px) {
	.main-hero-title {
		font-size: 28px;
	}

	.main-hero-badge {
		font-size: 12px;
		padding: 4px 12px;
	}

	.main-section-title {
		font-size: 24px;
	}

	.main-contact-card {
		padding: 32px 16px;
	}
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.main-hero-btn,
	.main-process-card,
	.main-service-card,
	.main-reviews-link,
	.main-contact-phone,
	.main-services-cta,
	.review-card,
	.animate-on-scroll,
	.stagger-item {
		transition: none;
	}

	.animate-on-scroll,
	.stagger-item {
		opacity: 1;
		transform: none;
	}

	.main-reviews-pulse {
		animation: none;
	}

	.review-card.is-new {
		animation: none;
	}

	.review-card:hover {
		transform: none;
	}

	.main-process-card:hover {
		transform: none;
	}
}

/* ============================================
   Dark Header Component
   ============================================ */
.gh-dark-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(13, 17, 23, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gh-border-dark);
}

.gh-dark-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 24px;
}

.gh-dark-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gh-text-white);
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.gh-dark-logo:hover {
	opacity: 0.9;
	text-decoration: none;
}

.gh-dark-logo svg {
	color: var(--gh-accent-green);
}

.gh-dark-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-dark-menu a {
	color: var(--gh-text-muted);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s ease;
	position: relative;
}

.gh-dark-menu a:hover {
	color: var(--gh-text-white);
}

.gh-dark-menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gh-accent-green);
	transition: width 0.2s ease;
}

.gh-dark-menu a:hover::after {
	width: 100%;
}

.gh-dark-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gh-dark-btn {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.gh-dark-btn--secondary {
	color: var(--gh-text-white);
	background: transparent;
	border: 1px solid var(--gh-btn-secondary-border);
}

.gh-dark-btn--secondary:hover {
	border-color: rgba(240, 246, 252, 0.5);
	background: var(--gh-btn-secondary-bg);
	text-decoration: none;
}

.gh-dark-btn--primary {
	color: var(--gh-text-white);
	background: var(--gh-btn-primary-bg);
	border: 1px solid rgba(240, 246, 252, 0.1);
}

.gh-dark-btn--primary:hover {
	background: var(--gh-btn-primary-hover);
	text-decoration: none;
}

.gh-dark-menu-toggle {
	display: none;
	padding: 8px;
	background: transparent;
	border: none;
	color: var(--gh-text-white);
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.gh-dark-menu-toggle:hover {
	background: var(--gh-btn-secondary-bg);
}

.gh-dark-menu-toggle svg {
	width: 24px;
	height: 24px;
}

/* ============================================
   Dark Footer Component
   ============================================ */
.gh-dark-footer {
	background: var(--gh-bg-darker);
	border-top: 1px solid var(--gh-border-dark);
	padding: 64px 24px;
}

.gh-dark-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	max-width: 1280px;
	margin: 0 auto;
}

.gh-dark-footer-brand {
	max-width: 280px;
}

.gh-dark-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gh-text-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	transition: opacity 0.2s ease;
}

.gh-dark-footer-logo:hover {
	opacity: 0.9;
	text-decoration: none;
}

.gh-dark-footer-logo svg {
	color: var(--gh-accent-green);
}

.gh-dark-footer-copyright {
	color: var(--gh-text-subtle);
	font-size: 12px;
	margin: 0;
	line-height: 1.6;
}

.gh-dark-footer-links {
	display: flex;
	gap: 80px;
}

.gh-dark-footer-col h4 {
	color: var(--gh-text-white);
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 16px;
	letter-spacing: 0.02em;
}

.gh-dark-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gh-dark-footer-col li {
	margin-bottom: 12px;
}

.gh-dark-footer-col li:last-child {
	margin-bottom: 0;
}

.gh-dark-footer-col a {
	color: var(--gh-text-muted);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.gh-dark-footer-col a:hover {
	color: var(--gh-text-white);
}

/* ===== Header & Footer Responsive ===== */
@media (max-width: 768px) {
	.gh-dark-nav {
		padding: 12px 16px;
	}

	.gh-dark-menu,
	.gh-dark-actions {
		display: none;
	}

	.gh-dark-menu-toggle {
		display: block;
	}

	.gh-dark-footer {
		padding: 48px 16px;
	}

	.gh-dark-footer-inner {
		flex-direction: column;
		gap: 40px;
	}

	.gh-dark-footer-brand {
		max-width: none;
		text-align: center;
	}

	.gh-dark-footer-links {
		flex-wrap: wrap;
		gap: 32px;
		justify-content: center;
	}

	.gh-dark-footer-col {
		text-align: center;
		min-width: 120px;
	}
}

/* ============================================
   Mobile Drawer Component
   ============================================ */
.gh-dark-drawer {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
}

.gh-dark-drawer.is-open {
	display: block;
}

.gh-dark-drawer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.gh-dark-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 320px;
	height: 100%;
	background: var(--gh-bg-dark);
	border-left: 1px solid var(--gh-border-dark);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	animation: slideIn 0.3s ease forwards;
}

.gh-dark-drawer.is-open .gh-dark-drawer-panel {
	transform: translateX(0);
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(0);
	}
}

.gh-dark-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid var(--gh-border-dark);
}

.gh-dark-drawer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gh-text-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
}

.gh-dark-drawer-logo svg {
	color: var(--gh-accent-green);
}

.gh-dark-drawer-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: transparent;
	border: none;
	color: var(--gh-text-muted);
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.gh-dark-drawer-close:hover {
	background: var(--gh-btn-secondary-bg);
	color: var(--gh-text-white);
}

.gh-dark-drawer-close svg {
	width: 20px;
	height: 20px;
}

.gh-dark-drawer-nav {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
}

.gh-dark-drawer-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	background: var(--gh-btn-primary-bg);
	color: var(--gh-text-white);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	margin-bottom: 24px;
	transition: background 0.2s ease;
}

.gh-dark-drawer-cta:hover {
	background: var(--gh-btn-primary-hover);
}

.gh-dark-drawer-cta svg {
	width: 20px;
	height: 20px;
}

.gh-dark-drawer-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.gh-dark-drawer-link {
	display: block;
	padding: 14px 16px;
	color: var(--gh-text-muted);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.gh-dark-drawer-link:hover {
	background: var(--gh-btn-secondary-bg);
	color: var(--gh-text-white);
}

.gh-dark-drawer-footer {
	padding: 20px;
	border-top: 1px solid var(--gh-border-dark);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gh-dark-drawer-btn {
	display: block;
	padding: 12px 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
	background: var(--gh-btn-secondary-bg);
	color: var(--gh-text-white);
	border: 1px solid var(--gh-btn-secondary-border);
}

.gh-dark-drawer-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

.gh-dark-drawer-btn--primary {
	background: var(--gh-btn-primary-bg);
	border-color: var(--gh-btn-primary-bg);
}

.gh-dark-drawer-btn--primary:hover {
	background: var(--gh-btn-primary-hover);
	border-color: var(--gh-btn-primary-hover);
}

.gh-dark-drawer-contact {
	margin-top: 4px;
	padding: 16px;
	border: 1px solid var(--gh-border-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
}

.gh-dark-drawer-contact-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--gh-text-subtle);
	margin-bottom: 8px;
}

.gh-dark-drawer-contact-label svg {
	width: 14px;
	height: 14px;
	color: var(--gh-text-subtle);
}

.gh-dark-drawer-phone {
	display: block;
	text-align: center;
	padding: 8px;
	color: var(--gh-text-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.2s ease;
}

.gh-dark-drawer-phone:hover {
	color: var(--gh-accent-green);
}




/* ===== Footer company info ===== */
.gh-dark-footer-company-info {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.6;
	color: #b5b5b5;

	word-break: keep-all;
	overflow-wrap: break-word;

	text-align: left;
}

.gh-dark-footer-company-info p {
	margin: 0 0 6px;
}

/* 로고 + 회사정보 왼쪽 정렬 고정 */
.gh-dark-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;

	/* 🔥 핵심: PC에서 폭 확보 */
	max-width: 520px;
}

/* ===== Footer menu text size ===== */
.gh-dark-footer-col h4 {
	font-size: 16px;
	font-weight: 600;
}

.gh-dark-footer-col a {
	font-size: 15px;
}

/* ===== PC에서 footer 전체 정렬 안정화 ===== */
@media (min-width: 1024px) {
	.gh-dark-footer-inner {
		align-items: flex-start;
	}

	.gh-dark-footer-company-info p {
		white-space: normal; /* PC에서는 자연 줄바꿈 */
	}
}

/* ===== Mobile footer text resize ===== */
@media (max-width: 768px) {
	.gh-dark-footer-company-info {
		font-size: 14px;
		line-height: 1.45;
	}

	.gh-dark-footer-company-info p {
		margin-bottom: 4px;
	}
}



