:root {
	/* Colors */
	--color-brand-red: #B2133E;
	--color-brand-orange: #E96830;
	--color-brand-rgb: 233, 104, 48;
	--color-gradient-red: linear-gradient(255.77deg, #E5304E 4.88%, #B2133E 45.64%, #E98A30 86.41%);
	--color-gradient-light: linear-gradient(180deg, #F5F5F5 0%, #fff 100%);
	--color-bg-light: #F5F5F5;
	--color-bg-white: #fff;
	--color-text-primary: #000;
	--color-text-secondary: #666;
	--color-footer-bg: #f8f8f8;

	/* Spacing */
	--spacing-4xl: 4rem;
	--spacing-3xl: 3.5rem;
	--spacing-2xl: 2.5rem;
	--spacing-xl: 2rem;
	--spacing-lg: 1.5rem;
	--spacing-md: 0.75rem;
	--spacing-section: 4rem;

	/* Layout */
	--width-container: 1090px;
	--width-container-large: 1312px;
	--border-radius-sm: 4px;
	--border-radius-md: 6px;
	--border-radius-lg: 20px;

	/* Typography */
	--font-size-base: 1.06rem;
	--font-size-xl: 3.5rem;
	--font-size-lg: 2.5rem;
	--font-size-md: 2rem;
	--font-size-sm: 1.5rem;

	/* Shadows */
	--shadow-light: 0px 0px 1px 1px #00000014;
	--shadow-brand: 0px 0px 1px 1px #00000009, 0px 8px 32px 0px rgba(var(--color-brand-rgb), 0.32);
	--shadow-dark: 0px 0px 1px 1px #00000029, 0px 4px 32px 0px #8080801F;
}

/* Font Declarations */
@font-face {
	font-family: 'Museo Sans';
	src: url('../fonts/MuseoSans_700-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Museo Sans';
	src: url('../fonts/MuseoSans_500-webfont.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Museo Sans';
	src: url('../fonts/MuseoSans_300-webfont.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Museo';
	src: url('../fonts/Museo300-Regular-webfont.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Museo';
	src: url('../fonts/Museo500-Regular-webfont.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Museo';
	src: url('../fonts/Museo700-Regular-webfont.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

/* Base Styles */
* {
	box-sizing: border-box;
}

body {
	background: var(--color-bg-white);
	color: var(--color-text-primary);
	font-family: 'Museo Sans';
	font-size: var(--font-size-base);
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

/* Layout Containers */
.wrapper {
	max-width: var(--width-container);
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
}

.wrapper-big {
	max-width: var(--width-container-large);
	margin: 0 auto;
}

section {
	margin: var(--spacing-section) 0;
}

/* Utility Classes */
.center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

/* Card Styles */
.card-style {
	border: 2px solid white;
	border-radius: var(--border-radius-lg);
}

.gradient-background {
	background: var(--color-gradient-light);
}

.light-background {
	background: var(--color-bg-light);
}

.light-gradient-background {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 79.81%, rgba(0, 0, 0, 0.2) 100%),
		var(--color-bg-light);
}

/* Shadow Styles */
.shadow-gradient-color {
	box-shadow: 0px 0px 1px 1px #00000014,
		0px 4px 32px 0px rgba(var(--color-brand-rgb), 0.12);
}

.shadow-gradient-dark {
	box-shadow: 0px 0px 1px 1px #00000029,
		0px 4px 32px 0px #8080801F;
}

.shadow-dark {
	box-shadow: var(--shadow-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
	font-family: 'Museo';
	font-weight: 500;
	line-height: 1.2;
	margin-top: 0;
	word-wrap: break-word;
}

h1 {
	font-size: var(--font-size-xl);
	text-align: center;
	background: var(--color-gradient-red);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 2rem;
}

h2 {
	font-size: var(--font-size-lg);
	margin-bottom: 1rem;
}

h3 {
	font-size: var(--font-size-md);
	margin-bottom: 0.75rem;
}

h4 {
	font-size: var(--font-size-sm);
	margin-bottom: var(--spacing-lg);
	text-align: center;
}

h5 {
	font-size: var(--font-size-base);
	margin-bottom: var(--spacing-md);
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-weight: 300;
	font-size: var(--font-size-base);
	font-family: 'Museo Sans';
}

.subtitle {
	font-family: 'Museo Sans';
	font-weight: 300;
}

/* Links and Buttons */
a {
	color: var(--color-brand-red);
	text-decoration: underline;
	transition: all 0.2s ease;
}

a:hover {
	color: var(--color-brand-red);
}

.button {
	display: inline-block;
	background: var(--color-bg-white);
	color: var(--color-text-primary);
	padding: 0.55rem 2rem;
	border-radius: var(--border-radius-sm);
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
	text-decoration: none;
	text-align: center;
}

.button.shadow {
	box-shadow: var(--shadow-brand);
}

.button:hover {
	background: var(--color-brand-red);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.button.outline {
	background: transparent;
	border: 2px solid transparent;
	border-radius: var(--border-radius-sm);
	background-image: linear-gradient(white, white), var(--color-gradient-red);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	color: var(--color-brand-red);
}

.button.outline:hover {
	background: white;
	color: var(--color-brand-orange);
	box-shadow: 0px 0px 1px 1px #00000014,
		0px 4px 32px 0px rgba(var(--color-brand-rgb), 0.12);
}

/* Header & Navigation */
header {
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	background: white;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 32px;
	width: auto;
}

nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: var(--spacing-2xl);
	margin-left: auto;
}

nav a {
	cursor: pointer;
	color: var(--color-brand-red);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--font-size-base);
}

nav a:hover {
	color: var(--color-brand-orange);
}

nav {
	width: 100%;
	display: flex;
	align-items: center;
}

.nav-left {
	width: 100%;
	display: flex;
	align-items: center;
}

.nav-menu {
	margin-left: auto;
	display: none;
}

/* Hero Section */
.hero {
	padding: 5rem 0;
}

/* Product One Section */
.product-one {
	text-align: center;
}

.product-one .subtitle {
	max-width: 600px;
	margin: 0 auto 2rem;
}

.product-showcase {
	display: flex;
	flex-direction: row;
	gap: var(--spacing-xl);
	margin-top: var(--spacing-xl);
	align-items: center;
	height: 520px;
	overflow: hidden;
}

.product-showcase .product-image {
	max-width: 100%;
	width: 50%;
	height: 100%;
	position: relative;
}

.product-showcase .product-image img {
	width: 160%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: -33%;
}

.product-features {
	text-align: left;
	padding: 2rem;
	margin-left: var(--spacing-lg);
}

.product-features h3 {
	margin-bottom: 1.5rem;
}

/* Product Line Section */
.product-line {
	padding: 4rem 0;
}

.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.product-card .product-image {
	width: 100%;
	height: 400px;
	margin-bottom: 1.5rem;
}

.product-card .product-image img {
	max-width: 100%;
	height: 100%;
	width: auto;
	object-fit: contain;
}

.product-badge {
	background: var(--color-gradient-red);
	color: white;
	padding: 0.33rem 0.6rem;
	border-radius: 3px;
	font-size: 0.8rem;
	font-weight: 500;
	font-family: 'Museo Sans';
	text-transform: uppercase;
	margin-right: 0.5rem;
}

.product-card p {
	color: var(--color-text-primary);
	margin-bottom: 1.5rem;
	font-weight: 300;
}

/* Carousel Section */
.carousel-section {
	padding: 3rem 0;
}

.carousel-wrapper {
	height: 560px;
	overflow: hidden;
	position: relative;
}

.carousel {
	height: 100%;
	overflow-y: hidden;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
	display: none;
}

.carousel-image-container {
	width: max-content;
	height: 100%;
	gap: var(--spacing-xl);
	display: flex;
	align-items: flex-start;
}

.carousel img {
	box-sizing: border-box;
	scroll-snap-align: center;
	border-radius: var(--border-radius-md);
	object-fit: cover;
}

.carousel-controls {
	position: absolute;
	bottom: 1.8rem;
	transform: translateX(-50%);
	left: 50%;
	z-index: 10;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}

.carousel-button {
	width: 24px;
	height: 24px;
	background: #FFFFFF80;
	border: 1px solid #FFFFFF;
	box-shadow: 0px 2px 4px 0px #0000001F;
	border-radius: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.carousel-button img {
	width: 8px;
	height: 14px;
	transform: translateX(1px);
	object-fit: contain;
}

.carousel-button.right {
	margin-left: 0.75rem;
}

.carousel-button.left {
	margin-right: 0.75rem;
}

.carousel-button.left img {
	transform: translateX(-1px);
}

.carousel-indicator-container {
	gap: var(--spacing-md);
}

.carousel-indicator {
	position: relative;
	cursor: pointer;
	background: #FFFFFF80;
	border: 1px solid var(--color-bg-white);
	border-radius: 24px;
	width: 8px;
	height: 8px;
	transition: all 0.2s ease;
	box-shadow: 0px 2px 4px 0px #0000001F;
}

/* Indicator Styling for timed carousel */
/* .carousel-indicator::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2px;
	width: 0%;
	height: 60%;
	background: var(--color-bg-white);
	border-radius: 24px;
	transition: all 0.2s ease;
}

.carousel-indicator:hover,
.carousel-indicator.active {
	width: 24px;
}

.carousel-indicator.active::after {
	width: 60%;
} */

.carousel-indicator:hover,
.carousel-indicator.active {
	width: 14px;
	height: 14px;
}


/* Vision and Action Section */
.features-section h2 {
	margin-bottom: 1.5rem;
}

.software-showcase {
	width: 100%;
	height: 560px;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: var(--spacing-section);
}

.software-showcase img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Features Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	text-align: center;
	border-radius: var(--border-radius-lg);
	background: #FFFFFF33;
	border: 4px solid #FFFFFF;
	overflow: hidden;
}

.feature-card img {
	width: 100%;
	height: 256px;
	object-fit: cover;
	margin-bottom: var(--spacing-xl);
	border-radius: var(--border-radius-lg);
}

.feature-card .spacer {
	height: 2px;
	width: 22px;
	background: var(--color-gradient-red);
	margin-bottom: var(--spacing-lg);
}

.feature-content {
	padding: 0 var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.feature-card p {
	text-align: left;
}

/* Partner Section */
.partner {
	padding: 3rem 0;
	text-align: center;
}

.partner .button {
	margin-bottom: var(--spacing-2xl);
}

/* Newsletter Section */
.newsletter-section {
	color: white;
	padding: var(--spacing-xl) 0;
}

.newsletter-content {
	background: var(--color-gradient-red);
	padding: var(--spacing-xl);
	border-radius: var(--border-radius-lg);
}

.newsletter-content iframe {
	height: 410px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: 100%;
	border: none;
}

.newsletter-section h3 {
	margin-bottom: var(--spacing-xl);
}

.newsletter-section p {
	margin-bottom: var(--spacing-2xl);
}

.newsletter-form {
	display: flex;
	gap: var(--spacing-xl);
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: var(--border-radius-sm);
	font-family: inherit;
	font-size: 1rem;
	max-width: 384px;
}

.newsletter-form button {
	font-size: var(--font-size-base);
	background: white;
	border: none;
	border-radius: var(--border-radius-sm);
	padding: 0 1.5rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.newsletter-form button:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer-content {
	background: var(--color-footer-bg);
	padding: var(--spacing-4xl) var(--spacing-3xl) var(--spacing-xl);
	border-radius: var(--border-radius-lg);
	margin-bottom: var(--spacing-2xl);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: var(--spacing-2xl);
}

.footer-company,
.footer-location,
.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-location p {
	color: var(--color-text-secondary);
	margin: 0;
}

.copyright {
	color: var(--color-text-secondary);
	font-size: 0.8rem;
	padding: 0;
	margin: 0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
	.products-grid {
		grid-template-columns: 1fr;
	}

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

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

	.products-grid {
		gap: 4rem;
	}

	.carousel-image-container {
		align-items: center;
	}

	.product-showcase {
		height: 620px;
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.product-showcase .product-image {
		width: 100%;
	}

	.product-showcase .product-image img {
		width: 80%;
		height: auto;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	:root {
		--spacing-section: 8rem;
		--spacing-xl: 2rem;
		--spacing-lg: 1.2rem;
		--font-size-xl: 2.5rem;
		--font-size-lg: 2rem;
		--font-size-md: 1.5rem;
		--font-size-sm: 1.06rem;
	}

	h1 {
		font-size: var(--font-size-xl);
	}

	h4 {
		font-size: var(--font-size-md);
	}

	.navbar a:not(.nav-menu):not(.logo a) {
		display: none;
	}

	.nav-menu {
		display: block;
	}

	.navbar.active ul {
		margin: 0;
		width: 100%;
	}

	.navbar ul {
		width: 0;
	}

	.navbar.active a:not(.nav-menu):not(.logo a) {
		display: block;
	}

	.navbar.active {
		position: relative;
		flex-direction: column;
		align-items: flex-start;
	}

	.navbar.active a:not(.nav-menu):not(.logo a) {
		display: block;
		margin: 0.75rem 0;
	}

	.navbar.active ul {
		flex-direction: column;
	}

	.navbar.active li:first-child {
		margin-top: 1.5rem;
	}

	.navbar.active {
		position: relative;
		flex-direction: column;
		align-items: flex-start;
	}

	.navbar.active .nav-left {
		width: 100%;
		margin-bottom: 0;
	}

	.navbar.active ul {
		flex-direction: column;
		width: 100%;
		margin-top: 1.5rem;
		display: flex;
	}

	.navbar.active li:first-child {
		margin-top: 0;
	}

	.wrapper-big {
		max-width: var(--width-container);
		padding: 0 var(--spacing-lg);
	}

	.hero {
		padding: 3rem 0;
	}

	.carousel-section {
		padding: 0;
	}

	.product-line {
		padding: 0;
	}

	.newsletter-content {
		padding: 3.5rem 2.5rem;
	}

	.footer-content {
		padding: 3.5rem 2rem 2rem;
	}

	.product-showcase .product-image img {
		width: 100%;
	}

	.product-features {
		margin: 0 7.7rem;
	}

	.newsletter-content iframe {
		height: 500px;
	}
}

@media (max-width: 576px) {
	:root {
		--spacing-section: 8rem;
		--spacing-xl: 1.5rem;
		--spacing-lg: 1rem;
		--width-container: 100%;
	}

	.wrapper {
		padding: 0 1rem;
	}

	.product-features {
		width: 100%;
		padding: 4rem 2rem 1.5rem;
		margin: 0;
	}

	.product-features .button {
		width: 100%;
	}

	.newsletter-content {
		padding: 3.5rem 1.5rem;
	}

	.newsletter-form {
		flex-direction: column;
	}

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

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.footer-content {
		padding: 3.5rem 4rem 1.5rem;
	}

	nav ul {
		gap: 1rem;
	}

	.hero {
		padding: 2rem 0;
	}

	.software-showcase {
		height: 380px;
	}

	.software-showcase img {
		height: 80%;
		width: auto;
	}


	.product-showcase {
		height: 507px;
	}

	.newsletter-content iframe {
		height: 580px;
	}
}

.legal-info h1 {
	font-size: 2em;
}

.legal-info h2 {
	font-size: 1.5em;
}

.legal-info h3 {
	font-size: 1.17em;
}

.legal-info h4 {
	font-size: 1em;
}

.legal-info h5 {
	font-size: 0.83em;
}

.legal-info h6 {
	font-size: 0.67em;
}
