/* ==================== Glass CNC Machining Page ==================== */

:root {
	--gel-main: #28978a;
	--gel-main-dark: #1f766d;
	--gel-ink: #102629;
	--gel-text: #2c3d40;
	--gel-muted: #657477;
	--gel-soft: #f6f8f8;
	--gel-line: #e4ebea;
	--gel-white: #ffffff;
}

.glass-cnc-page {
	width: 100%;
	background: #ffffff;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.glass-cnc-page a {
	text-decoration: none;
}

.gcnc-container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

/* ==================== CNC Glass Machining Hero ==================== */

.gcnc-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
}

/* Hero Gradient Overlay */
.gcnc-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(8, 28, 32, 0.55) 0%,
			rgba(8, 28, 32, 0.38) 30%,
			rgba(8, 28, 32, 0.15) 55%,
			rgba(8, 28, 32, 0.03) 75%,
			rgba(8, 28, 32, 0) 100%
		);
}

.gcnc-hero .gcnc-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.gcnc-hero-content {
	max-width: 720px;
	color: #ffffff;
}

.gcnc-hero-content span {
	display: block;
	margin-bottom: 16px;
	color: #70d1c6;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-hero-content h1 {
	margin: 0 0 24px;
	color: #ffffff;
	font-size: 56px;
	line-height: 1.1;
	font-weight: 760;
	letter-spacing: -1.4px;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-hero-content p {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.78;
	font-weight: 400;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ==================== Responsive ==================== */

@media (max-width: 991px) {

	.gcnc-hero {
		min-height: 520px;
		background-position: center center;
	}

	.gcnc-hero-overlay {
		background:
			linear-gradient(
				90deg,
				rgba(8, 28, 32, 0.62) 0%,
				rgba(8, 28, 32, 0.42) 52%,
				rgba(8, 28, 32, 0.18) 100%
			);
	}

	.gcnc-hero-content h1 {
		font-size: 42px;
	}

	.gcnc-hero-content p {
		font-size: 16px;
	}

}

@media (max-width: 575px) {

	.gcnc-hero {
		min-height: 460px;
	}

	.gcnc-hero-content h1 {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.gcnc-hero-content p {
		font-size: 15px;
		line-height: 1.65;
	}

}

/* ==================== /CNC Glass Machining Hero ==================== */

/* ==================== About CNC Glass Machining ==================== */

.gcnc-about {
	padding: 86px 0 96px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-about-head {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.gcnc-about-head h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 20px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gcnc-about-head h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
	transform: translateX(-50%);
}

.gcnc-about-row {
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	gap: 58px;
	align-items: center;
}

/* About Slider */

.gcnc-about-slider {
	position: relative;
	overflow: hidden;
	min-height: 430px;
	background: #e8efee;
	box-shadow: 0 20px 54px rgba(16, 38, 41, 0.08);
}

.gcnc-about-track {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 430px;
}

.gcnc-about-slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.gcnc-about-slide.active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}

.gcnc-about-slide img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.gcnc-slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--gel-ink);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 10px 24px rgba(16, 38, 41, 0.14);
	transition: all 0.25s ease;
}

.gcnc-slider-arrow:hover {
	background: var(--gel-main);
	color: #ffffff;
}

.gcnc-slider-prev {
	left: 18px;
}

.gcnc-slider-next {
	right: 18px;
}

/* About Content */

.gcnc-about-content {
	max-width: 620px;
}

.gcnc-about-content p {
	margin: 0 0 22px;
	color: #2c3d40;
	font-size: 16px;
	line-height: 1.82;
	font-weight: 400;
}

.gcnc-about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	min-height: 50px;
	margin-top: 6px;
	padding: 0 36px;
	border-radius: 999px;
	background: var(--gel-main);
	border: 1px solid var(--gel-main);
	color: #ffffff;
	font-size: 15px;
	font-weight: 760;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
	transition: all 0.25s ease;
}

.gcnc-about-btn:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

/* About CNC Glass Machining Responsive */

@media (max-width: 991px) {
	.gcnc-about {
		padding: 72px 0 82px;
	}

	.gcnc-about-head h2 {
		font-size: 34px;
	}

	.gcnc-about-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gcnc-about-content {
		max-width: none;
	}

	.gcnc-about-slider,
	.gcnc-about-track,
	.gcnc-about-slide img {
		min-height: 380px;
	}
}

