/* ==================== Gorilla Glass 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;
}

.gorilla-glass-page {
	width: 100%;
	background: #ffffff;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gorilla-glass-page a {
	text-decoration: none;
}

.ag-container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

/* ==================== Gorilla Glass Hero ==================== */

.ag-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 */
.ag-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%
		);
}

.ag-hero .ag-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.ag-hero-content {
	max-width: 720px;
	color: #ffffff;
}

.ag-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;
}

.ag-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;
}

.ag-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) {

	.ag-hero {
		min-height: 520px;
		background-position: center center;
	}

	.ag-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%
			);
	}

	.ag-hero-content h1 {
		font-size: 42px;
	}

	.ag-hero-content p {
		font-size: 16px;
	}

}

@media (max-width: 575px) {

	.ag-hero {
		min-height: 460px;
	}

	.ag-hero-content h1 {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.ag-hero-content p {
		font-size: 15px;
		line-height: 1.65;
	}

}

/* ==================== /Gorilla Glass Hero ==================== */

/* ==================== Custom Gorilla Glass Manufacturer ==================== */

.gg-manufacturer {
	position: relative;
	padding: 92px 0 104px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	overflow: hidden;
}

.gg-manufacturer-row {
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	gap: 72px;
	align-items: center;
}

/* Manufacturer Slider */

.gg-manufacturer-slider {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	background: #e8efee;
	box-shadow: 0 24px 64px rgba(16, 38, 41, 0.1);
}

.gg-manufacturer-track {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 520px;
}

.gg-manufacturer-slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.gg-manufacturer-slide.active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
}

.gg-manufacturer-slide::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(8, 28, 32, 0.12));
	pointer-events: none;
}

.gg-manufacturer-slide img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.gg-slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	color: #102629;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 12px 28px rgba(16, 38, 41, 0.16);
	transition: all 0.25s ease;
}

.gg-slider-arrow:hover {
	background: #28978a;
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(40, 151, 138, 0.28);
}

.gg-slider-prev {
	left: 22px;
}

.gg-slider-next {
	right: 22px;
}

/* Manufacturer Content */

.gg-manufacturer-content {
	max-width: 650px;
}

.gg-manufacturer-content h2 {
	position: relative;
	margin: 0 0 32px;
	padding-bottom: 22px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-manufacturer-content h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gg-manufacturer-content p {
	margin: 0 0 22px;
	color: #2c3d40;
	font-size: 16px;
	line-height: 1.84;
	font-weight: 400;
}

.gg-manufacturer-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 4px;
	padding: 0 38px;
	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.24);
	transition: all 0.25s ease;
}

.gg-manufacturer-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.32);
}

/* Custom Gorilla Glass Manufacturer Responsive */

@media (max-width: 991px) {
	.gg-manufacturer {
		padding: 76px 0 86px;
	}

	.gg-manufacturer-row {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.gg-manufacturer-slider,
	.gg-manufacturer-track,
	.gg-manufacturer-slide img {
		min-height: 420px;
	}

	.gg-manufacturer-content {
		max-width: none;
	}

	.gg-manufacturer-content h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gg-manufacturer {
		padding: 60px 0 70px;
	}

	.gg-manufacturer-slider,
	.gg-manufacturer-track,
	.gg-manufacturer-slide img {
		min-height: 300px;
	}

	.gg-slider-arrow {
		width: 38px;
		height: 38px;
		font-size: 28px;
	}

	.gg-slider-prev {
		left: 14px;
	}

	.gg-slider-next {

		right: 14px;
	}

	.gg-manufacturer-content h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-manufacturer-content p {
		font-size: 15px;
	}

	.gg-manufacturer-btn {
		width: 100%;
	}
}

/* ==================== /Custom Gorilla Glass Manufacturer ==================== */

/* ==================== Custom Cut Gorilla Glass One-stop Solution ==================== */

.gg-cut-solution {
	position: relative;
	padding: 92px 0 104px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	overflow: hidden;
}

.gg-cut-head {
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	gap: 64px;
	align-items: start;
	margin-bottom: 46px;
	padding-bottom: 34px;
	border-bottom: 1px solid var(--gel-line);
}

.gg-cut-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-cut-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-cut-intro {
	max-width: 760px;
}

.gg-cut-intro p {
	margin: 0 0 18px;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
}

.gg-cut-intro p:last-child {
	margin-bottom: 0;
}

.gg-cut-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.gg-cut-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: #f6f8f8;
	border: 1px solid var(--gel-line);
	overflow: hidden;
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.065);
	transition: all 0.28s ease;
}

