:root {
	--primary-blue: #0796e8;
	--platform-blue: #0796e8;
	--footer-blue: #0083c9;
	--primary-white: #ffffff;
	--light-gray: #f8f9fa;
	--medium-gray: #e9ecef;
	--dark-gray: #343a40;
	--text-color: #333;

	/* Responsive Typographic Scale (Desktop First) */
	--fs-h1: 3rem;      /* ~48px */
	--fs-h2: 2.25rem;   /* ~36px */
	--fs-h3: 1.75rem;   /* ~28px */
	--fs-h4: 1.25rem;   /* ~20px */
	--fs-h5: 1.125rem;  /* ~18px */
	--fs-h6: 1rem;      /* ~16px */
	--fs-body: 1rem;    /* ~16px */
}

/* ===== REUSABLE UTILITY CLASSES ===== */
.section-padding {
    padding: 4.375rem 0; /* 70px */
}

.section-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2.5rem; /* 40px */
    text-align: center;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-column { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	/* Base font size for rem calculations (16px = 1rem) */
	font-size: 16px;
}

body {
	font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-color); background-color: #ffffff;
	padding-top: 8.4375rem; /* 135px / 16 = 8.4375rem */
	font-size: var(--fs-body);
    
    transition: padding-bottom 0.4s ease-in-out;
}

address { font-style: normal; line-height: 1.7; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 700;
	line-height: 1.2;
	color: var(--dark-gray);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
	margin: 0 0 1em 0;
	line-height: 1.6;
	text-align: left;
}

a { /* Style links in the footer to match text color */
	color: inherit;
	text-decoration: none; /* Remove underline by default */
}
a:hover {
	text-decoration: underline; /* Add underline on hover */
}

.no-wrap { white-space: nowrap; }
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; } /* 1280px = 80rem, 20px = 1.25rem */

/* Header Section */
header {
	padding: 0;
	border-bottom: 0.0625rem solid #e0e0e0; /* 1px = 0.0625rem */
	background-color: var(--primary-white);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1); /* 2px = 0.125rem, 10px = 0.625rem */
	height: 8.4375rem; /* 135px = 8.4375rem */

	& .header-top {
		background-color: var(--primary-blue);
		color: white;
		padding: 0.5rem 0; /* 8px = 0.5rem */
		font-size: 0.9rem;

		& .header-top-content {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		& .header-contact-info {
			display: flex;
			gap: 1.875rem; /* 30px = 1.875rem */
			align-items: center;
		}

		& .header-user-login {
			display: flex;
			align-items: center;
		}

		& .contact-item,
		& .user-login-item {
			display: flex;
			align-items: center;
			gap: 0.5rem; /* 8px = 0.5rem */
		}

		& .contact-item i,
		& .user-login-item i {
			font-size: 1rem;
		}

		& .contact-item a,
		& .user-login-item a {
			color: white;
			text-decoration: none;
			transition: color 0.3s ease;
		}

		& .contact-item a:hover,
		& .user-login-item a:hover {
			color: #cceaff;
			text-decoration: none;
		}
	}

	& .header-bottom {
		background-color: var(--primary-white);
		height: 6.25rem; /* 100px = 6.25rem */
		display: flex;
		align-items: center;
	}

	& .header-container {
		max-width: 80rem; /* 1280px = 80rem */
		margin: 0 auto;
		padding: 0 1.25rem; /* 20px = 1.25rem */
		height: 6.25rem; /* 100px = 6.25rem */
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	& .logo-img {
		height: 4.375rem; /* 70px = 4.375rem */
	}

	& nav {
		& ul {
			list-style: none;
			display: flex;
			gap: 1.5625rem; /* 25px = 1.5625rem */
			align-items: center;
		}

		& a {
			text-decoration: none;
			color: var(--dark-gray);
			font-weight: 500;
			position: relative;

			&:hover {
				color: var(--primary-blue);
				text-decoration: none;
			}

			&:not(.dropdown-toggle)::after {
				content: '';
				position: absolute;
				width: 0;
				height: 0.125rem; /* 2px = 0.125rem */
				bottom: -0.3125rem; /* -5px = -0.3125rem */
				left: 0;
				background-color: var(--primary-blue);
				transition: width 0.3s;
			}

			&:not(.dropdown-toggle):hover::after {
				width: 100%;
			}
		}
	}

	& .mobile-nav-toggle {
		display: none;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		z-index: 1001;

		& > i {
			pointer-events: none;
		}

		& .icon-close {
			display: none;
		}

		&[aria-expanded="true"] {
			& .icon-hamburger {
				display: none;
			}

			& .icon-close {
				display: block;
			}
		}
	}

	& .dropdown {
		position: relative;
		padding-bottom: 1.25rem; /* 20px = 1.25rem */
		margin-bottom: -1.25rem; /* -20px = -1.25rem */

		&:hover {
			& .dropdown-menu {
				display: block;
			}
		}
	}

	& .dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		background-color: white;
		box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1); /* 5px = 0.3125rem, 15px = 0.9375rem */
		border-radius: 0.5rem; /* 8px = 0.5rem */
		list-style: none;
		padding: 0.625rem 0; /* 10px = 0.625rem */
		margin-top: 0;
		min-width: 11.25rem; /* 180px = 11.25rem */
		z-index: 1000;

		& a {
			display: block;
			padding: 0.5rem 1.25rem; /* 8px = 0.5rem, 20px = 1.25rem */
			white-space: nowrap;

			&:hover {
				background-color: var(--primary-blue);
				color: white;
				text-decoration: none;
			}
		}
	}
}