@media (max-width: 575px) {
	.gcnc-about {
		padding: 58px 0 68px;
	}

	.gcnc-about-head {
		margin-bottom: 34px;
	}

	.gcnc-about-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gcnc-about-slider,
	.gcnc-about-track,
	.gcnc-about-slide img {
		min-height: 280px;
	}

	.gcnc-slider-arrow {
		width: 36px;
		height: 36px;
		font-size: 26px;
	}

	.gcnc-slider-prev {
		left: 12px;
	}

	.gcnc-slider-next {
		right: 12px;
	}

	.gcnc-about-content p {
		font-size: 15px;
	}

	.gcnc-about-btn {
		width: 100%;
	}
}

/* ==================== /About CNC Glass Machining ==================== */

/* ==================== Advantages Of CNC Glass Machining ==================== */

.gcnc-advantages {
	padding: 88px 0 100px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-advantages-layout {
	display: grid;
	grid-template-columns: 0.34fr 0.66fr;
	gap: 70px;
	align-items: start;
}

.gcnc-advantages-head {
	position: sticky;
	top: 120px;
}

.gcnc-advantages-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gcnc-advantages-head h2 {
	position: relative;
	margin: 0 0 26px;
	padding-bottom: 24px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gcnc-advantages-head h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gcnc-advantages-head p {
	margin: 0;
	color: var(--gel-muted);
	font-size: 16px;
	line-height: 1.82;
}

.gcnc-advantages-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 52px;
	border-top: 1px solid var(--gel-line);
}

.gcnc-advantage-item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 20px;
	padding: 30px 0 32px;
	border-bottom: 1px solid var(--gel-line);
}

.gcnc-advantage-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(40, 151, 138, 0.1);
	color: var(--gel-main);
	font-size: 23px;
}

.gcnc-advantage-item h3 {
	margin: 0 0 12px;
	color: var(--gel-ink);
	font-size: 22px;
	line-height: 1.3;
	font-weight: 760;
	letter-spacing: -0.4px;
}

.gcnc-advantage-item p {
	margin: 0;
	color: #425154;
	font-size: 15.5px;
	line-height: 1.76;
}

/* Advantages Of CNC Glass Machining Responsive */

@media (max-width: 1199px) {
	.gcnc-advantages-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.gcnc-advantages-head {
		position: static;
		max-width: 760px;
	}
}

@media (max-width: 991px) {
	.gcnc-advantages {
		padding: 74px 0 84px;
	}

	.gcnc-advantages-head h2 {
		font-size: 34px;
	}

	.gcnc-advantages-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.gcnc-advantages {
		padding: 58px 0 68px;
	}

	.gcnc-advantages-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gcnc-advantages-head p {
		font-size: 15px;
	}

	.gcnc-advantage-item {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 16px;
		padding: 26px 0 28px;
	}

	.gcnc-advantage-icon {
		width: 44px;
		height: 44px;
		font-size: 20px;
	}

	.gcnc-advantage-item h3 {
		font-size: 20px;
	}

	.gcnc-advantage-item p {
		font-size: 14.5px;
	}
}

/* ==================== /Advantages Of CNC Glass Machining ==================== */

/* ==================== Glass CNC Processing Specifications ==================== */

.gcnc-specs {
	padding: 88px 0 100px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-specs-head {
	max-width: 820px;
	margin: 0 0 44px;
}

.gcnc-specs-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gcnc-specs-head h2 {
	position: relative;
	margin: 0 0 22px;
	padding-bottom: 22px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gcnc-specs-head h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gcnc-specs-head p {
	max-width: 680px;
	margin: 0;
	color: var(--gel-muted);
	font-size: 16px;
	line-height: 1.78;
}

.gcnc-specs-layout {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 48px;
	align-items: stretch;
}

.gcnc-specs-table-wrap {
	background: #ffffff;
	box-shadow: 0 20px 52px rgba(16, 38, 41, 0.07);
	overflow: hidden;
}

.gcnc-specs-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.gcnc-specs-table th {
	padding: 20px 24px;
	background: var(--gel-main);
	color: #ffffff;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-align: left;
	text-transform: uppercase;
}

.gcnc-specs-table td {
	padding: 20px 24px;
	border-bottom: 1px solid var(--gel-line);
	color: #425154;
	font-size: 15.5px;
	line-height: 1.6;
	vertical-align: middle;
}

.gcnc-specs-table tbody tr:last-child td {
	border-bottom: none;
}

.gcnc-specs-table tbody tr:nth-child(even) {
	background: #f9fbfb;
}

.gcnc-specs-table td:first-child {
	color: var(--gel-ink);
	font-weight: 700;
}

.gcnc-specs-services {
	padding: 42px 40px 44px;
	background: #ffffff;
	box-shadow: 0 20px 52px rgba(16, 38, 41, 0.07);
}

.gcnc-specs-services h3 {
	margin: 0 0 28px;
	color: var(--gel-ink);
	font-size: 28px;
	line-height: 1.25;
	font-weight: 760;
	letter-spacing: -0.6px;
}

.gcnc-specs-service-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 30px;
}

.gcnc-specs-service-list span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 0 16px 0 32px;
	background: #f6f8f8;
	color: #263638;
	font-size: 14px;
	font-weight: 700;
}