.gg-cut-card:hover {
	background: #ffffff;
	transform: translateY(-7px);
	box-shadow: 0 28px 68px rgba(16, 38, 41, 0.12);
}

.gg-cut-image {
	position: relative;
	overflow: hidden;
	height: 260px;
	background: #e8efee;
}

/* Remove Image Overlay */
.gg-cut-image::after {
	content: none;
	display: none;
	background: none;
}

.gg-cut-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center center;
	background: #ffffff;
	transition: transform 0.6s ease;
}

.gg-cut-card:hover .gg-cut-image img {
	transform: scale(1.045);
}

.gg-cut-card-content {
	position: relative;
	flex: 1;
	padding: 26px 24px 30px;
}

.gg-cut-card-content::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	width: 46px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
}

.gg-cut-card-content span {
	display: block;
	margin-bottom: 10px;
	color: var(--gel-main);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.gg-cut-card-content h3 {
	margin: 0 0 12px;
	color: var(--gel-ink);
	font-size: 20px;
	line-height: 1.28;
	font-weight: 760;
	letter-spacing: -0.35px;
}

.gg-cut-card-content p {
	margin: 0;
	color: #425154;
	font-size: 15px;
	line-height: 1.72;
}

/* Custom Cut Gorilla Glass One-stop Solution Responsive */

@media (max-width: 1199px) {
	.gg-cut-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gg-cut-image {
		height: 280px;
	}
}

@media (max-width: 991px) {
	.gg-cut-solution {
		padding: 76px 0 86px;
	}

	.gg-cut-head {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 38px;
		padding-bottom: 28px;
	}

	.gg-cut-head h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gg-cut-solution {
		padding: 60px 0 70px;
	}

	.gg-cut-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-cut-intro p {
		font-size: 15px;
	}

	.gg-cut-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gg-cut-image {
		height: 250px;
	}

	.gg-cut-card-content {
		padding: 24px 22px 28px;
	}

	.gg-cut-card-content h3 {
		font-size: 19px;
	}
}

/* ==================== /Custom Cut Gorilla Glass One-stop Solution ==================== */

/* ==================== Custom Corning Gorilla Glass Service ==================== */

.gg-service {
	padding: 92px 0 104px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-service-head {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.gg-service-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-service-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.gg-service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid var(--gel-line);
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.07);
	transition: all 0.28s ease;
}

.gg-service-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 28px 68px rgba(16, 38, 41, 0.12);
}

.gg-service-image {
	position: relative;
	width: 100%;
	height: 230px;
	overflow: hidden;
	background: #e8efee;
}

.gg-service-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;
}

.gg-service-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.55s ease;
}

.gg-service-card:hover .gg-service-image img {
	transform: scale(1.045);
}

.gg-service-content {
	flex: 1;
	padding: 26px 24px 30px;
	text-align: center;
}

.gg-service-content h3 {
	margin: 0 0 14px;
	color: var(--gel-ink);
	font-size: 21px;
	line-height: 1.3;
	font-weight: 760;
	letter-spacing: -0.4px;
}

.gg-service-content p {
	margin: 0;
	color: #425154;
	font-size: 15px;
	line-height: 1.72;
}

.gg-service-action {
	margin-top: 42px;
	text-align: center;
}

.gg-service-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	min-height: 50px;
	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.24);
	transition: all 0.25s ease;
}

.gg-service-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.32);
}

/* Custom Corning Gorilla Glass Service Responsive */