/* Disable Bootstrap form validation tooltips */
.was-validated .form-control:invalid, .form-control.is-invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}


/* Remove Bootstrap validation styles that conflict with your design */
.form-group-float input:focus,
.form-group-float select:focus,
.form-group-float textarea:focus {
    box-shadow: 0 0 0 0.25rem rgba(7, 150, 232, 0.25) !important;
    border-color: var(--primary-blue) !important;
}

/* HP selector */
form > input:nth-of-type(1),
form > input:nth-of-type(2) {
	position: absolute;
	left: -9999px;
}

/* Hero Section */
.hero-section {
	background-color: var(--light-gray);
	display: flex;
	align-items: center;
	min-height: calc(100vh - 6.25rem); /* 100px = 6.25rem */
	padding: 1.25rem 0; /* 20px = 1.25rem */

	& .hero-container {
		display: flex;
		align-items: center;
		gap: 2.5rem; /* 40px = 2.5rem */
	}

	& .hero-text {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 1.25rem; /* 20px = 1.25rem */
		
		& h1 {
			line-height: 1.4;
			margin: 0;
			font-size: var(--fs-h1); /* Use variable for consistency */
			font-weight: 400;
			text-align: left;

			& strong {
				font-weight: 800;
			}
		}

		& .tagline {
			font-size: 1.5rem;
			color: var(--primary-blue);
			font-weight: 700;
			margin: 0;
			text-align: left;
		}

	& .btn {
		align-self: flex-start;
	}
}

& .hero-form {
	flex: 1;
		padding: 1.5625rem;
	border: 0.125rem solid var(--primary-blue); /* 2px = 0.125rem */
	border-radius: 0.9375rem; /* 15px = 0.9375rem */
	box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.05); /* 10px = 0.625rem, 25px = 1.5625rem */
	background-color: white;

	& h3 {
		margin: 0 0 0.625rem 0; /* 10px = 0.625rem */
		font-weight: 700;
		font-size: var(--fs-h3); /* Align with H3 scale */
	}

	& p {
		margin: 0 0 1.25rem 0; /* 20px = 1.25rem */
		color: #666;
		line-height: 1.5;
		font-size: 1rem;
	}
}

& .checkbox-group {
	display: flex;
	align-items: center;
	gap: 0.625rem; /* 10px = 0.625rem */
	font-size: 0.9rem;
	color: #4a5568;
	margin-bottom: 0.9375rem; /* 15px = 0.9375rem */

	& input[type="checkbox"] {
		width: auto;
		margin: 0;
	}
}

& .form-actions {
	text-align: center;
	margin-top: 0.9375rem; /* 15px = 0.9375rem */
}

}

/* Global Form Styles - Applied to all forms including modal */
.form-group-float {
	position: relative;
	margin-bottom: 0.625rem; /* 10px = 0.625rem */
}

.form-group-float input,
.form-group-float select,
.form-group-float textarea {
	width: 100%;
	padding: 0.625rem 0.75rem; /* 10px = 0.625rem, 12px = 0.75rem */
	border: 0.0625rem solid #999; /* 1px = 0.0625rem */
	border-radius: 0.25rem; /* 4px = 0.25rem */
	font-size: 1rem;
	font-family: 'Raleway', sans-serif;
	box-sizing: border-box;
}

.form-group-float input:focus,
.form-group-float select:focus,
.form-group-float textarea:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 0.25rem rgba(7, 150, 232, 0.25);
	outline: none;
}

.form-group-float input::placeholder,
.form-group-float textarea::placeholder {
	color: transparent;
}

.form-group-float label {
	position: absolute;
	top: 50%;
	left: 0.75rem; /* 12px = 0.75rem */
	transform: translateY(-50%);
	color: #999;
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
}

.form-group-float label[for="enq-phone"] {
	left: 5.9375rem; /* 95px = 5.9375rem */
}

.form-group-float label[for="partner-phone"] {
	left: 5.9375rem; /* 95px = 5.9375rem */
}

.form-group-float label[for="phone"] {
	left: 5.9375rem; /* 95px = 5.9375rem */
}

.form-group-float.is-focused > label,
.form-group-float.is-filled > label,
.form-group-float input:focus + label,
.form-group-float input:not(:placeholder-shown) + label,
.form-group-float select:not([value=""]):focus + label,
.form-group-float select:not([value=""]) + label,
.form-group-float textarea:focus + label,
.form-group-float textarea:not(:placeholder-shown) + label {
	top: 0;
	left: 0.625rem; /* 10px = 0.625rem */
	font-size: 0.75rem;
	color: var(--primary-blue);
	background-color: white;
	padding: 0 0.3125rem; /* 5px = 0.3125rem */
	transform: translateY(-50%);
}

.form-group-float.is-focused label[for="enq-phone"],
.form-group-float.is-filled label[for="enq-phone"] {
	left: 0.625rem; /* 10px = 0.625rem */
}

.form-group-float.is-focused label[for="partner-phone"],
.form-group-float.is-filled label[for="partner-phone"] {
	left: 0.625rem; /* 10px = 0.625rem */
}

.form-group-float.is-focused label[for="phone"],
.form-group-float.is-filled label[for="phone"] {
	left: 0.625rem; /* 10px = 0.625rem */
}

.form-group-float textarea + label {
	top: 0.875rem; /* 14px = 0.875rem */
	transform: none;
}

.form-group-float textarea::placeholder {
	color: transparent;
}

.form-group-float select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 0.75rem center; /* 12px = 0.75rem */
	background-repeat: no-repeat;
	background-size: 1rem 0.75rem; /* 16px = 1rem, 12px = 0.75rem */
	color: #999;
}

