:root {
  --mb-primary: #1e88e5;
  --mb-primary-light: #6ab7ff;
  --mb-primary-dark: #005cb2;
  --mb-secondary: #ff5252;
  --mb-secondary-light: #ff867f;
  --mb-secondary-dark: #c50e29;
  --mb-bg: #f0f4f8;
  --mb-text: #1c1c1c;
  --mb-text-light: #6e6e6e;
  --mb-white: #ffffff;
  --mb-black: #000000;
  --mb-success: #43a047;
  --mb-info: #29b6f6;
  --mb-warning: #ffa726;
  --mb-danger: #e53935;
  --mb-gray-100: #f9f9f9;
  --mb-gray-200: #f0f0f0;
  --mb-gray-300: #d6d6d6;
  --mb-gray-400: #b0b0b0;
  --mb-gray-500: #8d8d8d;
  --mb-gray-600: #6c6c6c;
  --mb-gray-700: #555555;
  --mb-gray-800: #3b3b3b;
  --mb-gray-900: #1f1f1f;

  --mb-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --mb-shadow-md: 0 3px 6px rgba(0, 0, 0, 0.1);
  --mb-shadow-lg: 0 6px 12px rgba(0, 0, 0, 0.12);
  --mb-shadow-xl: 0 10px 20px rgba(0, 0, 0, 0.14);

  --mb-radius-sm: 6px;
  --mb-radius-md: 10px;
  --mb-radius-lg: 16px;
  --mb-radius-xl: 28px;
  --mb-radius-full: 9999px;

  --mb-transition-fast: 0.15s ease-in-out;
  --mb-transition: 0.25s ease-in-out;
  --mb-transition-slow: 0.4s ease-in-out;

  --mb-font-main: 'Poppins', sans-serif;
  --mb-font-secondary: 'Lato', sans-serif;

  --mb-navbar-height: 72px;
  --mb-footer-height: 280px;

  --mb-container-max-width: 1140px;
  --mb-container-padding: 24px;
  --mb-section-spacing: 80px;
}


/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--mb-font-main);
	color: var(--mb-text);
	background-color: var(--mb-bg);
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--mb-transition);
}

a:hover,
a:focus {
	color: var(--mb-primary);
}

ul,
ol {
	list-style: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	transition: all var(--mb-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--mb-font-secondary);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
}

small {
	font-size: 0.875rem;
}

.mb-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.mb-container {
	width: 100%;
	max-width: var(--mb-container-max-width);
	margin: 0 auto;
	padding: 0 var(--mb-container-padding);
}

.mb-section {
	padding: 80px 0;
}

.mb-section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.mb-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--mb-primary);
	border-radius: var(--mb-radius-full);
}

/* 
========================================
Typography
========================================
*/
.mb-text-center {
	text-align: center;
}

.mb-text-left {
	text-align: left;
}

.mb-text-right {
	text-align: right;
}

.mb-text-primary {
	color: var(--mb-primary);
}

.mb-text-secondary {
	color: var(--mb-secondary);
}

.mb-text-light {
	color: var(--mb-text-light);
}

.mb-text-white {
	color: var(--mb-white);
}

.mb-text-sm {
	font-size: 0.875rem;
}

.mb-text-lg {
	font-size: 1.125rem;
}

.mb-text-xl {
	font-size: 1.25rem;
}

.mb-text-2xl {
	font-size: 1.5rem;
}

.mb-text-3xl {
	font-size: 1.875rem;
}

.mb-text-4xl {
	font-size: 2.25rem;
}

.mb-text-5xl {
	font-size: 3rem;
}

.mb-font-light {
	font-weight: 300;
}

.mb-font-normal {
	font-weight: 400;
}

.mb-font-medium {
	font-weight: 500;
}

.mb-font-semibold {
	font-weight: 600;
}

.mb-font-bold {
	font-weight: 700;
}

.mb-uppercase {
	text-transform: uppercase;
}

.mb-capitalize {
	text-transform: capitalize;
}

.mb-line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mb-line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 
========================================
Layout & Grid
========================================
*/
.mb-flex {
	display: flex;
}

.mb-flex-wrap {
	flex-wrap: wrap;
}

.mb-flex-col {
	flex-direction: column;
}

.mb-items-center {
	align-items: center;
}