@media (max-width: 1199px) {
	.gg-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gg-service-image {
		height: 260px;
	}
}

@media (max-width: 991px) {
	.gg-service {
		padding: 76px 0 86px;
	}

	.gg-service-head h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gg-service {
		padding: 60px 0 70px;
	}

	.gg-service-head {
		margin-bottom: 34px;
	}

	.gg-service-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-service-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gg-service-image {
		height: 230px;
	}

	.gg-service-content {
		padding: 24px 22px 28px;
	}

	.gg-service-content h3 {
		font-size: 19px;
	}

	.gg-service-content p {
		font-size: 14.5px;
	}

	.gg-service-btn {
		width: 100%;
	}
}

/* ==================== /Custom Corning Gorilla Glass Service ==================== */

/* ==================== Gorilla Glass Technical Table ==================== */

.gg-data {
	padding: 88px 0 100px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-data-head {
	max-width: 780px;
	margin: 0 auto 46px;
	text-align: center;
}

.gg-data-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-data-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-data-block {
	margin-bottom: 44px;
}

.gg-data-block:last-child {
	margin-bottom: 0;
}

.gg-data-block h3 {
	margin: 0 0 18px;
	color: var(--gel-ink);
	font-size: 28px;
	line-height: 1.25;
	font-weight: 760;
	letter-spacing: -0.6px;
	text-align: center;
}

.gg-table-wrap {
	width: 100%;
	overflow-x: auto;
	background: #ffffff;
	border: 1px solid var(--gel-line);
	box-shadow: 0 18px 46px rgba(16, 38, 41, 0.06);
}

.gg-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	min-width: 760px;
}

.gg-table th,
.gg-table td {
	padding: 18px 20px;
	border-right: 1px solid var(--gel-line);
	border-bottom: 1px solid var(--gel-line);
	color: #425154;
	font-size: 15px;
	line-height: 1.65;
	text-align: left;
	vertical-align: middle;
}

.gg-table tr:last-child th,
.gg-table tr:last-child td {
	border-bottom: none;
}

.gg-table th:last-child,
.gg-table td:last-child {
	border-right: none;
}

.gg-table th {
	background: #102629;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.gg-table tbody th {
	width: 220px;
	background: #f6f8f8;
	color: var(--gel-ink);
}

.gg-table tbody tr:nth-child(even) td,
.gg-table tbody tr:nth-child(even) th {
	background: #fbfcfc;
}

.gg-table-wide {
	min-width: 1080px;
}

.gg-table-wide thead th {
	background: var(--gel-main);
	color: #ffffff;
}

.gg-table-wide tbody td:first-child {
	color: var(--gel-ink);
	font-weight: 700;
}

/* Gorilla Glass Technical Table Responsive */

@media (max-width: 991px) {
	.gg-data {
		padding: 74px 0 84px;
	}

	.gg-data-head h2 {
		font-size: 34px;
	}

	.gg-data-block h3 {
		font-size: 24px;
	}
}

@media (max-width: 575px) {
	.gg-data {
		padding: 58px 0 68px;
	}

	.gg-data-head {
		margin-bottom: 34px;
	}

	.gg-data-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-data-block {
		margin-bottom: 34px;
	}

	.gg-data-block h3 {
		font-size: 22px;
	}

	.gg-table th,
	.gg-table td {
		padding: 15px 16px;
		font-size: 14px;
	}
}

/* ==================== /Gorilla Glass Technical Table ==================== */

/* ==================== Custom Corning Gorilla Glass Products ==================== */

.gg-products {
	padding: 88px 0 100px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-products-head {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.gg-products-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-products-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-products-head p {
	max-width: 700px;
	margin: 18px auto 0;
	color: #657477;
	font-size: 16px;
	line-height: 1.78;
}

.gg-products-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.gg-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid var(--gel-line);
	box-shadow: 0 14px 34px rgba(16, 38, 41, 0.06);
	overflow: hidden;
	transition: all 0.28s ease;
}

.gg-product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(16, 38, 41, 0.11);
}