.form-group-float select:focus,
.form-group-float select:not([value=""]) {
	color: var(--text-color);
}

.form-group-float.error input,
.form-group-float.error .iti__flag-container {
	border-color: #dc3545;
}

.form-group-float.error input[type="url"] {
    border-color: #dc3545;
}

.form-group-float.error input[type="url"]:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
	outline: none;
}

.iti {
	width: 100%;
}

.iti__flag-container {
	height: 100%;
}

input#enq-phone {
	height: 2.625rem; /* 42px = 2.625rem */
	padding-left: 5.9375rem; /* 95px = 5.9375rem */
}

input#phone {
	height: 2.625rem; /* 42px = 2.625rem */
	padding-left: 5.9375rem; /* 95px = 5.9375rem */
}

/* Floating error tooltip bubble */
.field-error-tooltip {
	position: absolute;
	bottom: -2rem; /* Position below the input */
	left: 0;
	background-color: white;
	color: #ffc107;
	font-weight: 700;
	padding: 0.375rem 0.625rem; /* 6px 10px */
	border: 0.125rem solid #ffc107; /* 2px yellow border */
	border-radius: 0.25rem; /* 4px */
	font-size: 0.75rem; /* 12px */
	white-space: nowrap;
	z-index: 1050;
	box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
	pointer-events: none;
	animation: fadeInError 0.2s ease-in-out;
}

.field-error-tooltip::before {
	content: '';
	position: absolute;
	top: -0.25rem; /* -4px */
	left: 0.75rem; /* 12px */
	width: 0;
	height: 0;
	border-left: 0.25rem solid transparent;
	border-right: 0.25rem solid transparent;
	border-bottom: 0.25rem solid #ffc107;
}