.mb-items-start {
	align-items: flex-start;
}

.mb-items-end {
	align-items: flex-end;
}

.mb-justify-center {
	justify-content: center;
}

.mb-justify-between {
	justify-content: space-between;
}

.mb-justify-start {
	justify-content: flex-start;
}

.mb-justify-end {
	justify-content: flex-end;
}

.mb-gap-1 {
	gap: 0.25rem;
}

.mb-gap-2 {
	gap: 0.5rem;
}

.mb-gap-3 {
	gap: 0.75rem;
}

.mb-gap-4 {
	gap: 1rem;
}

.mb-gap-5 {
	gap: 1.25rem;
}

.mb-gap-6 {
	gap: 1.5rem;
}

.mb-gap-8 {
	gap: 2rem;
}

.mb-gap-10 {
	gap: 2.5rem;
}

.mb-grid {
	display: grid;
}

.mb-grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.mb-grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mb-grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mb-grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 
========================================
Spacing
========================================
*/
.mb-m-0 {
	margin: 0;
}

.mb-m-1 {
	margin: 0.25rem;
}

.mb-m-2 {
	margin: 0.5rem;
}

.mb-m-3 {
	margin: 0.75rem;
}

.mb-m-4 {
	margin: 1rem;
}

.mb-m-5 {
	margin: 1.25rem;
}

.mb-mt-0 {
	margin-top: 0;
}

.mb-mt-1 {
	margin-top: 0.25rem;
}

.mb-mt-2 {
	margin-top: 0.5rem;
}

.mb-mt-3 {
	margin-top: 0.75rem;
}

.mb-mt-4 {
	margin-top: 1rem;
}

.mb-mt-5 {
	margin-top: 1.25rem;
}

.mb-mt-8 {
	margin-top: 2rem;
}

.mb-mt-10 {
	margin-top: 2.5rem;
}

.mb-mb-0 {
	margin-bottom: 0;
}

.mb-mb-1 {
	margin-bottom: 0.25rem;
}

.mb-mb-2 {
	margin-bottom: 0.5rem;
}

.mb-mb-3 {
	margin-bottom: 0.75rem;
}

.mb-mb-4 {
	margin-bottom: 1rem;
}

.mb-mb-5 {
	margin-bottom: 1.25rem;
}

.mb-mb-8 {
	margin-bottom: 2rem;
}

.mb-mb-10 {
	margin-bottom: 2.5rem;
}

.mb-p-0 {
	padding: 0;
}

.mb-p-1 {
	padding: 0.25rem;
}

.mb-p-2 {
	padding: 0.5rem;
}

.mb-p-3 {
	padding: 0.75rem;
}

.mb-p-4 {
	padding: 1rem;
}

.mb-p-5 {
	padding: 1.25rem;
}

.mb-p-6 {
	padding: 1.5rem;
}

.mb-p-8 {
	padding: 2rem;
}

.mb-py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.mb-py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.mb-py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.mb-py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.mb-py-5 {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.mb-py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.mb-px-1 {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.mb-px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.mb-px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.mb-px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.mb-px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.mb-px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

/* 
========================================
Buttons
========================================
*/
.mb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 2rem;
	border-radius: var(--mb-radius-md);
	font-weight: 600;
	transition: all var(--mb-transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
	box-shadow: var(--mb-shadow-sm);
}

.mb-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--mb-shadow-md);
}

.mb-btn-primary {
	background-color: var(--mb-primary);
	color: var(--mb-white);
}

.mb-btn-primary:hover {
	background-color: var(--mb-primary-dark);
}

.mb-btn-secondary {
	background-color: var(--mb-secondary);
	color: var(--mb-black);
}

.mb-btn-secondary:hover {
	background-color: var(--mb-secondary-dark);
}

.mb-btn-outline-primary {
	border-color: var(--mb-primary);
	color: var(--mb-primary);
}

.mb-btn-outline-primary:hover {
	background-color: var(--mb-primary);
	color: var(--mb-white);
}

.mb-btn-outline-secondary {
	border-color: var(--mb-secondary);
	color: var(--mb-black);
}

.mb-btn-outline-secondary:hover {
	background-color: var(--mb-secondary);
	color: var(--mb-black);
}