.gg-product-image {
	position: relative;
	width: 100%;
	height: 155px;
	overflow: hidden;
	background: #e8efee;
}

/* Remove Image Color Overlay */
.gg-product-image::after {
	content: none;
	display: none;
	background: none;
}

.gg-product-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.55s ease;
}

.gg-product-card:hover .gg-product-image img {
	transform: scale(1.045);
}

.gg-product-content {
	flex: 1;
	padding: 20px 16px 22px;
	text-align: center;
}

.gg-product-content h3 {
	margin: 0 0 10px;
	color: var(--gel-ink);
	font-size: 17px;
	line-height: 1.28;
	font-weight: 760;
	letter-spacing: -0.25px;
}

.gg-product-content p {
	margin: 0;
	color: #425154;
	font-size: 14px;
	line-height: 1.62;
}

.gg-products-action {
	margin-top: 42px;
	text-align: center;
}

.gg-products-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 50px;
	padding: 0 38px;
	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.24);
	transition: all 0.25s ease;
}

.gg-products-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.32);
}

/* Custom Corning Gorilla Glass Products Responsive */

@media (max-width: 1199px) {
	.gg-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gg-product-image {
		height: 190px;
	}
}

@media (max-width: 991px) {
	.gg-products {
		padding: 74px 0 84px;
	}

	.gg-products-head h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gg-products {
		padding: 58px 0 68px;
	}

	.gg-products-head {
		margin-bottom: 34px;
	}

	.gg-products-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-products-head p {
		font-size: 15px;
	}

	.gg-products-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gg-product-image {
		height: 230px;
	}

	.gg-product-content {
		padding: 24px 22px 26px;
	}

	.gg-product-content h3 {
		font-size: 20px;
	}

	.gg-products-btn {
		width: 100%;
	}
}

/* ==================== /Custom Corning Gorilla Glass Products ==================== */

/* ==================== Features Of Custom Gorilla Glass ==================== */

.gg-features {
	padding: 88px 0 100px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-features-head {
	max-width: 820px;
	margin: 0 auto 44px;
	text-align: center;
}

.gg-features-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-features-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-features-head p {
	max-width: 680px;
	margin: 18px auto 0;
	color: #657477;
	font-size: 16px;
	line-height: 1.78;
}

.gg-features-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.gg-feature-card {
	position: relative;
	height: 100%;
	padding: 28px 24px 30px;
	background: #f6f8f8;
	border: 1px solid var(--gel-line);
	text-align: center;
	transition: all 0.28s ease;
}

.gg-feature-card::before {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	top: 0;
	height: 3px;
	background: var(--gel-main);
	border-radius: 999px;
	transform: scaleX(0.42);
	transform-origin: center;
	transition: transform 0.28s ease;
}

.gg-feature-card:hover {
	background: #ffffff;
	transform: translateY(-7px);
	box-shadow: 0 26px 62px rgba(16, 38, 41, 0.11);
}

.gg-feature-card:hover::before {
	transform: scaleX(1);
}

.gg-feature-image {
	width: 118px;
	height: 96px;
	margin: 0 auto 22px;
	overflow: hidden;
	border-radius: 18px;
	background: #e8efee;
	box-shadow: 0 12px 28px rgba(16, 38, 41, 0.08);
}

.gg-feature-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.55s ease;
}

.gg-feature-card:hover .gg-feature-image img {
	transform: scale(1.06);
}

.gg-feature-content h3 {
	margin: 0 0 14px;
	color: var(--gel-ink);
	font-size: 20px;
	line-height: 1.3;
	font-weight: 760;
	letter-spacing: -0.35px;
}

.gg-feature-content p {
	margin: 0;
	color: #425154;
	font-size: 15px;
	line-height: 1.72;
}

/* ==================== Corning Glass Data Sheet ==================== */