@keyframes fadeInError {
	from {
		opacity: 0;
		transform: translateY(-0.25rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Base button styles */
.btn {
	display: inline-block;
	padding: 0.875rem 1.75rem; /* 14px = 0.875rem, 28px = 1.75rem */
	border-radius: 0.75rem;
	text-decoration: none;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	background-image: linear-gradient(145deg, #0796e8 0%, #3B57AA 100%);
	box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1); /* 4px = 0.25rem, 6px = 0.375rem */
	text-align: center;
}
.btn:hover {
	background-image: linear-gradient(145deg, #3B57AA 0%, #0796e8 100%);
	transform: translateY(-0.125rem); /* -2px = -0.125rem */
	box-shadow: 0 0.375rem 0.625rem rgba(0, 0, 0, 0.15); /* 6px = 0.375rem, 10px = 0.625rem */
	text-decoration: none;
}

/* Button variants */
.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Platform Section */
.platform-section {
	background-color: var(--platform-blue);
	color: #ffffff;
	padding: 6.25rem 0; /* 100px = 6.25rem */
	display: flex;
	align-items: center;

	& .platform-container {
		display: flex;
		align-items: center;
		gap: 3.75rem; /* 60px = 3.75rem */
	}

	& .platform-image {
		flex-basis: 50%;
	}

	& .platform-img {
		width: 100%;
		border-radius: 1.25rem; /* 20px = 1.25rem */
		display: block;
		box-shadow: 0 0.3125rem 1.5625rem rgba(0, 0, 0, 0.2); /* 5px = 0.3125rem, 25px = 1.5625rem */
		margin-left: 0;
	}

	& .platform-text {
		flex-basis: 50%;

		& h2 {
			color: #ffffff;
			font-weight: 600;
			font-size: var(--fs-h2); /* Use variable for consistency */
			text-align: left;
		}

		& p {
			font-size: 1.5rem;
			line-height: 1.7;
			margin: 0;
		}
	}
}

/* Modules Section */
.modules-section {
	text-align: center;
}

.modules-section {
	& .features-title {
		font-weight: 700;
		font-size: var(--fs-h3); /* Align with H3 scale */
		color: var(--dark-gray);
		text-align: center;
		margin-top: 5rem; /* 80px = 5rem */
		margin-bottom: 2.5rem; /* 40px = 2.5rem */
	}

	& .module-tabs {
		display: flex;
		justify-content: center;
		margin-top: 1.875rem; /* 30px = 1.875rem */
		margin-bottom: 1.875rem; /* 30px = 1.875rem */
		border-radius: 3.125rem; /* 50px = 3.125rem */
		overflow: hidden;
		width: 100%;
		max-width: 43.75rem; /* 700px = 43.75rem */
		margin-left: auto;
		margin-right: auto;
		border: 0.125rem solid #ccc; /* 2px = 0.125rem */
	}

	& .tab-btn {
		padding: 0.75rem 1.5625rem; /* 12px = 0.75rem, 25px = 1.5625rem */
		border: none;
		border-right: 0.125rem solid #ccc; /* 2px = 0.125rem */
		background-color: white;
		color: #333;
		cursor: pointer;
		font-size: 0.875rem;
		font-weight: 600;
		transition: all 0.3s ease;
		text-transform: uppercase;
		font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		flex: 1 1 0;
		text-align: center;

		&:last-child {
			border-right: none;
		}

		&.active {
			background-image: linear-gradient(145deg, #0796e8 0%, #3B57AA 100%);
			color: #fff;

			&:hover {
				background-image: linear-gradient(145deg, #3B57AA 0%, #0796e8 100%);
			}
		}

		&:hover:not(.active) {
			background-color: #f0f0f0;
		}
	}

	& .module-content {
		display: flex;
		align-items: center;
		gap: 3.75rem; /* 60px = 3.75rem */
		text-align: left;
	}

	& .module-image {
		flex-basis: 40%;
	}

	& .module-text {
		flex-basis: 60%;
	}

	& .module-img {
		width: 100%;
		max-width: 100%;
		border-radius: 1.25rem; /* 20px = 1.25rem */
		box-shadow: 0 0.25rem 0.9375rem rgba(0,0,0,0.1); /* 4px = 0.25rem, 15px = 0.9375rem */
	}

	& .module-content .module-text {
		& h3 {
			font-weight: 800;
			font-size: var(--fs-h2); /* Align with H2 scale */
			margin: 0 0 0.9375rem 0; /* 15px = 0.9375rem */
			line-height: 1.1;

			/* Targets the subheading */
			& + p {
				font-weight: 700;
				font-size: var(--fs-h4);
				margin-bottom: 0.75em;
			}
		}

		& p {
			font-size: 1rem;
			line-height: 1.6;
			color: var(--dark-gray);
			margin-bottom: 1rem;
		}
	}

	& .module-content-panel {
		display: none;

		&.active {
			display: block;
		}
	}
}

/* --- START: CUSTOM GLIDER CSS --- */
.glider-contain {
	border: 0.0625rem solid #ccc; /* 1px = 0.0625rem */
	border-radius: 0.9375rem; /* 15px = 0.9375rem */
	padding: 1.25rem 4.375rem; /* 20px = 1.25rem, 70px = 4.375rem */
	position: relative;
	background-color: white;
	margin-bottom: 2.375rem; /* 38px = 2.375rem - create space for dots placed outside */
	display: flex;           /* center the content vertically */
	align-items: center;     /* center the glider within container */
}

.glider-wrapper {
	overflow: hidden;
	flex: 1 1 auto;         /* allow wrapper to take available space */
}

.glider {
	margin: 0 auto;
	display: flex;
	transition: transform 500ms ease-in-out;
	width: 100%;
	cursor: grab;
}

.glider:active {
	cursor: grabbing;
}

.feature-card {
	text-align: left;
	padding: 0 0.625rem; /* 10px = 0.625rem */
	user-select: none;
	-webkit-user-select: none;
	flex: 0 0 25%;
	min-width: 25%;
	max-width: 25%;
	box-sizing: border-box;
}
.feature-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark-gray);
	margin: 0 0 0.625rem 0; /* 10px = 0.625rem */
	line-height: 1.3;
	white-space: normal;
}
.feature-card p {
	font-size: 0.95rem;
	color: var(--dark-gray);
	line-height: 1.316;
	min-height: 3.75rem; /* 60px = 3.75rem */
	max-height: 3.75rem; /* 60px = 3.75rem */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	/* Fallback for older browsers */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 90%;
	margin: 0; /* remove extra bottom space inside carousel */
}

.glider-prev, .glider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--platform-blue);
	color: white;
	border: none;
	border-radius: 50%;
	width: 2.5rem; /* 40px = 2.5rem */
	height: 2.5rem; /* 40px = 2.5rem */
	font-size: 1rem;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s, background-color 0.2s;
}
.glider-prev:hover, .glider-next:hover {
	background-color: #005f99;
}
.glider-prev {
	left: 1.25rem; /* 20px = 1.25rem */
}
.glider-next {
	right: 1.25rem; /* 20px = 1.25rem */
}
.glider-prev > i, .glider-next > i {
	pointer-events: none;
}

.dots {
	position: absolute;
	left: 50%;
	bottom: -1.75rem; /* -28px = -1.75rem */
	transform: translateX(-50%);
	text-align: center;
	margin-top: 0;
	white-space: nowrap;
}
.dots button {
	background-color: #ccc;
	border: none;
	border-radius: 50%;
	width: 0.75rem; /* 12px = 0.75rem */
	height: 0.75rem; /* 12px = 0.75rem */
	margin: 0 0.3125rem; /* 5px = 0.3125rem */
	cursor: pointer;
	transition: background-color 0.2s;
}
.dots button.active,
.dots button:hover {
	background-color: var(--platform-blue);
}
/* --- END: CUSTOM GLIDER CSS --- */

.glider-prev.disabled,
.glider-next.disabled {
	opacity: 0.35;
	cursor: default;
}

/* Why Choose Section */
.why-choose-section {
	background-color: #e0e0df; /* This is a unique background color */

	& .why-choose-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.875rem 2.5rem; /* 30px = 1.875rem, 40px = 2.5rem */
	}

	& .grid-item {
		text-align: left;

		&:hover {
			& .grid-item-icon {
				transform: translateY(-0.3125rem); /* -5px = -0.3125rem */
			}
		}
	}

	& .grid-item-icon {
		margin-bottom: 0.9375rem; /* 15px = 0.9375rem */
		transition: transform 0.3s ease-out;

		& img {
			width: 3rem; /* 48px = 3rem */
			height: 3rem; /* 48px = 3rem */
		}
	}

	& .grid-item p {
		font-size: 1rem;
		color: var(--dark-gray);
		line-height: 1.6;
		margin: 0;
	}
}


/* Subscription Section */
.subscription-section {
	/* All styles moved to utility classes */

	& .pricing-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(18.75rem, 21.625rem)); /* 300px = 18.75rem, 346px = 21.625rem */
		gap: 1.875rem; /* 30px = 1.875rem */
		max-width: 68.75rem; /* 1100px = 68.75rem */
		margin: 0 auto;
		justify-content: center;
		container-type: inline-size;

		/* Desktop: Center last card when grid shows exactly 2 columns */
		/* 2 cols need 2*346 + 1*30 = 722px, 3 cols need 3*346 + 2*30 = 1098px */
		@container (min-width: 45.125rem) and (max-width: 68.625rem) { /* 722px = 45.125rem, 1098px = 68.625rem */
			& > .plan-card:last-child:nth-child(odd) {
				grid-column: 1 / -1;
				justify-self: center;
				max-width: 21.625rem; /* 346px = 21.625rem */
			}
		}
	}

	& .plan-card {
		width: 100%;
		border-radius: 1.125rem; /* 18px = 1.125rem */
		background-color: #fff;
		padding: 0;
		display: flex;
		flex-direction: column;
		border-width: 0.125rem; /* 2px = 0.125rem */
		border-style: solid;
		overflow: hidden;
		min-height: 23.4375rem; /* 375px = 23.4375rem */
		justify-content: center;

		&.free {
			border-color: #000;
		}

		&.pro {
			border-color: var(--primary-blue);
		}

		&.custom {
			border-color: #7d2897;
		}
	}

	& .plan-header {
		padding: 1.875rem 1.25rem; /* 30px = 1.875rem, 20px = 1.25rem */
		text-align: center;

		&.free-header {
			background-color: #000;
		}

		&.pro-header {
			background-color: var(--primary-blue);
		}

		&.custom-header {
			background-color: #7d2897;
		}
	}

	& .plan-title {
		font-weight: 800;
		font-size: 1.5rem;
		color: #fff;
		margin: 0;
	}

	& .plan-body {
		padding: 1.875rem; /* 30px = 1.875rem */
		display: flex;
		flex-direction: column;
		gap: 1.25rem; /* 20px = 1.25rem */
		flex-grow: 1;
	}

	& .plan-desc {
		margin: 0;
		line-height: 1.6;
		font-size: 1rem;
		color: var(--text-color);

		& strong {
			font-weight: 800;
		}
	}

	& .plan-actions {
		margin-top: auto;
		padding: 0 1.875rem 1.875rem 1.875rem; /* 30px = 1.875rem */
	}

	& .plan-actions .btn {
		display: block;
		width: 100%;
	}
}

