/* css file */
:root {
	--ink: #1c1a17;
	--dark: #181614;
	--dark-2: #232019;
	--tan: #c49e7c;
	--tan-dark: #a97e50;
	--tan-deep: #b98a5a;
	--cream: #faf6f0;
	--peach: #f4e9dc;
	--muted: #6f6a62;
	--line: #e7ddce;
	--white: #ffffff;
	--radius: 14px;
}

@font-face {
	font-family: "Technor";
	src: url("../fonts/Technor-Medium.eot");
	src:
		url("../fonts/Technor-Medium.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Technor-Medium.woff2") format("woff2"),
		url("../fonts/Technor-Medium.woff") format("woff"),
		url("../fonts/Technor-Medium.ttf") format("truetype"),
		url("../fonts/Technor-Medium.svg#Technor-Medium") format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Google Sans Flex", sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

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

ul {
	list-style: none;
}

h1,
h2 {
	font-family: "Literata", serif;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
}

.section-padding {
	padding: 100px 0;
}

.section-heading {
	font-size: clamp(38px, 3vw, 52px);
	font-weight: 500;
}

.text-white {
	color: var(--white) !important;
}

.wrap {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1c1d21;
	margin-bottom: 20px;
	font-family: "Technor";
}

.eyebrow.on-dark {
	color: #fff;
}

.eyebrow::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #c49e7c;
	display: inline-block;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 25px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid transparent;
	cursor: pointer;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-tan {
	background: var(--tan);
	color: #fff;
}

.btn-tan:hover {
	background: var(--tan-dark);
}

.btn-dark {
	background: var(--dark);
	color: var(--white);
}

.btn-dark:hover {
	background: #000;
}

.btn-outline-dark {
	background: transparent;
	color: var(--white);
	border-color: #fff;
}

.btn-outline-dark:hover {
	background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}

.btn-white {
	background: var(--white);
	color: var(--ink);
}

.btn-white:hover {
	background: #f1ece3;
}

/* ---------- HEADER ---------- */
header {
	position: fixed;
	top: 0;
	z-index: 50;
	background: transparent;
	width: 100%;
	border: 1px solid rgb(255 255 255 / 10%);
}

header.sticky {
	background: #1c1d21;
}
.mobile-menu{
	display: none;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	max-width: 1240px;
	margin: 0 auto;
}

.nav-links {
	display: flex;
	gap: 36px;
}

.nav-links li a {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.nav-links li a:hover {
	color: var(--tan);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-actions .btn {
	padding: 11px 20px;
	font-size: 14px;
	border-width: 1px;
}

.loginicon {
	display: none;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 26px;
	cursor: pointer;
}

.hamburger-cross {
	display: none;
}

.mobile-social {
	display: none;
}


/* ---------- HERO ---------- */
.hero {
	position: relative;
	min-height: clamp(520px, 60vw, 825px);
	display: flex;
	align-items: flex-end;
	background: url("../imgs/hero-banner.jpg") center/cover no-repeat;
	color: var(--white);
	overflow: hidden;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 0.62fr;
	gap: 30px;
	align-items: end;
	padding: 0 15px 100px;
	max-width: 1230px;
	margin: 0 auto;
	width: 100%;
	z-index: 1;
}

.hero-headline {
	grid-column: 1;
}

.hero h1 {
	font-size: clamp(32px, 3.6vw, 68px);
	margin-bottom: 0;
	color: var(--white);
	font-weight: 400;
}

.hero-desc-block {
	align-items: flex-start;
}

.hero-desc-block p {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
}

.hero-actions {
	grid-column: 1;
	display: flex;
	gap: 14px;
	margin-top: 28px;
}

/* ---------- FEATURE GRID ---------- */
.feature-section {
	padding: 65px 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.feature-card {
	position: relative;
	min-height: 0;
	aspect-ratio: 16 / 9;
	padding: 34px 36px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: var(--white);
	overflow: hidden;
	border-radius: 20px;
}

.feature-card .tint {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(235.2deg, rgba(196, 158, 124, 0), #c49e7c 75%),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4));
}

.feature-card .fbg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.feature-card h3 {
	position: relative;
	z-index: 1;
	font-size: 37px;
	color: var(--white);
	margin-bottom: 10px;
	font-family: "Google Sans Flex", sans-serif;
	font-weight: 600;
	line-height: 1.3;
}

.feature-card p {
	position: relative;
	z-index: 1;
	font-size: 16px;
	color: #fff;
}

/* ---------- OPERATIONAL EXCELLENCE ---------- */
.facility-section {
	background: #f5f4f5;
	margin-top: -250px;
	padding-block: 250px 100px;
}

.section-head {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 52px;
}

.facility-section .section-head {
	position: relative;
	grid-template-columns: 1.2fr 0.7fr;
}

.capsule-overlay2 {
	position: absolute;
	pointer-events: none;
	margin: 0 auto;
	left: 0;
	right: -11%;
	top: 6px;
	width: 114px;
	filter: blur(3px);
}

/* .section-head h2{font-size: clamp(28px,3vw,52px);} */
.section-head p {
	color: #1c1d21;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.card-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 36px;
}

.info-card {
	/* border:1px solid var(--line); */
	border-radius: var(--radius);
	padding: 30px;
	background: var(--white);
}

.icon-badge {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: var(--tan);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 20px;
}

.info-card h3 {
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 600;
	font-family: "Google Sans Flex", sans-serif;
}

.info-card p {
	color: #1c1d21;
	font-size: 16px;
	margin-bottom: 25px;
	line-height: 1.65;
	font-weight: 500;
}

.check-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #1c1d21;
	border-top: 1px solid #1c1d211a;
	padding-top: 25px;
	width: calc(100% + 60px);
	margin-left: -30px;
	padding-inline: 30px;
}

.check-line .dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--tan);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 10px;
	flex: none;
}

.cta-banner {
	background: var(--tan);
	border-radius: 12px;
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cta-banner h3 {
	font-size: 37px;
	color: #fff;
	margin-bottom: 8px;
	font-weight: 600;
}

.cta-banner p {
	color: #fff;
	font-size: 16px;
	max-width: 580px;
	font-weight: 500;
}

.cta-banner .btn {
	background: #fff;
	color: #1c1d21;
}

.cta-banner .btn:hover {
	color: #fff;
	background: #1c1d21;
}

.cta-banner .btn:hover img {
	filter: invert(1);
}

/* ---------- WHAT WE FULFILL ---------- */
.fulfillment-section {
	position: relative;
}

.capsule-overlay1 {
	position: absolute;
	pointer-events: none;
	margin: 0 auto;
	left: 0;
	right: -18%;
	top: -60px;
	width: 208px;
}

.fulfill-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.fulfill-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 26px;
	color: var(--white);
}

.fulfill-card .fbg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.fulfill-card .tint {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 100%),
		linear-gradient(235.2deg, rgba(0, 0, 0, 0) 21.45%, rgba(0, 0, 0, 0.7) 72%);
}

.fulfill-card .tag {
	position: relative;
	z-index: 1;
	font-family: "Technor";
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.fulfill-card .tag::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--tan);
}