.gg-datasheet {
	padding: 86px 0 98px;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-datasheet-head {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}

.gg-datasheet-head span {
	display: block;
	margin-bottom: 12px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.gg-datasheet-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.gg-datasheet-head p {
	max-width: 720px;
	margin: 18px auto 0;
	color: #657477;
	font-size: 16px;
	line-height: 1.78;
}

.gg-datasheet-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

/* PDF Document Card */

.gg-datasheet-doc {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 230px;
	padding: 32px 24px 28px;
	background: #ffffff;
	color: var(--gel-ink);
	text-decoration: none;
	box-shadow: 0 18px 42px rgba(16, 38, 41, 0.08);
	transition: all 0.28s ease;
	overflow: hidden;
}

.gg-datasheet-doc:hover {
	color: var(--gel-ink);
	text-decoration: none;
	transform: translateY(-6px);
	box-shadow: 0 28px 68px rgba(16, 38, 41, 0.13);
}

.gg-datasheet-doc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 28px;
	margin-bottom: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(40, 151, 138, 0.12);
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
}

.gg-datasheet-doc h3 {
	margin: 0 0 10px;
	color: var(--gel-ink);
	font-size: 19px;
	line-height: 1.32;
	font-weight: 760;
	letter-spacing: -0.35px;
}

.gg-datasheet-doc p {
	margin: 0;
	color: #657477;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
}

.gg-datasheet-doc > span {
	margin-top: auto;
	padding-top: 26px;
	color: var(--gel-main);
	font-size: 14px;
	font-weight: 800;
}

.gg-datasheet-doc > span::after {
	content: " →";
}

/* Corning Glass Data Sheet Responsive */

@media (max-width: 1199px) {
	.gg-datasheet-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.gg-datasheet {
		padding: 72px 0 82px;
	}

	.gg-datasheet-head h2 {
		font-size: 34px;
	}

	.gg-datasheet-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.gg-datasheet {
		padding: 58px 0 68px;
	}

	.gg-datasheet-head {
		margin-bottom: 34px;
	}

	.gg-datasheet-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-datasheet-head p {
		font-size: 15px;
	}

	.gg-datasheet-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gg-datasheet-doc {
		min-height: 210px;
		padding: 30px 24px 26px;
	}
}

/* ==================== /Corning Glass Data Sheet ==================== */

/* ==================== Gorilla Glass Warranty ==================== */

.gg-warranty {
	padding: 72px 0 82px;
	background: #ffffff;
	color: var(--gel-ink);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.gg-warranty-simple {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 48px 30px 52px;
	text-align: center;
	border-top: 1px solid var(--gel-line);
	border-bottom: 1px solid var(--gel-line);
}

.gg-warranty-simple::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -1px;
	width: 86px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
	transform: translateX(-50%);
}

.gg-warranty-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	margin-bottom: 18px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(40, 151, 138, 0.1);
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.gg-warranty-simple h2 {
	margin: 0 0 16px;
	color: var(--gel-ink);
	font-size: 40px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1px;
}

.gg-warranty-simple p {
	max-width: 680px;
	margin: 0 auto;
	color: #425154;
	font-size: 18px;
	line-height: 1.72;
	font-weight: 400;
}

.gg-warranty-simple strong {
	color: var(--gel-main);
	font-size: 24px;
	font-weight: 800;
}

/* Gorilla Glass Warranty Responsive */

@media (max-width: 991px) {
	.gg-warranty {
		padding: 64px 0 72px;
	}

	.gg-warranty-simple h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.gg-warranty {
		padding: 52px 0 60px;
	}

	.gg-warranty-simple {
		padding: 40px 18px 44px;
	}

	.gg-warranty-simple h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-warranty-simple p {
		font-size: 16px;
	}

	.gg-warranty-simple strong {
		font-size: 21px;
	}
}

/* ==================== /Gorilla Glass Warranty ==================== */

/* ==================== Features / Data Sheet / Warranty Responsive ==================== */

@media (max-width: 1199px) {
	.gg-features-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gg-datasheet-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 991px) {
	.gg-features,
	.gg-datasheet,
	.gg-warranty {
		padding: 74px 0 84px;
	}

	.gg-features-head h2,
	.gg-datasheet-head h2 {
		font-size: 34px;
	}

	.gg-warranty-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 54px 46px;
	}

	.gg-warranty-content h2 {
		font-size: 36px;
	}
}