/* Clients Section */
.clients-section {
	/* All styles moved to utility classes */

	& .clients-logos {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.875rem; /* 30px = 1.875rem */
		margin-top: 1.25rem; /* 20px = 1.25rem */
	}

	& .client-box {
		border: 0.0625rem solid #ccc; /* 1px = 0.0625rem */
		border-radius: 0.9375rem; /* 15px = 0.9375rem */
		padding: 1.5625rem; /* 25px = 1.5625rem */
		height: 10rem; /* 160px = 10rem */
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: white;

		& img {
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
			height: auto;
			filter: none;
		}

		/* Increase size of firstshield logo specifically */
		&:first-child {
			& img {
				transform: scale(1.2);
			}
		}
	}
}

/* Footer Section */
footer {
    font-size: 1rem;
}

footer .footer-top {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 2.5rem 0; /* 40px = 2.5rem */
}

footer .footer-top a {
    color: white;
}

footer .footer-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Align first section (address) to the left */
footer .footer-top-section:first-child {
    flex: 1;
    text-align: left;
}

/* Align second section (URL) to the center */
footer .footer-top-section:nth-child(2) {
    flex: 1;
    /* The text-align: center here is overridden by the global p { text-align: left; } rule. */
}

/* Explicitly center the content of the paragraph within the second section */
footer .footer-top-section:nth-child(2) p {
    text-align: center;
}

/* Align third section (contact) to the right */
footer .footer-top-section:last-child {
    flex: 1;
    text-align: right;
}

footer .footer-contact-block {
    display: inline-block;
    text-align: right; /* Keeps content right-aligned within the block */
}

footer .footer-bottom {
    background-color: var(--primary-white);
    padding: 1.5625rem 0; /* 25px = 1.5625rem */
    border-top: 0.0625rem solid #e9ecef; /* 1px = 0.0625rem */
}

footer .footer-bottom-container {
    display: flex;
    justify-content: center; /* Centers the .footer-grid if it's narrower */
}

footer .footer-grid {
    display: flex; /* Keeps items in a row */
    justify-content: space-between; /* Spreads items out */
    align-items: center;
    width: 100%; /* Takes full width of container */
    color: #6c757d;
}

footer .footer-grid a {
    color: inherit;
    text-decoration: none;
}

footer .footer-grid a:hover {
    text-decoration: underline;
}

footer .footer-grid p {
    margin: 0; /* Removes default paragraph margin */
}

/* Specific alignment for bottom footer grid items */
footer .footer-left,
footer .footer-center,
footer .footer-right {
    flex: 1;
}

footer .footer-left { text-align: left; }
footer .footer-center { text-align: center; }
footer .footer-right { text-align: right; }