.fulfill-card h3 {
	position: relative;
	z-index: 1;
	font-size: 37px;
	color: var(--white);
	font-weight: 600;
}

/* ---------- GETTING STARTED ---------- */
.getting-started {
	background-image: url(../imgs/quotelaunch-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-bottom: 125px;
	position: relative;
}

.gs-inner {
	max-width: 500px;
}

.gs-inner h2 {
	margin-bottom: 16px;
}

.gs-inner .desc {
	color: #1c1d21;
	font-size: 16px;
	margin-bottom: 32px;
	max-width: 510px;
	font-weight: 500;
}

.step {
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(28, 26, 23, 0.1);
}

.step:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.step-num {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--tan);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 16px;
}

.step h4 {
	font-size: 16px;
	margin-bottom: 4px;
	font-weight: 700;
}

.step p {
	font-size: 16px;
	color: #1c1d21;
	font-weight: 500;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-section {
	position: relative;
}

.compare-section .capsule-overlay1 {
	position: absolute;
	border-radius: 20px;
	pointer-events: none;
	margin: 0;
	left: 21%;
	right: 0;
	top: -82px;
}

.compare-section .capsule-overlay-blur {
	position: absolute;
	pointer-events: none;
	margin: 0;
	left: 19%;
	right: 0;
	top: 65px;
	filter: blur(4px);
	width: 125px;
}

.compare-wrap {
	text-align: center;
	margin-bottom: 48px;
}

.compare-wrap p {
	color: #1c1d21;
	font-size: 16px;
	margin-top: 30px;
}

table.compare {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14.5px;
	border: 1px solid rgb(28 29 33 / 10%);
	border-radius: 20px;
}

table.compare th,
table.compare td {
	padding: 20px 22px;
	text-align: left;
	border-bottom: 1px solid rgb(28 29 33 / 10%);
}

table.compare td {
	font-size: 17px;
	font-weight: 600;
}

table.compare tr:last-child td {
	border-bottom: 0;
}

table.compare tbody tr:nth-child(odd) {
	background: #1c1d2108;
}

table.compare td,
table.compare th {
	text-align: center;
}

table.compare thead th:first-child,
table.compare tbody tr td:first-child {
	text-align: left;
}

table.compare tbody tr td:first-child {
	width: 250px;
}

table.compare thead th {
	font-size: 21px;
	color: #080808;
	font-weight: 600;
}

table.compare thead th.brand-col {
	color: var(--tan-dark);
}

td.brand-col {
	color: var(--tan-dark);
	font-weight: 600;
	position: relative;
	border-left: 4px solid var(--tan);
	border-right: 4px solid var(--tan);
}

th.brand-th {
	border-left: 4px solid var(--tan);
	border-right: 4px solid var(--tan);
	border-top: 4px solid var(--tan);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding-top: 18px;
}

tbody tr:last-child td.brand-col {
	border-bottom: 4px solid var(--tan);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	padding-bottom: 22px;
}

.brand-name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
}