.mb-btn-sm {
	padding: 0.5rem 1.5rem;
	font-size: 0.875rem;
}

.mb-btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
}

.mb-btn-icon {
	display: inline-flex;
	align-items: center;
}

.mb-btn-icon i {
	margin-right: 0.5rem;
}

.mb-btn-icon-right i {
	margin-right: 0;
	margin-left: 0.5rem;
}

.mb-btn-block {
	width: 100%;
}

/* 
========================================
Cards and Panels
========================================
*/
.mb-card {
	background-color: var(--mb-white);
	border-radius: var(--mb-radius-md);
	box-shadow: var(--mb-shadow-md);
	overflow: hidden;
	transition: transform var(--mb-transition), box-shadow var(--mb-transition);
}

.mb-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--mb-shadow-lg);
}

.mb-card-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--mb-gray-200);
}

.mb-card-body {
	padding: 1.5rem;
}

.mb-card-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--mb-gray-200);
}

.mb-card-img-top {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.mb-card-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.mb-card-text {
	color: var(--mb-text-light);
}

.mb-card-bordered {
	border: 1px solid var(--mb-gray-200);
	box-shadow: none;
}

.mb-card-featured {
	border-top: 4px solid var(--mb-primary);
}

.mb-panel {
	background-color: var(--mb-white);
	border-radius: var(--mb-radius-lg);
	box-shadow: var(--mb-shadow-lg);
	padding: 2rem;
	margin-bottom: 2rem;
}

/* 
========================================
Forms
========================================
*/
.mb-form-group {
	margin-bottom: 1.5rem;
}

.mb-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.mb-form-control {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--mb-text);
	background-color: var(--mb-white);
	background-clip: padding-box;
	border: 1px solid var(--mb-gray-300);
	border-radius: var(--mb-radius-md);
	transition: border-color var(--mb-transition), box-shadow var(--mb-transition);
}

.mb-form-control:focus {
	border-color: var(--mb-primary);
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.25);
}

.mb-form-control-lg {
	padding: 1rem 1.25rem;
	font-size: 1.125rem;
}

.mb-form-control-sm {
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
}

.mb-form-text {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--mb-text-light);
}

.mb-form-group.mb-has-error .mb-form-control {
	border-color: var(--mb-danger);
}

.mb-form-group.mb-has-error .mb-form-text {
	color: var(--mb-danger);
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.mb-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.mb-form-check {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.mb-form-check-input {
	margin-right: 0.5rem;
}

.mb-form-check-label {
	font-size: 0.875rem;
}

.mb-form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}

.mb-form-col {
	flex: 1 0 0%;
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}

.mb-form-error-msg {
	color: var(--mb-danger);
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.mb-form-control.mb-has-error + .mb-form-error-msg {
	display: block;
}

/* 
========================================
Navigation & Header
========================================
*/
.mb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: var(--mb-white);
	box-shadow: var(--mb-shadow-sm);
	padding: 1rem 0;
	transition: all var(--mb-transition);
}

.mb-header-scrolled {
	box-shadow: var(--mb-shadow-md);
	height: 70px;
}

.mb-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.mb-navbar-brand {
	display: flex;
	align-items: center;
}

.mb-navbar-logo {
	height: 40px;
	width: auto;
	margin-right: 1rem;
}

.mb-navbar-brand-text {
	font-size: 1.5rem;
	font-weight: 700;
}

.mb-navbar-nav {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.mb-nav-item {
	margin: 0 1rem;
}

.mb-nav-link {
	position: relative;
	font-weight: 600;
	padding: 0.5rem 0;
}

.mb-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--mb-primary);
	transition: width var(--mb-transition);
}

.mb-nav-link:hover::after,
.mb-nav-link.mb-active::after {
	width: 100%;
}

.mb-navbar-actions {
	display: flex;
	align-items: center;
}

.mb-navbar-action {
	margin-left: 1.5rem;
}

.mb-mobile-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.mb-mobile-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--mb-text);
	transition: all var(--mb-transition);
}

.mb-mobile-menu {
	position: fixed;
	top: 70px;
	right: -100%;
	width: 300px;
	height: calc(100vh - var(--mb-navbar-height));
	background-color: var(--mb-white);
	box-shadow: var(--mb-shadow-lg);
	z-index: 999;
	transition: right var(--mb-transition);
	overflow-y: auto;
}