@media (max-width: 575px) {
	.gg-features,
	.gg-datasheet,
	.gg-warranty {
		padding: 58px 0 68px;
	}

	.gg-features-head {
		margin-bottom: 34px;
	}

	.gg-features-head h2,
	.gg-datasheet-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.gg-features-head p,
	.gg-datasheet-head p {
		font-size: 15px;
	}

	.gg-features-grid,
	.gg-datasheet-grid {
		grid-template-columns: 1fr;
	}

	.gg-feature-card {
		padding: 26px 22px 28px;
	}

	.gg-datasheet-head {
		padding: 34px 28px 36px;
	}

	.gg-datasheet-card {
		padding: 20px 22px;
	}

	.gg-warranty-inner {
		padding: 42px 28px;
	}

	.gg-warranty-content h2 {
		font-size: 30px;
		letter-spacing: -0.6px;
	}

	.gg-warranty-content p {
		font-size: 16px;
	}

	.gg-warranty-btn {
		width: 100%;
	}
}

/* ==================== /Features / Data Sheet / Warranty ==================== */

/* Quick Quote And Trusted Reasons */

.ag-quote-trust {
	padding: 104px 0 116px;
	background: #f6f8f8;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.ag-quote-trust-inner {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 70px;
	align-items: stretch;
}

/* Quick Quote Form */

.ag-quote-box {
	position: relative;
	padding: 58px 54px 60px;
	background: #ffffff;
	color: var(--gel-text);
	border: 1px solid var(--gel-line);
	box-shadow: 0 24px 60px rgba(16, 38, 41, 0.08);
	overflow: hidden;
}

.ag-quote-box::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
	background: var(--gel-main);
}

.ag-quote-head {
	position: relative;
	z-index: 2;
	margin-bottom: 32px;
}

.ag-quote-head span,
.ag-trust-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.ag-quote-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 40px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.1px;
}

.ag-quote-head p {
	max-width: 520px;
	margin: 18px 0 0;
	color: var(--gel-muted);
	font-size: 15px;
	line-height: 1.78;
}

.ag-quote-form {
	position: relative;
	z-index: 2;
}

.ag-form-row {
	margin-bottom: 14px;
}

.ag-form-row input,
.ag-form-row textarea {
	width: 100%;
	border: 1px solid var(--gel-line);
	border-radius: 0;
	background: #f6f8f8;
	color: var(--gel-ink);
	font-size: 15px;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	outline: none;
	transition: all 0.22s ease;
	box-sizing: border-box;
}

.ag-form-row input {
	height: 50px;
	padding: 0 18px;
}

.ag-form-row textarea {
	height: 138px;
	padding: 16px 18px;
	resize: vertical;
}

.ag-form-row input::placeholder,
.ag-form-row textarea::placeholder {
	color: #7b898b;
}

.ag-form-row input:focus,
.ag-form-row textarea:focus {
	border-color: rgba(40, 151, 138, 0.72);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(40, 151, 138, 0.12);
}

.ag-quote-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin-top: 8px;
	border: 1px solid var(--gel-main);
	border-radius: 999px;
	background: var(--gel-main);
	color: #ffffff;
	font-size: 15px;
	font-weight: 760;
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 14px 32px rgba(40, 151, 138, 0.24);
	transition: all 0.25s ease;
}

.ag-quote-submit:hover {
	background: var(--gel-main-dark);
	border-color: var(--gel-main-dark);
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

/* Trusted Reasons */

.ag-trust-box {
	padding: 10px 0;
}

.ag-trust-head {
	max-width: 720px;
	margin-bottom: 36px;
}

.ag-trust-head h2 {
	margin: 0;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.2px;
}

.ag-trust-head p {
	margin: 20px 0 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
}

.ag-trust-list {
	display: grid;
	gap: 28px;
}

.ag-trust-item {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 22px;
	align-items: start;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--gel-line);
}