.brand-name span {
	color: var(--ink);
}

/* ---------- MANUFACTURING ---------- */
.manufacturing {
	background: var(--tan);
	color: #241d14;
	position: relative;
}

.manufacturing .capsule-overlay-grp {
	position: absolute;
	pointer-events: none;
	margin: 0 auto;
	left: 0;
	right: -34%;
	top: -54px;
	width: 250px;
}

.mfg-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}

.manufacturing .eyebrow:before {
	background: #fff;
}

.mfg-head h2 {
	color: #20180f;
	max-width: 520px;
}

.mfg-cta {
	background: #8b623d;
	color: #fff;
	border-radius: 12px;
	padding: 30px;
}

.mfg-cta h4 {
	font-size: 24px;
	margin-bottom: 6px;
	font-weight: 600;
}

.mfg-cta p {
	font-size: 16px;
	color: #fff;
	margin-bottom: 14px;
	font-weight: 500;
}

.mfg-cta a {
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.mfg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.mfg-card {
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	padding: 0 20px 22px;
}

.mfg-photo {
	height: 200px;
	margin-bottom: 16px;
	background-size: cover;
	background-position: center;
	width: calc(100% + 40px);
	margin-left: -20px;
}

.mfg-card h4 {
	font-size: 24px;
	margin-bottom: 6px;
	font-weight: 600;
}

.mfg-card p {
	font-size: 16px;
	color: #3c3021;
	font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.final-cta .final-cta-inner {
	max-width: 490px;
	margin-right: auto;
}

.final-cta {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 125px;
}

.final-cta h2 {
	margin-bottom: 18px;
}

.final-cta p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.6;
}

.final-cta .hero-actions {
	margin-top: 0;
}

/* ---------- FOOTER ---------- */
footer.site-footer {
	background-image: url(../imgs/footer-bg.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-bottom: 0 !important;
	padding: 125px 0 0;
}

.footer-btm {
	padding-block: 50px 15px;
	background: transparent;
	background: linear-gradient(0deg, #1c1d21 35%, rgb(28 29 33 / 0%) 100%);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
	gap: 40px;
}

.footer-top .logo {
	margin-bottom: 15px;
	display: inline-block;
}

.footer-top p {
	font-size: 14px;
	line-height: 1.6;
	max-width: 280px;
	color: rgb(255 255 255 / 50%);
}

.footer-col h5 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgb(255 255 255 / 50%);
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 16px;
	margin-bottom: 12px;
	color: #fff;
	font-weight: 500;
}

.footer-col a:hover {
	color: #fff;
}

.footer-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

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

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom-links {
	display: flex;
	gap: 22px;
}

.social-icons {
	display: flex;
	gap: 12px;
	align-items: center;
	padding-left: 11px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	transition: all 0.3s ease;
	padding: 2px;
}

.social-icons a:hover {
	background-color: #e4405f;
	transform: translateY(-2px);
	border-radius: 6px;
}

.social-icons a:nth-child(2):hover {
	background-color: #0077b5;
}

.footer-top .social-icons {
	align-items: center;
	padding-top: 30px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px){
	.nav-actions .btn-tan {
		display: none;
	}
}

@media (max-width: 991px) {

	.section-heading {
		position: relative;
	}

	.nav-links-container {
		margin-left: auto;
	}

	.nav-actions {
		margin-left: 25px;
	}

	.nav-links {
		gap: 20px;
	}

	.btn.login {
		font-size: 0;
		padding: 0;
		border: 0;
	}

	.loginicon {
		display: block;
	}

	.nav a.logo {
		width: 190px;
	}


	.hero {
		background-position: center right;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		max-width: 95%;
	}

	.hero-desc-block {
		padding-bottom: 0;
	}

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

	.feature-card,
	.fulfill-card {
		aspect-ratio: 1/1;
	}

	.feature-card h3,
	.fulfill-card h3 {
		font-size: 30px;
	}

	.feature-card h3 br {
		display: none;
	}

	table.compare tbody tr td:first-child {
		width: 200px;
	}

	table.compare thead th {
		font-size: 18px;
	}

	table.compare td {
		font-size: 15px;
	}

	.section-head,
	.facility-section .section-head {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.capsule-overlay2 {
		margin: 0;
		left: auto;
		right: 10%;
	}

	.info-card:last-child {
		grid-column: span 2;
	}

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

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

	.fulfill-card .fbg {
		background-position: center right;
	}

	.getting-started {
		background-position: top right;
	}

	.getting-started:before {
		content: "";
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		background:
			linear-gradient(235.2deg, rgb(221 196 174 / 0%), #ddcbbc 75%),
			linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4));
	}

	.getting-started .wrap {
		position: relative;
		z-index: 1;
	}

	.gs-inner {
		grid-template-columns: 1fr;
	}

	.gs-photo {
		order: -1;
		min-height: 280px;
	}

	.mfg-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	table.compare {
		font-size: 13px;
	}

	table.compare th,
	table.compare td {
		padding: 14px 10px;
	}

	footer.site-footer {
		background-position: 60% 0;
		padding: 100px 0 0;
	}

	.final-cta {
		padding-bottom: 75px;
	}

	.footer-btm {
		background: linear-gradient(0deg, #1c1d21 56%, rgb(28 29 33 / 0%) 100%);
	}
}

@media (max-width: 767px) {
	.social-icons.desktop {
		display: none;
	}

	.mobile-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;

		background: #caa37e;
		z-index: 999;

		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		transition: .45s ease;
	}

	.mobile-menu.active {
		right: 0;
	}

	/* Menu */

	.mobile-menu .nav-links {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-menu .nav-links li {
		margin: 8px 0;
		text-align: center;
	}

	.mobile-menu .nav-links a {
		color: #fff;
		text-decoration: none;
		font-size: 28px;
		font-weight: 500;
	}

	/* Social */

	.mobile-social {
		margin-top: 70px;

		display: flex;
		gap: 20px;

		opacity: 0;
		visibility: hidden;
		transform: translateY(20px);

		transition: .4s;
	}

	.mobile-menu.active .mobile-social {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.mobile-social a {
		color: #fff;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(255, 255, 255, .4);
		border-radius: 8px;

		display: flex;
		justify-content: center;
		align-items: center;

		font-size: 18px;
	}

	/* Toggle button */

	.nav-toggle {
		position: relative;
		z-index: 1001;
		background: none;
		border: none;
		cursor: pointer;
	}

	.hamburger-cross {
		display: none;
	}

	.nav-toggle.active .hamburger {
		display: none;
	}

	.nav-toggle.active .hamburger-cross {
		display: block;
	}

	.hero-inner .eyebrow {
		display: none;
	}

	.section-heading {
		font-size: 30px;
	}

	.nav-toggle {
		display: block;
		position: relative;
		animation: 1;
		height: 24px;
	}

	.nav a.logo {
		width: 190px;
	}

	.nav-links-container {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: #c49e7c;
		transition: all 0.3s;
	}

	.nav-links-container.active {
		left: 0;
	}

	.nav-links {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		/* height: 100%; */
	}

	.nav-actions {
		margin-left: auto;
	}

	.nav-toggle.active .hamburger {
		display: none;
	}

	.nav-toggle.active .hamburger-cross {
		display: block;
	}

	.nav-links li a {
		font-size: 20px;
	}

	.hero:before {
		content: "";
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 100%),
			linear-gradient(235.2deg, rgba(0, 0, 0, 0) 21.45%, rgb(0 0 0 / 21%) 72%);
	}

	.hero-actions {
		flex-wrap: wrap;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.feature-card {
		aspect-ratio: auto;
	}

	.fulfill-card {
		aspect-ratio: 16 / 9;
	}

	.feature-card h3,
	.fulfill-card h3 {
		font-size: 24px;
	}

	.feature-grid,
	.card-row,
	.fulfill-grid {
		grid-template-columns: 1fr;
	}

	.info-card:last-child {
		grid-column: span 1;
	}

	.compare-section .capsule-overlay1 {
		left: 21%;
		top: -52px;
		width: 146px;
	}

	.compare-section .capsule-overlay-blur {
		left: 13%;
		top: 37px;
		filter: blur(2px);
		width: 86px;
	}

	.mfg-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.mfg-grid {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.compare-wrap {
		overflow-x: auto;
	}

	table.compare {
		min-width: 640px;
	}

	.section {
		padding: 64px 0;
	}

	.wrap {
		padding: 0 20px;
	}

	.hero-inner {
		padding: 100px 15px 50px;
		max-width: 100%;
	}

	.nav {
		padding: 16px 20px;
	}

	.cta-banner {
		padding: 32px 26px;
	}

	.eyebrow {
		font-size: 18px;
	}

	.btn {
		padding: 14px 25px;
		font-size: 15px;
	}

	.cta-banner h3 {
		font-size: 28px;
		line-height: 1.3;
	}

	footer.site-footer {
		background-position: 73% 0;
		padding: 50px 0 0;
		position: relative;
	}

	footer.site-footer:after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(180deg,
				rgb(28 29 33 / 55%) 56%,
				rgb(28 29 33 / 0%) 100%);
	}

	.footer-top p {
		color: #fff;
		max-width: 100%;
	}

	.final-cta,
	.footer-btm {
		position: relative;
		z-index: 1;
	}

	.footer-btm {
		background: linear-gradient(0deg, #1c1d21 35%, rgb(28 29 33 / 0%) 100%);
	}

	/* .nav-links-container.active .nav .social-icons{
		display: flex;
		z-index: 1000;
	}

	.nav-actions .social-icons {
		display: none;
	} */


}