.mb-mobile-menu.mb-active {
	right: 0;
}

.mb-mobile-nav {
	padding: 1.5rem;
}

.mb-mobile-nav-item {
	margin-bottom: 1rem;
}

.mb-mobile-nav-link {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--mb-gray-200);
}

.mb-mobile-nav-dropdown {
	margin-top: 0.75rem;
	padding-left: 1rem;
	display: none;
}

.mb-mobile-nav-dropdown.mb-active {
	display: block;
}

.mb-mobile-nav-dropdown-item {
	margin-bottom: 0.75rem;
}

.mb-mobile-nav-dropdown-link {
	display: block;
	font-size: 1rem;
	padding: 0.5rem 0;
}

/* 
========================================
Hero Section
========================================
*/
.mb-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	padding-top: var(--mb-navbar-height);
	display: flex;
	align-items: center;
	background-image: linear-gradient(
			to right,
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.8)
		),
		url('assets/mb-hero.jpg');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.mb-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233F51B5' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mb-hero-content {
	position: relative;
	z-index: 1;
	max-width: 550px;
}

.mb-hero-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.mb-hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: var(--mb-gray-700);
}

.mb-hero-cta {
	display: flex;
	gap: 1rem;
}

.mb-hero-img {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	width: 40%;
	height: auto;
	animation: mb-float 6s ease-in-out infinite;
}

.mb-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 
========================================
Pricing Section
========================================
*/
.mb-pricing {
	background-color: var(--mb-white);
	position: relative;
}

.mb-pricing::before {
	content: '';
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: 70px;
	background: var(--mb-white);
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.mb-pricing-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.mb-pricing-plan {
	flex: 1;

	max-width: 380px;
}

.mb-pricing-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.mb-pricing-header {
	padding: 2rem 1.5rem;
	text-align: center;
	background: var(--mb-gray-100);
	border-radius: var(--mb-radius-md) var(--mb-radius-md) 0 0;
}

.mb-pricing-title {
	font-size: 1.5rem;
	margin-bottom: 0.25rem;
}

.mb-pricing-price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--mb-primary);
}

.mb-pricing-period {
	display: block;
	font-size: 1rem;
	color: var(--mb-text-light);
}

.mb-pricing-body {
	padding: 2rem 1.5rem;
	flex-grow: 1;
}

.mb-pricing-features {
	margin-bottom: 2rem;
}

.mb-pricing-feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.mb-pricing-feature-icon {
	margin-right: 0.75rem;
	color: var(--mb-success);
}

.mb-pricing-cta {
	text-align: center;
}

.mb-pricing-popular {
	border-top: 4px solid var(--mb-primary);
	transform: scale(1.05);
	z-index: 1;
}

.mb-pricing-popular .mb-pricing-header {
	background: var(--mb-primary);
	color: var(--mb-white);
}

.mb-pricing-popular .mb-pricing-price {
	color: var(--mb-white);
}

.mb-pricing-popular .mb-pricing-period {
	color: rgba(255, 255, 255, 0.8);
}

.mb-pricing-badge {
	position: absolute;
	top: 0;
	right: 30px;
	background: var(--mb-secondary);
	color: var(--mb-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.25rem 1rem;
	border-radius: 0 0 var(--mb-radius-md) var(--mb-radius-md);
	letter-spacing: 1px;
}

/* 
========================================
Services Section
========================================
*/
.mb-services {
	position: relative;
	overflow: hidden;
	background: var(--mb-bg);
}

.mb-services-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.mb-service-card {
	position: relative;
	overflow: hidden;
	height: 100%;
	padding: 2rem;
}

.mb-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	background: rgba(63, 81, 181, 0.1);
	color: var(--mb-primary);
	font-size: 2rem;
}

.mb-service-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.mb-service-content {
	margin-bottom: 1.5rem;
}

.mb-service-media {
	margin-top: 2rem;
	border-radius: var(--mb-radius-md);
	overflow: hidden;
}

.mb-service-video {
	width: 100%;
	height: 225px;
	object-fit: cover;
}

.mb-service-slider {
	position: relative;
	width: 100%;
	height: 225px;
	overflow: hidden;
}