@media (max-width: 61.9375rem) { /* 991px = 61.9375rem */
	:root {
		--fs-h1: 2.25rem;
		--fs-h2: 1.75rem;
		--fs-h3: 1.35rem;
		--fs-h4: 1rem; /* Mobile H4 size */
	}

	.section-padding {
        padding: 3.75rem 0; /* 60px */
    }

    /* Use utility classes in mobile overrides */
    .text-center-mobile { text-align: center !important; }


	html, body { overflow-x: hidden; }

	body {
		padding-top: 8.4375rem; /* 135px = 8.4375rem */
	}

	/* Header Section */
	header {
		height: 8.4375rem; /* 135px = 8.4375rem */

		& .header-top {
			font-size: 0.8rem;
			padding: 0.375rem 0; /* 6px = 0.375rem */

			& .header-top-content {
				flex-direction: column;
				gap: 0.625rem; /* 10px = 0.625rem */
				text-align: center;
			}

			& .header-contact-info {
				flex-direction: column;
				gap: 0.9375rem; /* 15px = 0.9375rem */
				justify-content: center;
			}

			& .header-user-login {
				justify-content: center;
			}

			& .contact-item,
			& .user-login-item {
				gap: 0.375rem; /* 6px = 0.375rem */
			}

			& .contact-item i,
			& .user-login-item i {
				font-size: 0.9rem;
			}
		}

		& .header-container {
			position: relative;
		}

		& nav {
			& > ul {
				position: fixed;
				top: 0;
				right: 0;
				bottom: 0;
				left: auto;
				width: 60vw;
				max-width: 15.625rem; /* 250px = 15.625rem */
				flex-direction: column;
				text-align: left;
				padding: 5rem 0 1.875rem; /* 80px = 5rem, 30px = 1.875rem */
				gap: 0;
				background: var(--primary-blue);
				transform: translateX(100%);
				transition: transform 350ms ease-out;
				border-top-left-radius: 0.9375rem; /* 15px = 0.9375rem */
				border-bottom-left-radius: 0.9375rem; /* 15px = 0.9375rem */

				&[data-visible="true"] {
					transform: translateX(0%);
					box-shadow: -0.3125rem 0 1.25rem rgba(0, 0, 0, 0.15); /* -5px = -0.3125rem, 20px = 1.25rem */
				}

				& > li {
					width: 100%;

					& > a {
						width: 100%;
						font-weight: 700;
						display: block;
						padding: 0.75rem 1.5625rem; /* 12px = 0.75rem, 25px = 1.5625rem */
						transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
						border-radius: 0;

						&:hover,
						&.active,
						&:focus {
							background-color: var(--primary-white);
							color: var(--primary-blue);
							text-decoration: none;
						}
					}
				}

				& .dropdown {
					padding: 0;
					margin: 0;
					width: 100%;
				}
			}

			& a {
				color: white;
			}
		}

		& .mobile-nav-toggle {
			display: block;
			position: absolute;
			right: 1.25rem; /* 20px = 1.25rem */
			top: 50%;
			transform: translateY(-50%);
			z-index: 1002;
			color: var(--dark-gray);

			&[aria-expanded="true"] {
				position: fixed;
				top: 1.5625rem; /* 25px = 1.5625rem */
				right: 1.5625rem; /* 25px = 1.5625rem */
				color: white;
			}
		}

		& .dropdown {
			&:hover {
				& .dropdown-menu {
					display: none;
				}
			}

			&.show {
				& .dropdown-toggle::after {
					transform: rotate(-135deg);
					margin-bottom: 0.25rem; /* 4px = 0.25rem */
				}

				& .dropdown-menu {
					display: block;
					position: static;
					box-shadow: none;
					background-color: transparent;
					border-radius: 0;
					padding-left: 0;
					margin-top: 0.9375rem; /* 15px = 0.9375rem */
					width: 100%;
					max-width: 100%;
					transform: none;
				}
			}
		}

		& .dropdown-toggle::after {
			content: '';
			display: inline-block;
			margin-left: 0.5rem; /* 8px = 0.5rem */
			vertical-align: middle;
			border: solid white;
			border-width: 0 0.125rem 0.125rem 0; /* 2px = 0.125rem */
			padding: 0.1875rem; /* 3px = 0.1875rem */
			transform: rotate(45deg);
			transition: transform 0.3s ease-out;
		}

		& .dropdown-menu {
			& a {
				width: 100%;
				padding: 0.625rem 2.5rem; /* 10px = 0.625rem, 40px = 2.5rem */
				font-size: 0.9rem;
				font-weight: 400;
				color: white;
				transition: all 0.25s ease-in-out;
				border-radius: 0;

				&:hover,
				&.active,
				&:focus {
					background-color: #cceaff;
					color: var(--primary-blue);
				}
			}
		}
	}

	/* Hero Section */
	.hero-section {
		min-height: auto;
		padding: 3.75rem 1.25rem; /* 60px = 3.75rem, 20px = 1.25rem */
		display: block;

		& .hero-container {
			flex-direction: column;
			text-align: center;
		}	

		& .hero-text {
			& h1 {
				font-size: 1.8rem;
				text-align: center;
			}

			& .tagline {
				font-size: 1rem;
				text-align: center;
			}

			& .btn {
				align-self: center;
			}
		}
	}

	/* Platform Section */
	.platform-section {
		padding: 3.75rem 0; /* 60px = 3.75rem */

		& .platform-container {
			flex-direction: column;
			text-align: center;
		}

		& .platform-image {
			order: -1;
		}

		& .platform-img {
			max-height: 18.75rem; /* 300px = 18.75rem */
			width: auto;
			max-width: 100%;
			object-fit: contain;
			border-radius: 0.75rem; /* 12px = 0.75rem */
		}

		& .platform-text {
			& h2 {
				text-align: center;
				font-size: 1.75rem;
			}

			& p {
				font-size: 1rem;
			}
		}
	}

	/* Modules Section */
	.modules-section {
		padding: 3.75rem 0; /* 60px = 3.75rem */

		& .module-content {
			flex-direction: column;
			text-align: center;
			gap: 1.5625rem; /* 25px = 1.5625rem */
		}

		& .tab-btn {
			padding: 0.75rem 0.9375rem; /* 12px = 0.75rem, 15px = 0.9375rem */
			font-size: 0.8rem;
			white-space: nowrap;
		}

		& .module-image {
			width: 100%;
			display: flex;
			justify-content: center;
		}

		& .module-img {
			max-height: 18.75rem; /* 300px = 18.75rem */
			width: auto;
			max-width: 100%;
			object-fit: contain;
			border-radius: 0.75rem; /* 12px = 0.75rem */
		}

		& .module-content .module-text {
			& h3 {
				font-size: 1.5rem;
				line-height: 1.3; /* This is still a deviation from mobile --fs-h3 (1.35rem) */
				margin-bottom: 0.9375rem; /* 15px = 0.9375rem */

				/* Subheading size uses mobile H4 */
				& + p {
					font-size: var(--fs-h4);
				}
			}

			& p {
				font-size: 0.95rem;
				line-height: 1.5;
				text-align: left;
				margin-bottom: 0.9375rem; /* 15px = 0.9375rem */
			}
		}

		& .module-content-wrapper {
			margin-bottom: 1.875rem; /* 30px = 1.875rem */
		}
	}

	/* Why Choose Section */
	.why-choose-section {
		padding: 3.75rem 0; /* 60px = 3.75rem */

		& .why-choose-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 1.25rem; /* 20px = 1.25rem */
		}

		& .grid-item {
			text-align: center;
		}

		& .grid-item-icon {
			display: flex;
			justify-content: center;
		}

		& .grid-item p {
			font-size: 0.9rem;
			text-align: center;
		}
	}

	/* Subscription Section */
	.subscription-section {
		padding: 3.75rem 0; /* 60px = 3.75rem */

		& .pricing-grid {
			grid-template-columns: repeat(auto-fit, minmax(17.5rem, 21.625rem)); /* 280px = 17.5rem, 346px = 21.625rem */
			gap: 1.25rem; /* 20px = 1.25rem */
			justify-content: center;

			/* Mobile: Center last card when grid shows 2 columns */
			@container (min-width: 44.5rem) and (max-width: 67.375rem) { /* 712px = 44.5rem, 1078px = 67.375rem */
				& > .plan-card:last-child:nth-child(odd) {
					grid-column: 1 / -1;
					justify-self: center;
					max-width: 21.625rem; /* 346px = 21.625rem */
				}
			}
		}

		& .plan-card {
			min-height: auto;
		}
	}

	/* Clients Section */
	.clients-section {
		padding: 3.75rem 0; /* 60px = 3.75rem */

		& .clients-logos {
			grid-template-columns: 1fr;
			gap: 1.25rem; /* 20px = 1.25rem */
		}

		& .client-box {
			height: 7.5rem; /* 120px = 7.5rem */
		}
	}

	/* Footer Section */
    /* ... (rest of your existing mobile styles) ... */

    /* Ensure mobile footer text is centered as intended */
    footer .footer-top-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center; /* Center items vertically */
    }

    footer .footer-top-section {
        text-align: center !important; /* Force center alignment on mobile */
        flex-basis: auto;
    }

    footer .footer-top-section:first-child,
    footer .footer-top-section:nth-child(2),
    footer .footer-top-section:last-child {
        text-align: center !important; /* Explicitly center all top sections */
    }

     footer .footer-contact-block {
         display: block; /* Make it full width */
         text-align: center; /* Center text inside */
     }

    footer .footer-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center; /* Center items vertically */
    }

    footer .footer-bottom-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    footer .footer-left,
    footer .footer-center,
    footer .footer-right {
        text-align: center !important; /* Force center alignment on mobile */
        flex-basis: auto; /* Reset flex basis */
    }

	.module-tabs {
		margin: 1.25rem auto 1.875rem auto; /* 20px = 1.25rem, 30px = 1.875rem */
		max-width: 95%;
		border-radius: 0.5rem; /* 8px = 0.5rem */
	}

	.glider-contain {
		padding: 1.25rem 0; /* 20px = 1.25rem */
	}
	.feature-card {
		text-align: center;
		flex: 0 0 100%;
		min-width: 100%;
		max-width: 100%;
	}
	.feature-card p {
		max-width: 80%;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0;   /* remove top gap */
		margin-bottom: 0;/* remove bottom gap */
	}
	.glider-prev, .glider-next { display: none; }

} /* Close the media query block at line 467 */