.gcnc-specs-service-list span::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gel-main);
	transform: translateY(-50%);
}

.gcnc-specs-services p {
	margin: 0;
	color: #425154;
	font-size: 15.5px;
	line-height: 1.78;
}

/* Glass CNC Processing Specifications Responsive */

@media (max-width: 991px) {
	.gcnc-specs {
		padding: 74px 0 84px;
	}

	.gcnc-specs-head h2 {
		font-size: 34px;
	}

	.gcnc-specs-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 575px) {
	.gcnc-specs {
		padding: 58px 0 68px;
	}

	.gcnc-specs-head {
		margin-bottom: 34px;
	}

	.gcnc-specs-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gcnc-specs-head p {
		font-size: 15px;
	}

	.gcnc-specs-table th,
	.gcnc-specs-table td {
		padding: 16px 15px;
		font-size: 14px;
	}

	.gcnc-specs-services {
		padding: 34px 26px 36px;
	}

	.gcnc-specs-services h3 {
		font-size: 23px;
	}

	.gcnc-specs-service-list {
		grid-template-columns: 1fr;
	}
}

/* ==================== /Glass CNC Processing Specifications ==================== */

/* ==================== CNC Drilling And Laser Cutting Services ==================== */

.gcnc-process-services {
	padding: 88px 0 100px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-process-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	padding: 0 0 72px;
	margin-bottom: 72px;
	border-bottom: 1px solid var(--gel-line);
}

.gcnc-process-row:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.gcnc-process-row-reverse .gcnc-process-image {
	order: 2;
}

.gcnc-process-row-reverse .gcnc-process-content {
	order: 1;
}

.gcnc-process-image {
	position: relative;
	overflow: hidden;
	background: #e8efee;
}

.gcnc-process-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(40, 151, 138, 0.12), rgba(255, 255, 255, 0) 48%),
		linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 28, 32, 0.1));
	pointer-events: none;
}

.gcnc-process-image img {
	width: 100%;
	height: 420px;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s ease;
}

.gcnc-process-image:hover img {
	transform: scale(1.035);
}

.gcnc-process-content {
	max-width: 620px;
}

.gcnc-process-content span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gcnc-process-content h2 {
	position: relative;
	margin: 0 0 24px;
	padding-bottom: 20px;
	color: var(--gel-ink);
	font-size: 36px;
	line-height: 1.18;
	font-weight: 760;
	letter-spacing: -0.9px;
}

.gcnc-process-content h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gcnc-process-content p {
	margin: 0 0 18px;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
}

.gcnc-process-content ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.gcnc-process-content li {
	position: relative;
	margin-bottom: 13px;
	padding-left: 22px;
	color: #425154;
	font-size: 15.5px;
	line-height: 1.72;
}

.gcnc-process-content li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gel-main);
}

.gcnc-process-content li:last-child {
	margin-bottom: 0;
}

/* CNC Drilling And Laser Cutting Services Responsive */

@media (max-width: 991px) {
	.gcnc-process-services {
		padding: 74px 0 84px;
	}

	.gcnc-process-row {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 56px;
		margin-bottom: 56px;
	}

	.gcnc-process-row-reverse .gcnc-process-image,
	.gcnc-process-row-reverse .gcnc-process-content {
		order: initial;
	}

	.gcnc-process-image img {
		height: 380px;
	}

	.gcnc-process-content {
		max-width: none;
	}

	.gcnc-process-content h2 {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.gcnc-process-services {
		padding: 58px 0 68px;
	}

	.gcnc-process-row {
		gap: 30px;
		padding-bottom: 46px;
		margin-bottom: 46px;
	}

	.gcnc-process-image img {
		height: 280px;
	}

	.gcnc-process-content h2 {
		font-size: 27px;
		letter-spacing: -0.6px;
	}

	.gcnc-process-content p,
	.gcnc-process-content li {
		font-size: 15px;
	}
}

/* ==================== /CNC Drilling And Laser Cutting Services ==================== */

/* ==================== Glass CNC Machining Applications ==================== */

.gcnc-usecases {
	padding: 98px 0 108px;
	background: #f6f8f8;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-usecases-head {
	max-width: 820px;
	margin: 0 auto 58px;
	text-align: center;
}

.gcnc-usecases-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gcnc-usecases-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.2px;
}