.mb-service-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity var(--mb-transition);
}

.mb-service-slide.mb-active {
	opacity: 1;
}

.mb-service-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mb-service-slider-controls {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.mb-service-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all var(--mb-transition);
}

.mb-service-slider-dot.mb-active {
	background: var(--mb-white);
	transform: scale(1.2);
}

.mb-service-progress {
	margin-top: 2rem;
}

.mb-progress-chart {
	width: 100%;
	height: 225px;
	border-radius: var(--mb-radius-md);
	overflow: hidden;
	background: var(--mb-white);
	padding: 1rem;
}

.mb-chart-bar {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.mb-chart-label {
	width: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-right: 1rem;
}

.mb-chart-track {
	flex-grow: 1;
	height: 8px;
	background: var(--mb-gray-200);
	border-radius: var(--mb-radius-full);
	overflow: hidden;
}

.mb-chart-progress {
	height: 100%;
	background: var(--mb-primary);
	width: 0;
	transition: width 1s ease;
}

/* 
========================================
FAQ Section
========================================
*/
.mb-faq {
	background-color: var(--mb-white);
}

.mb-faq-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.mb-faq-item {
	margin-bottom: 1rem;
	border: 1px solid var(--mb-gray-200);
	border-radius: var(--mb-radius-md);
	overflow: hidden;
}

.mb-faq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background-color: var(--mb-white);
	cursor: pointer;
	transition: background-color var(--mb-transition);
}

.mb-faq-header:hover {
	background-color: var(--mb-gray-100);
}

.mb-faq-item.mb-active .mb-faq-header {
	background-color: var(--mb-primary);
	color: var(--mb-white);
}

.mb-faq-question {
	font-weight: 600;
	margin: 0;
}

.mb-faq-icon {
	font-size: 1.25rem;
	transition: transform var(--mb-transition);
}

.mb-faq-item.mb-active .mb-faq-icon {
	transform: rotate(45deg);
}

.mb-faq-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--mb-transition);
}

.mb-faq-item.mb-active .mb-faq-body {
	max-height: 500px;
}

.mb-faq-answer {
	padding: 0 1.5rem 1.25rem;
}

/* 
========================================
Testimonials Section
========================================
*/
.mb-testimonials {
	background-color: var(--mb-bg);
	position: relative;
	overflow: hidden;
}

.mb-testimonials-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.mb-testimonial-card {
	position: relative;
	padding: 2.5rem 2rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.mb-testimonial-card:before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 5rem;
	color: var(--mb-primary);
	opacity: 0.2;
	font-family: Georgia, serif;
	line-height: 1;
}

.mb-testimonial-content {
	position: relative;
	z-index: 1;
	font-style: italic;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mb-testimonial-author {
	display: flex;
	margin-top: auto;
	align-items: center;
}

.mb-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
}

.mb-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mb-testimonial-info {
	flex: 1;
}

.mb-testimonial-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.mb-testimonial-position {
	font-size: 0.875rem;
	color: var(--mb-text-light);
}

/* 
========================================
Contact Section
========================================
*/
.mb-contact {
	background-color: var(--mb-white);
	position: relative;
}

.mb-contact-header {
	text-align: center;
	margin-bottom: 3rem;
}

.mb-contact-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.mb-contact-form-wrapper {
	background: var(--mb-white);
	border-radius: var(--mb-radius-lg);
	box-shadow: var(--mb-shadow-lg);
	padding: 2.5rem;
}

.mb-contact-success {
	text-align: center;
	padding: 3rem 2rem;
	display: none;
}

.mb-contact-success.mb-active {
	display: block;
}

.mb-contact-success-icon {
	font-size: 4rem;
	color: var(--mb-success);
	margin-bottom: 1.5rem;
}

.mb-contact-success-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.mb-contact-success-text {
	font-size: 1.1rem;
	max-width: 500px;
	margin: 0 auto 2rem;
	color: var(--mb-text-light);
}

/* 
========================================
Footer
========================================
*/
.mb-footer {
	background-color: var(--mb-gray-900);
	color: var(--mb-white);
	padding-top: 4rem;
}

.mb-footer a:hover {
	color: var(--mb-secondary);
}

.mb-footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mb-footer-col {
	margin-bottom: 1rem;
}

