/* ========================================
   TECHNOLOGY PAGES - SHARED STYLES
   Base styles for all technology feature pages
   ======================================== */

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.tech-page {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #000000;
	position: relative;
	min-height: 100vh;
}

/* Dark overlay for better text readability - REMOVED */

.tech-page__content-wrapper {
	width: 100%;
	max-width: 95%;
	align-self: center;
	padding: 50px 50px;
	background-color: #fff;
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	backdrop-filter: blur(10px);
	border-radius: 8px;
	margin-bottom: 0;
}

/* Add bottom spacing when no product showcase section */
.tech-page__content-wrapper--no-products {
	margin-bottom: 120px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.tech-hero {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.tech-hero__title {
	width: 100%;
	max-width: 964px;
	margin: 0 auto;
	padding: 225px 20px 100px;
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0;
	position: relative;
}

.tech-hero__title--complex {
	font-weight: 400;
}

.tech-hero__title--narrow {
	max-width: 810px;
}

/* Hero text variants */
.tech-hero__title-main {
	font-weight: 700;
	font-size: 48px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-hero__title-sub {
	font-weight: 700;
	font-size: 26px;
	line-height: 39px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-hero__title-body {
	font-size: 17.5px;
	line-height: 26.2px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tech-hero__title-body--bold {
	font-weight: 700;
}

/* Hero Title Complex Spacing */
.tech-hero__title--complex .tech-hero__title-main {
	display: block;
	margin-bottom: 20px;
}

.tech-hero__title--complex .tech-hero__title-sub {
	display: block;
	margin-bottom: 40px;
}

.tech-hero__title--complex .tech-hero__title-body {
	display: block;
}

.tech-hero__title--complex .tech-hero__title-body--paragraph {
	margin-bottom: 40px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.tech-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 100%;
	align-items: center;
}

/* Feature Introduction */
.tech-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	width: 100%;
	margin: 0 auto;
}

.tech-feature__icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tech-feature__description {
	width: 100%;
	max-width: 600px;
	font-family: 'Inter', Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 17.5px;
	letter-spacing: 0;
	line-height: 26.2px;
}

.tech-feature__description strong {
	font-weight: 700;
}

/* Feature Description Elements */
.tech-feature__text {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.tech-feature__link {
	margin: 26px 0 0 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	cursor: pointer;
}

.tech-feature__link a {
	color: inherit;
	text-decoration: none;
}

.tech-feature__link a:hover {
	color: inherit;
	text-decoration: none;
}

.tech-feature__section {
	margin-bottom: 26px;
}

.tech-feature__section:last-child {
	margin-bottom: 0;
}

.tech-feature__heading {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	font-size: 26px;
	line-height: 26.2px;
	color: #000000;
}

.tech-feature__paragraph {
	margin: 8px 0 0 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/* Technology Overview */
.tech-overview {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
}

.tech-overview__text {
	flex: 1;
	font-family: 'Inter', Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 17.5px;
	letter-spacing: 0;
	line-height: 26.2px;
	margin: 0;
}

.tech-overview__text strong {
	font-weight: 700;
}

.tech-overview__image {
	flex-shrink: 0;
	object-fit: cover;
	width: 40%;
	border-radius: 8px;
}

.tech-overview__heading {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 26px;
	line-height: 26.2px;
	margin: 0 0 8px 0;
}

.tech-overview__paragraph {
	margin: 0 0 16px 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.tech-overview__paragraph--spaced {
	margin-top: 26px;
}

.tech-overview__list {
	list-style: disc;
	margin: 0 0 16px 0;
	padding: 0 0 0 20px;
}

.tech-overview__list-item {
	margin-bottom: 8px;
	font-family: 'Inter', Helvetica;
	font-size: 17.5px;
	line-height: 26.2px;
	color: #000000;
}

.tech-overview__list-item:last-child {
	margin-bottom: 0;
}

/* ========================================
   IMAGE GALLERY
   ======================================== */

.tech-gallery {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.tech-gallery__main {
	align-self: center;
	width: 100%;
	height: 524px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

.tech-gallery__grid {
	display: flex;
	gap: 20px;
	align-self: center;
	width: 100%;
}

.tech-gallery__item {
	flex: 1;
	height: 270px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.tech-benefits {
	display: flex;
	width: 100%;
	gap: 40px;
	padding: 60px 40px;
	background-color: #f2f2f2;
	border-radius: 8px;
}

.tech-benefits--split {
	display: flex;
	width: 100%;
	gap: 40px;
	padding: 60px 40px;
	background-color: #f2f2f2;
	border-radius: 8px;
}

.tech-benefits--with-image {
	display: flex;
	width: 100%;
	gap: 40px;
	padding: 60px 40px;
	background-color: #f2f2f2;
	border-radius: 8px;
}

.tech-benefits__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.tech-benefits__title {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 26px;
	letter-spacing: 0;
	line-height: 39px;
	margin: 0;
}

.tech-benefits__heading {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	font-size: 26px;
	line-height: 26.2px;
	margin: 0 0 26px 0;
	color: #000000;
}

.tech-benefits__list {
	font-family: 'Inter', Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 17.5px;
	letter-spacing: 0;
	line-height: 26.2px;
	margin: 0;
	list-style: none;
	padding: 0;
	flex: 1;
	counter-reset: benefits-counter;
}

.tech-benefits__list strong {
	font-weight: 700;
}

.tech-benefits__list--right {
	width: 500px;
	flex-shrink: 0;
	counter-reset: benefits-counter 5;
}

.tech-benefits__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tech-benefits__item {
	margin-bottom: 26px;
	font-family: 'Inter', Helvetica;
	font-size: 17.5px;
	line-height: 26.2px;
	color: #000000;
	position: relative;
	padding-left: 30px;
}

.tech-benefits__item::before {
	counter-increment: benefits-counter;
	content: counter(benefits-counter) '.';
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: #000000;
}

.tech-benefits__item:last-child {
	margin-bottom: 0;
}

.tech-benefits__item strong {
	display: block;
	margin-bottom: 4px;
	font-weight: 700;
}

.tech-benefits__text,
.tech-benefits__item-text {
	display: block;
}

.tech-benefits__image {
	flex: 1;
	width: 40%;
	min-height: 400px;
	object-fit: cover;
	border-radius: 8px;
}

/* ========================================
   BOTTOM IMAGE
   ======================================== */

.tech-content__bottom-image {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 8px;
}

/* ========================================
   TECHNOLOGY SHOWCASE
   ======================================== */

.tech-showcase {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 45px;
}

.tech-showcase__image {
	width: 40%;
	height: 670px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

.tech-showcase__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	flex: 1;
	min-width: 0;
}

.tech-showcase__logo {
	width: 100%;
	max-width: 413px;
	height: auto;
	object-fit: cover;
	flex-shrink: 0;
}

/* ========================================
   TECHNICAL FEATURES SECTION
   ======================================== */

.tech-features {
	width: 100%;
	background-color: #f2f2f2;
	padding: 60px 40px;
	border-radius: 8px;
	margin-top: 60px;
}

.tech-features__title {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 26px;
	letter-spacing: 0;
	line-height: 39px;
	text-align: center;
	margin: 0 0 60px 0;
}

.tech-features__grid {
	display: flex;
	gap: 40px;
	width: 100%;
	justify-content: space-between;
}

.tech-features__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	min-width: 280px;
}

.tech-features__description {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 8px;
}

.tech-features__subtitle {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 17.5px;
	line-height: 26.2px;
	margin: 0;
}

.tech-features__text {
	font-family: 'Inter', Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 17.5px;
	line-height: 26.2px;
	margin: 0;
}

/* ========================================
   EXPLORE SECTION
   ======================================== */

.tech-explore {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tech-explore__text {
	width: 100%;
	max-width: 774px;
}

.tech-explore__heading {
	font-family: 'Inter', Helvetica;
	font-weight: 700;
	color: #000000;
	font-size: 26px;
	line-height: 26.2px;
	margin: 0 0 8px 0;
}

.tech-explore__paragraph {
	font-family: 'Inter', Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 17.5px;
	line-height: 26.2px;
	margin: 0;
}

.tech-explore__paragraph strong {
	font-weight: 700;
}

.tech-explore__gallery {
	display: flex;
	gap: 28px;
	width: 100%;
}

.tech-explore__image {
	flex: 1;
	height: 260px;
	object-fit: cover;
	border-radius: 8px;
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */

.tech-products {
	display: flex;
	flex-direction: column;
	align-self: center;
	width: 95%;
	margin: 60px auto 0;
	align-items: center;
	gap: 47px;
	padding: 60px 0;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	position: relative;
	z-index: 3;
}

.tech-products__title {
	font-family: 'Inter', Helvetica;
	font-weight: 600;
	color: #ffffff;
	font-size: 48px;
	text-align: center;
	letter-spacing: -0.96px;
	line-height: normal;
	margin: 0;
	width: 100%;
}

.tech-products__grid {
	display: flex;
	gap: 20px;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 40px;
}

.tech-products__item {
	display: flex;
	flex-direction: column;
	width: calc(25% - 15px);
	min-width: 280px;
	gap: 12px;
	text-decoration: none;
}

.tech-products__image {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

.tech-products__name {
	font-family: 'Trim-Bold', Helvetica;
	font-weight: 700;
	color: #ffffff;
	font-size: 18px;
	line-height: 27px;
	margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
	.tech-hero__title {
		font-size: 32px;
		line-height: 48px;
		padding: 200px 20px 80px;
	}

	.tech-hero__title-sub {
		font-size: 20px;
		line-height: 30px;
	}

	.tech-hero__title-body,
	.tech-hero__title-body--bold {
		font-size: 14px;
		line-height: 21px;
	}

	.tech-page__content-wrapper {
		padding: 20px 20px;
		gap: 40px;
		max-width: 100%;
		border-radius: 0;
	}

	.tech-page__content-wrapper--no-products {
		margin-bottom: 80px;
	}

	.tech-feature {
		flex-direction: column;
		gap: 40px;
	}

	.tech-feature__description,
	.tech-overview__text,
	.tech-benefits__list,
	.tech-overview__heading,
	.tech-overview__list-item,
	.tech-explore__heading,
	.tech-explore__paragraph,
	.tech-features__subtitle,
	.tech-features__text {
		font-size: 16px;
		line-height: 24px;
	}

	.tech-gallery__main {
		width: 100%;
		height: 400px;
	}

	.tech-gallery__grid {
		gap: 20px;
		width: 100%;
	}

	.tech-gallery__item {
		width: 100%;
		height: 200px;
	}

	.tech-overview {
		flex-direction: column;
		gap: 30px;
	}

	.tech-overview__image {
		width: 100%;
		height: auto;
	}

	.tech-showcase {
		flex-direction: column;
		gap: 30px;
	}

	.tech-showcase__image {
		width: 100%;
		height: 300px;
	}

	.tech-showcase__logo {
		width: 280px;
		height: auto;
	}

	.tech-benefits,
	.tech-benefits--split,
	.tech-benefits--with-image {
		flex-direction: column;
		gap: 30px;
		padding: 30px 20px;
	}

	.tech-benefits__title {
		font-size: 22px;
		line-height: 33px;
	}

	.tech-benefits__list,
	.tech-benefits__list--right {
		width: 100%;
	}

	.tech-benefits__item {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.tech-benefits__image {
		width: 100%;
		height: 300px;
	}

	.tech-content__bottom-image {
		height: 300px;
	}

	.tech-features {
		padding: 30px 20px;
	}

	.tech-features__grid {
		flex-direction: column;
		gap: 40px;
	}

	.tech-features__item {
		width: 100%;
	}

	.tech-explore__gallery {
		flex-direction: column;
		gap: 20px;
	}

	.tech-explore__image {
		width: 100%;
	}

	.tech-products {
		width: 100%;
		padding: 40px 20px;
		margin-top: 40px;
		border-radius: 0;
	}

	.tech-products__title {
		font-size: 36px;
	}

	.tech-products__grid {
		flex-direction: column;
		align-items: center;
		padding: 0 20px;
	}

	.tech-products__item {
		width: 100%;
		max-width: 350px;
	}

	/* Reduce hero spacing on mobile */
	.tech-hero__title--complex .tech-hero__title-main {
		margin-bottom: 16px;
	}

	.tech-hero__title--complex .tech-hero__title-sub {
		margin-bottom: 30px;
	}

	.tech-hero__title--complex .tech-hero__title-body--paragraph {
		margin-bottom: 30px;
	}

	.tech-feature__section {
		margin-bottom: 20px;
	}

	.tech-benefits__heading {
		margin-bottom: 20px;
	}

	.tech-feature__link {
		margin: 20px 0 0 0;
	}

	.tech-overview__paragraph--spaced {
		margin-top: 20px;
	}
}

@media (max-width: 480px) {
	.tech-hero__title {
		font-size: 28px;
		line-height: 42px;
	}

	.tech-feature__description,
	.tech-overview__text,
	.tech-benefits__list,
	.tech-overview__heading,
	.tech-overview__list-item,
	.tech-explore__heading,
	.tech-explore__paragraph,
	.tech-features__subtitle,
	.tech-features__text {
		font-size: 14px;
		line-height: 21px;
	}

	.tech-benefits__title,
	.tech-features__title {
		font-size: 20px;
	}

	.tech-benefits__item {
		font-size: 14px;
		line-height: 21px;
		margin-bottom: 16px;
	}

	.tech-showcase__logo {
		width: 240px;
	}

	/* Further reduce hero spacing */
	.tech-hero__title--complex .tech-hero__title-main {
		margin-bottom: 12px;
	}

	.tech-hero__title--complex .tech-hero__title-sub {
		margin-bottom: 24px;
	}

	.tech-hero__title--complex .tech-hero__title-body--paragraph {
		margin-bottom: 24px;
	}

	.tech-feature__section {
		margin-bottom: 16px;
	}

	.tech-benefits__heading {
		margin-bottom: 16px;
	}

	.tech-feature__link {
		margin: 16px 0 0 0;
	}

	.tech-overview__paragraph--spaced {
		margin-top: 16px;
	}
}