.gcnc-usecases-head p {
	max-width: 660px;
	margin: 18px auto 0;
	color: var(--gel-muted);
	font-size: 16px;
	line-height: 1.78;
}

.gcnc-usecases-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.gcnc-usecase-card {
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.08);
	transition: all 0.28s ease;
}

.gcnc-usecase-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 28px 68px rgba(16, 38, 41, 0.13);
}

.gcnc-usecase-image {
	position: relative;
	overflow: hidden;
	background: #e8efee;
}

.gcnc-usecase-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(40, 151, 138, 0.12), rgba(255, 255, 255, 0) 46%),
		linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
	pointer-events: none;
}

.gcnc-usecase-image img {
	width: 100%;
	height: 245px;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.55s ease;
}

.gcnc-usecase-card:hover .gcnc-usecase-image img {
	transform: scale(1.045);
}

.gcnc-usecase-content {
	padding: 28px 26px 32px;
}

.gcnc-usecase-content h3 {
	margin: 0 0 12px;
	color: var(--gel-ink);
	font-size: 20px;
	line-height: 1.28;
	font-weight: 760;
}

.gcnc-usecase-content p {
	margin: 0;
	color: var(--gel-muted);
	font-size: 15px;
	line-height: 1.72;
}

/* Glass CNC Machining Applications Responsive */

@media (max-width: 1199px) {
	.gcnc-usecases-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.gcnc-usecases {
		padding: 78px 0 88px;
	}

	.gcnc-usecases-head {
		margin-bottom: 44px;
	}

	.gcnc-usecases-head h2 {
		font-size: 34px;
	}

	.gcnc-usecase-image img {
		height: 260px;
	}
}

@media (max-width: 575px) {
	.gcnc-usecases {
		padding: 62px 0 72px;
	}

	.gcnc-usecases-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gcnc-usecases-head p {
		font-size: 15px;
	}

	.gcnc-usecases-grid {
		grid-template-columns: 1fr;
	}

	.gcnc-usecase-image img {
		height: 240px;
	}

	.gcnc-usecase-content h3 {
		font-size: 19px;
	}
}

/* ==================== /Glass CNC Machining Applications ==================== */

/* ==================== Customer Testimonials ==================== */

.gcnc-testimonials {
	padding: 88px 0 100px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gcnc-testimonials-layout {
	display: grid;
	grid-template-columns: 0.34fr 0.66fr;
	gap: 70px;
	align-items: start;
}

.gcnc-testimonials-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gcnc-testimonials-head h2 {
	position: relative;
	margin: 0 0 26px;
	padding-bottom: 24px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gcnc-testimonials-head h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gcnc-testimonials-head p {
	margin: 0;
	color: var(--gel-muted);
	font-size: 16px;
	line-height: 1.82;
}

.gcnc-testimonials-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.gcnc-testimonial-item {
	position: relative;
	padding: 34px 34px 38px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.07);
	transition: all 0.28s ease;
}

.gcnc-testimonial-item::before {
	content: "“";
	position: absolute;
	right: 28px;
	top: 18px;
	color: rgba(40, 151, 138, 0.14);
	font-size: 82px;
	line-height: 1;
	font-weight: 800;
	font-family: Georgia, serif;
}

.gcnc-testimonial-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 68px rgba(16, 38, 41, 0.12);
}

.gcnc-testimonial-top {
	position: relative;
	z-index: 2;
	padding-bottom: 20px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--gel-line);
}

.gcnc-testimonial-top h3 {
	margin: 0 0 8px;
	color: var(--gel-ink);
	font-size: 21px;
	line-height: 1.3;
	font-weight: 760;
	letter-spacing: -0.4px;
}

.gcnc-testimonial-top span {
	color: var(--gel-main);
	font-size: 14px;
	font-weight: 700;
}

.gcnc-testimonial-item p {
	position: relative;
	z-index: 2;
	margin: 0;
	color: #425154;
	font-size: 15.5px;
	line-height: 1.78;
}

/* Customer Testimonials Responsive */