/* Mobile-only overrides for hero form to match modal width */
@media (max-width: 47.9375rem) { /* 767px */
    .hero-section .hero-container {
        /* Remove container padding to allow form to span full width */
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section .hero-form {
        /* Apply padding to align form content with site's main content area (1.25rem) */
        padding-left: 1rem;
        padding-right: 1rem;     
	}
}

/* Desktop-only layout swap for CRM and Inventory modules */
@media (min-width: 61.9375rem) { /* 991px = 61.9375rem */
	#crm .module-content,
	#inventory .module-content {
		flex-direction: row-reverse;
	}
}

/* Style for links in checkbox label */
.checkbox-group label a {
    color: var(--primary-blue);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.96);
    color: #fff;
    z-index: 9999;
    padding: 1rem 0.75rem;
    box-shadow: 0 -0.25rem 1rem rgba(0,0,0,0.25);
    font-size: 0.95rem;
}

.cookie-banner .cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner .cookie-text {
    margin: 0;
    flex: 1 1 auto;
    line-height: 1.4;
}

.cookie-banner .cookie-text a {
    color: #ffe;
    text-decoration: underline;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex: 0 0 auto;
}

@media (max-width: 48rem) {
    .cookie-banner .cookie-inner { 
        flex-direction: column; 
        align-items: stretch; 
        text-align: left; 
    }
    .cookie-banner .cookie-actions { 
        justify-content: flex-end; 
        width: 100%; 
    }
}

/* Modal Body Padding for Terms & Privacy */
.terms-content,
.privacy-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Typographic improvements for dense modal content */
.terms-content,
.privacy-content {
    line-height: 1.6;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    text-align: justify;
    hyphens: auto;
}