.ag-trust-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.ag-trust-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: rgba(40, 151, 138, 0.11);
	color: var(--gel-main);
	font-size: 25px;
}

.ag-trust-item h3 {
	margin: 0 0 12px;
	color: var(--gel-ink);
	font-size: 23px;
	line-height: 1.25;
	font-weight: 760;
	letter-spacing: -0.4px;
}

.ag-trust-item p {
	margin: 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.78;
}

/* Quick Quote And Trusted Reasons Responsive */

@media (max-width: 991px) {
	.ag-quote-trust {
		padding: 78px 0 88px;
	}

	.ag-quote-trust-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.ag-quote-box {
		padding: 48px 42px 52px;
	}

	.ag-quote-head h2,
	.ag-trust-head h2 {
		font-size: 34px;
	}

	.ag-trust-box {
		padding: 0;
	}
}

@media (max-width: 575px) {
	.ag-quote-trust {
		padding: 62px 0 72px;
	}

	.ag-quote-box {
		padding: 40px 26px 44px;
	}

	.ag-quote-head h2,
	.ag-trust-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.ag-quote-head p,
	.ag-trust-head p,
	.ag-trust-item p {
		font-size: 15px;
	}

	.ag-form-row input {
		height: 48px;
	}

	.ag-form-row textarea {
		height: 130px;
	}

	.ag-trust-item {
		grid-template-columns: 48px 1fr;
		gap: 16px;
	}

	.ag-trust-icon {
		width: 48px;
		height: 48px;
		border-radius: 15px;
		font-size: 22px;
	}

	.ag-trust-item h3 {
		font-size: 20px;
	}
}

/* FAQ */

.ag-faq {
	padding: 96px 0 104px;
	background: #ffffff;
	color: var(--gel-text);
	font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.ag-faq-head {
	max-width: 760px;
	margin: 0 auto 46px;
	text-align: center;
}

.ag-faq-head span {
	display: block;
	margin-bottom: 14px;
	color: var(--gel-main);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.2px;
	text-transform: uppercase;
}

.ag-faq-head h2 {
	position: relative;
	margin: 0;
	padding-bottom: 22px;
	color: var(--gel-ink);
	font-size: 42px;
	line-height: 1.14;
	font-weight: 760;
	letter-spacing: -1.2px;
}

.ag-faq-head h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 48px;
	height: 3px;
	border-radius: 999px;
	background: var(--gel-main);
	transform: translateX(-50%);
}

.ag-faq-list {
	max-width: 980px;
	margin: 0 auto;
	border-top: 1px solid var(--gel-line);
}

.ag-faq-item {
	border-bottom: 1px solid var(--gel-line);
	background: #ffffff;
	transition: all 0.25s ease;
}

.ag-faq-item[open] {
	background: #f6f8f8;
}

.ag-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 0 64px 0 28px;
	color: var(--gel-ink);
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	outline: none;
}

.ag-faq-item summary::-webkit-details-marker {
	display: none;
}

.ag-faq-item summary::before,
.ag-faq-item summary::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: var(--gel-main);
	transition: all 0.25s ease;
}

.ag-faq-item summary::after {
	transform: rotate(90deg);
}

.ag-faq-item[open] summary::after {
	transform: rotate(0deg);
	opacity: 0;
}

.ag-faq-answer {
	padding: 0 28px 28px;
}

.ag-faq-answer p {
	max-width: 820px;
	margin: 0;
	color: #425154;
	font-size: 16px;
	line-height: 1.82;
}

/* FAQ Responsive */

@media (max-width: 991px) {
	.ag-faq {
		padding: 78px 0 88px;
	}

	.ag-faq-head h2 {
		font-size: 34px;
	}
}