.mb-footer-title {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.mb-footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--mb-primary);
}

.mb-footer-links li {
	margin-bottom: 0.75rem;
}

.mb-footer-links a {
	font-size: 0.9rem;
	opacity: 0.8;
	transition: opacity var(--mb-transition);
}

.mb-footer-links a:hover {
	opacity: 1;
}

.mb-footer-bottom {
	padding: 2rem 0;
	text-align: center;
}

.mb-footer-copyright {
	font-size: 0.875rem;
	opacity: 0.7;
}

/* 
========================================
Cookie Consent
========================================
*/
.mb-cookie-consent {
	position: fixed;
	bottom: -1px;
	left: 0;
	right: 0;
	background-color: var(--mb-white);
	padding: 1.5rem 0;
	box-shadow: var(--mb-shadow-lg);
	z-index: 999;
	transform: translateY(100%);
	transition: transform var(--mb-transition);
}

.mb-cookie-consent.mb-active {
	transform: translateY(0);
}

.mb-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.mb-cookie-text {
	flex: 1;
	min-width: 280px;
}

.mb-cookie-text p a {
	color: var(--mb-primary);
}

.mb-cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* 
========================================
Legal Pages
========================================
*/
.mb-legal-header {
	padding: 120px 0 80px;
	background-color: var(--mb-primary);
	color: var(--mb-white);
	text-align: center;
}

.mb-legal-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.mb-legal-subtitle {
	opacity: 0.8;
}

.mb-legal-content {
	padding: 60px 0;
	max-width: 800px;
	margin: 0 auto;
}

.mb-legal-section {
	margin-bottom: 2.5rem;
}

.mb-legal-section h2 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--mb-gray-200);
}

.mb-legal-section h3 {
	font-size: 1.25rem;
	margin: 1.5rem 0 1rem;
}

.mb-legal-section ul,
.mb-legal-section ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.mb-legal-section ul {
	list-style: disc;
}

.mb-legal-section ol {
	list-style: decimal;
}

.mb-legal-section li {
	margin-bottom: 0.5rem;
}

/* 
========================================
Animations
========================================
*/
@keyframes mb-float {
	0%,
	100% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(-53%);
	}
}

@keyframes mb-pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes mb-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mb-slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mb-animate-fade {
	animation: mb-fadeIn 1s ease-in-out;
}

.mb-animate-slide-up {
	animation: mb-slideUp 1s ease-in-out;
}

.mb-animate-pulse {
	animation: mb-pulse 3s infinite ease-in-out;
}

/* 
========================================
Media Queries
========================================
*/
@media (max-width: 1200px) {
	:root {
		--mb-container-padding: 15px;
		--mb-section-spacing: 80px;
	}

	.mb-hero-img {
		max-width: 45%;
	}
}

@media (max-width: 991px) {
	html {
		font-size: 15px;
	}

	.mb-navbar-nav {
		display: none;
	}

	.mb-mobile-toggle {
		display: flex;
	}

	.mb-hero-content {
		max-width: 500px;
	}

	.mb-hero-img {
		max-width: 50%;
	}

	.mb-testimonials-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	.mb-section {
		padding: 60px 0;
	}

	.mb-hero {
		height: auto;
		padding-top: calc(var(--mb-navbar-height) + 40px);
		padding-bottom: 80px;
	}

	.mb-hero-content {
		max-width: 100%;
		text-align: center;
		margin: 0 auto;
	}

	.mb-hero-cta {
		justify-content: center;
	}

	.mb-hero-img {
		position: static;
		transform: none;
		max-width: 70%;
		margin: 120px auto 0;
	}

	.mb-pricing-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.mb-pricing-plan {
		width: 100%;
	}

	.mb-pricing-popular {
		transform: scale(1);
	}

	.mb-services-wrapper {
		grid-template-columns: 1fr;
	}

	.mb-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.mb-cookie-buttons {
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	.mb-hero-title {
		font-size: 2.5rem;
	}

	.mb-section-title {
		font-size: 2rem;
	}

	.mb-testimonials-wrapper {
		grid-template-columns: 1fr;
	}

	.mb-footer-top {
		grid-template-columns: 1fr;
	}

	.mb-hero {
		flex-direction: column;
	}
}