/* Modal Header Centering and Font Size */
.modal-header {
    position: relative; /* Needed for absolute positioning of btn-close */
    /* Bootstrap's default display: flex; justify-content: space-between; align-items: center; is retained */
}

.modal-header .modal-title {
    font-size: var(--fs-h2); /* Same as "The Platform" section */
    font-weight: 600;
    width: 100%; /* Ensure it takes full width to center text */
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Ensure the close button stays in the top right */
.modal-header .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    margin: 0; /* Override any default margins */
}

/* Scoped numbering for Terms & Privacy nested ordered lists (e.g., 1.1, 1.2) */
.terms-content > ol,
.privacy-content > ol {
	counter-reset: section;
}

.terms-content > ol > li,
.privacy-content > ol > li {
	counter-increment: section;
	counter-reset: subsection;
}

/* Number first-level ordered lists inside a section's .section-content as X.Y */
.terms-content > ol > li > .section-content > ol > li,
.privacy-content > ol > li > .section-content > ol > li {
	counter-increment: subsection;
}

.terms-content > ol > li > .section-content > ol > li::marker,
.privacy-content > ol > li > .section-content > ol > li::marker {
	content: counter(section) "." counter(subsection) ". ";
}

/* Number second-level ordered lists inside a section's .section-content as X.Y */
.terms-content > ol > li > .section-content > ol > li::marker,
.privacy-content > ol > li > .section-content > ol > li::marker {
	content: counter(section) "." counter(list-item) ". ";
}

/* Make specific li elements in sections 3 and 5 of privacy policy bold */
.privacy-content > ol > li:nth-child(3) > .section-content > ol > li,
.privacy-content > ol > li:nth-child(5) > .section-content > ol > li,
.privacy-content > ol > li:nth-child(6) > .section-content > ol > li {
	font-weight: 700; /* Make the list item text bold */
}

/* Ensure nested ULs within those sections are not bold */
.privacy-content > ol > li:nth-child(3) > .section-content > ol > li ul,
.privacy-content > ol > li:nth-child(5) > .section-content > ol > li ul,
.privacy-content > ol > li:nth-child(6) > .section-content > ol > li ul {
	font-weight: 400; /* Reset font-weight for nested bullet points */
}

/* Prevent orphans/widows and improve text flow in modal content */
.terms-content p,
.privacy-content p,
.terms-content li,
.privacy-content li {
    orphans: 2;
    widows: 2;
    /* Fallback for browsers that don't support 'pretty' */
    text-wrap: pretty;
}

/* Add spacing between list items for readability */
.terms-content li,
.privacy-content li {
    margin-bottom: 0.5em;
}

/* Better spacing for nested lists */
.terms-content ol ol,
.privacy-content ol ol,
.terms-content ul ul,
.privacy-content ul ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Reset lettered sub-subsections within each subsection */
.terms-content > ol > li > .section-content > ol > li,
.privacy-content > ol > li > .section-content > ol > li {
	counter-reset: subletter;
}

/* Number inner ordered lists that are explicitly lettered (type="a") as X.Y.a */
.terms-content > ol > li > .section-content > ol > li ol[type="a"] > li,
.privacy-content > ol > li > .section-content > ol > li ol[type="a"] > li {
	counter-increment: subletter;
}

.terms-content > ol > li > .section-content > ol > li ol[type="a"] > li::marker,
.privacy-content > ol > li > .section-content > ol > li ol[type="a"] > li::marker {
	content: counter(list-item, lower-alpha) ". ";
}

/* Keep unordered lists and deeper ordered lists (e.g., type="a") untouched */

/* Reduce H2 font size inside modals to prevent text wrapping issues */
.terms-content h2,
.privacy-content h2,
.terms-content > ol > li::marker,
.privacy-content > ol > li::marker {
	font-size: var(--fs-h4); /* Match module subheading */
	font-weight: 700;
}

/* Ensure top-level H2 headers and their markers inside modals are the same size */
/* This resolves a conflict in the provided CSS where ::marker was larger than h2 */
.terms-content h2,
.privacy-content h2,
.terms-content > ol > li::marker,
.privacy-content > ol > li::marker {
	font-size: var(--fs-h4); /* Match module subheading, as previously requested */
	font-weight: 700;
}

/* Centered Alert Modal Styling */
#alert-modal .modal-content {
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#alert-modal .modal-body {
    padding: 0;
}

#alert-modal .alert {
    border: none;
    border-radius: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 120px;
}

#alert-modal .alert-success {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border: 2px solid #a3cfbb;
}

#alert-modal .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    color: #721c24;
    border: 2px solid #e6858d;
}

#alert-modal .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffecb5 100%);
    color: #664d03;
    border: 2px solid #ffeaa7;
}

#alert-modal .alert-primary {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
    border: 2px solid #9ec5fe;
}

#alert-modal .btn-close {
    padding: 0.5rem;
    background-size: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

#alert-modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Inline icon before first word with hanging indent for wrapped lines */
#alert-modal .alert .alert-text {
    --icon-size: 22px;
    --icon-gap: 8px;
    padding-left: calc(var(--icon-size) + var(--icon-gap));
    text-indent: calc(-1 * (var(--icon-size) + var(--icon-gap)));
    line-height: 1.4;
    font-size: 1.1rem;
    font-weight: 500;
}

#alert-modal .alert .alert-icon-inline {
    width: var(--icon-size);
    height: var(--icon-size);
    margin-right: var(--icon-gap);
    vertical-align: text-bottom;
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 7.2rem;
    }
}