@media (max-width: 575px) {
	.ag-faq {
		padding: 62px 0 72px;
	}

	.ag-faq-head {
		margin-bottom: 36px;
	}

	.ag-faq-head h2 {
		font-size: 29px;
		letter-spacing: -0.6px;
	}

	.ag-faq-item summary {
		min-height: 62px;
		padding: 0 52px 0 20px;
		font-size: 16px;
	}

	.ag-faq-item summary::before,
	.ag-faq-item summary::after {
		right: 22px;
		width: 14px;
	}

	.ag-faq-answer {
		padding: 0 20px 24px;
	}

	.ag-faq-answer p {
		font-size: 15px;
	}
}

/* ==================== Latest Blog ==================== */

.latest-blog {
padding: 106px 0 116px;
background: #f6f8f8;
}

.latest-blog-head {
display: grid;
grid-template-columns: 0.95fr 1.05fr;
gap: 64px;
align-items: end;
max-width: 1220px;
margin: 0 auto 56px;
}

.latest-blog-head span {
display: block;
margin-bottom: 14px;
color: #28978a;
font-size: 12px;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-head h2 {
margin: 0;
color: #102629;
font-size: 40px;
line-height: 1.18;
font-weight: 760;
letter-spacing: -1px;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-desc {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 28px;
}

.latest-blog-desc p {
margin: 0;
color: #657477;
font-size: 16px;
line-height: 1.78;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-btn {
display: inline-flex;
align-items: center;
justify-content: center;
flex: 0 0 auto;
min-height: 48px;
padding: 0 30px;
border-radius: 999px;
background: #28978a;
color: #ffffff;
font-size: 15px;
font-weight: 760;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
text-decoration: none;
box-shadow: 0 14px 32px rgba(40, 151, 138, 0.22);
transition: all 0.25s ease;
}

.latest-blog-btn:hover {
background: #1f766d;
color: #ffffff;
text-decoration: none;
transform: translateY(-2px);
box-shadow: 0 18px 40px rgba(40, 151, 138, 0.3);
}

.latest-blog-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 28px;
max-width: 1220px;
margin: 0 auto;
}

.latest-blog-card {
display: block;
overflow: hidden;
border-radius: 28px;
background: #ffffff;
color: inherit;
text-decoration: none;
box-shadow: 0 18px 46px rgba(16, 38, 41, 0.08);
transition: all 0.28s ease;
}

.latest-blog-card:hover {
color: inherit;
text-decoration: none;
transform: translateY(-7px);
box-shadow: 0 28px 68px rgba(16, 38, 41, 0.13);
}

.latest-blog-image {
position: relative;
overflow: hidden;
background: #e8efee;
}

.latest-blog-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;
}

.latest-blog-image img {
width: 100%;
height: 240px;
object-fit: cover;
display: block;
transition: transform 0.55s ease;
}

.latest-blog-card:hover .latest-blog-image img {
transform: scale(1.045);
}

.latest-blog-content {
padding: 28px 28px 32px;
}

.latest-blog-date {
margin-bottom: 12px;
color: #28978a;
font-size: 13px;
font-weight: 760;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-content h3 {
margin: 0 0 12px;
color: #102629;
font-size: 21px;
line-height: 1.3;
font-weight: 760;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-content p {
margin: 0 0 18px;
color: #657477;
font-size: 15px;
line-height: 1.72;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.latest-blog-more {
color: #28978a;
font-size: 14px;
font-weight: 800;
font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 991px) {
.latest-blog {
padding: 76px 0 86px;
}

```
.latest-blog-head {
	grid-template-columns: 1fr;
	gap: 22px;
	margin-bottom: 42px;
}

.latest-blog-head h2 {
	font-size: 32px;
}

.latest-blog-desc {
	display: block;
}

.latest-blog-btn {
	margin-top: 24px;
}

.latest-blog-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}

.latest-blog-image img {
	height: 280px;
}

}

@media (max-width: 575px) {
.latest-blog {
padding: 60px 0 68px;
}

.latest-blog-head h2 {
	font-size: 28px;
}

.latest-blog-card {
	border-radius: 22px;
}

.latest-blog-image img {
	height: 230px;
}

.latest-blog-btn {
	width: 100%;
}

}

/* ==================== /Latest Blog ==================== */

/* ==================== 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 ==================== */