@media (max-width: 991px) {
	.gcnc-testimonials {
		padding: 74px 0 84px;
	}

	.gcnc-testimonials-layout {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.gcnc-testimonials-head {
		max-width: 760px;
	}

	.gcnc-testimonials-head h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gcnc-testimonials {
		padding: 58px 0 68px;
	}

	.gcnc-testimonials-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gcnc-testimonials-head p {
		font-size: 15px;
	}

	.gcnc-testimonials-list {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gcnc-testimonial-item {
		padding: 30px 26px 34px;
	}

	.gcnc-testimonial-top h3 {
		font-size: 20px;
	}

	.gcnc-testimonial-item p {
		font-size: 14.5px;
	}
}

/* ==================== /Customer Testimonials ==================== */

/* ==================== Final CTA ==================== */

.final-cta {
	padding: 96px 0 104px;
	background: #ffffff;
}

.final-cta-inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 64px;
	align-items: stretch;
	max-width: 1220px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #dfe7e6;
	box-shadow: 0 18px 48px rgba(16, 38, 41, 0.06);
}

.final-cta-content {
	padding: 58px 0 58px 58px;
}

.final-cta-content span {
	display: block;
	margin-bottom: 14px;
	color: #28978a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-content h2 {
	max-width: 620px;
	margin: 0;
	color: #102629;
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1px;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-content p {
	max-width: 720px;
	margin: 22px 0 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-specs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	max-width: 720px;
	margin-top: 36px;
	border: 1px solid #dfe7e6;
	background: #f8faf9;
}

.final-cta-spec {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 66px;
	padding: 0 20px;
	border-right: 1px solid #dfe7e6;
}

.final-cta-spec:last-child {
	border-right: none;
}

.final-cta-spec strong {
	color: #28978a;
	font-size: 13px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 1px;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-spec span {
	margin: 0;
	color: #102629;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 46px 38px;
	background: #f6f8f8;
	border-left: 1px solid #dfe7e6;
}

.final-cta-panel-head {
	padding-bottom: 22px;
	border-bottom: 1px solid #dfe7e6;
}

.final-cta-panel-head span {
	display: block;
	margin-bottom: 10px;
	color: #28978a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-panel-head h3 {
	margin: 0;
	color: #102629;
	font-size: 26px;
	line-height: 1.25;
	font-weight: 760;
	letter-spacing: -0.5px;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-panel p {
	margin: 22px 0 0;
	color: #425154;
	font-size: 15px;
	line-height: 1.72;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.final-cta-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 30px;
}

.final-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 30px;
	border-radius: 0;
	font-size: 15px;
	font-weight: 760;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	text-decoration: none;
	transition: all 0.22s ease;
}

.final-cta-btn-primary {
	background: #28978a;
	color: #ffffff;
	border: 1px solid #28978a;
}

.final-cta-btn-primary:hover {
	background: #1f766d;
	border-color: #1f766d;
	color: #ffffff;
	text-decoration: none;
}

.final-cta-btn-light {
	background: #ffffff;
	color: #102629;
	border: 1px solid #cfdad8;
}

.final-cta-btn-light:hover {
	background: #eef4f3;
	border-color: #bdcfcc;
	color: #102629;
	text-decoration: none;
}

/* Final CTA Responsive */

@media (max-width: 991px) {
	.final-cta {
		padding: 76px 0 86px;
	}

	.final-cta-inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.final-cta-content {
		padding: 50px 42px;
	}

	.final-cta-content h2 {
		font-size: 32px;
	}

	.final-cta-panel {
		border-left: none;
		border-top: 1px solid #dfe7e6;
		padding: 40px 42px;
	}

	.final-cta-specs {
		grid-template-columns: 1fr;
	}

	.final-cta-spec {
		border-right: none;
		border-bottom: 1px solid #dfe7e6;
	}

	.final-cta-spec:last-child {
		border-bottom: none;
	}
}

@media (max-width: 575px) {
	.final-cta {
		padding: 60px 0 68px;
	}

	.final-cta-content {
		padding: 40px 26px;
	}

	.final-cta-content h2 {
		font-size: 28px;
		letter-spacing: -0.6px;
	}

	.final-cta-content p {
		font-size: 15px;
		line-height: 1.72;
	}

	.final-cta-panel {
		padding: 34px 26px;
	}

	.final-cta-panel-head h3 {
		font-size: 23px;
	}

	.final-cta-btn {
		width: 100%;
	}
}

/* ==================== /Final CTA ==================== */