/* === RESET & BASE === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Overpass', sans-serif;
	background-color: #e7e2e2;

	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

ul,
ol {
	list-style: none;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

::selection {
	background: #b05e27;
	color: #fff;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
	background: #b05e27;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #b05e27;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.mp-section-title {
	font-size: 2.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 2rem;
	text-align: center;
}

.mp-subtitle {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 400;
	opacity: 0.9;
	text-align: center;
}

.mp-text-highlight {
	color: #b05e27;
	font-weight: 500;
}

.mp-text-secondary {
	color: #29ff5b;
}

.mp-lead-text {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.mp-text-centered {
	text-align: center;
}

.mp-text-right {
	text-align: right;
}

.mp-text-uppercase {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mp-caption {
	font-size: 0.9rem;
	opacity: 0.7;
	font-style: italic;
}

/* === LAYOUT === */
.mp-container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.mp-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.mp-section-dark {
	background: linear-gradient(135deg, #e78d8d 0%, #462929 100%);
}

.mp-section-darker {
	background: linear-gradient(135deg, #503737 0%, #d5b1b1 100%);
}

.mp-section-gradient {
	background: linear-gradient(135deg, #857f7f 0%, #e5d2d2 100%);
}

.mp-row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
	align-items: center;
}

.mp-col {
	padding: 15px;
	flex: 1;
}

.mp-col-2 {
	flex-basis: calc(50% - 30px);
	max-width: calc(50% - 30px);
}

.mp-col-3 {
	flex-basis: calc(33.333% - 30px);
	max-width: calc(33.333% - 30px);
}

.mp-col-4 {
	flex-basis: calc(25% - 30px);
	max-width: calc(25% - 30px);
}

.mp-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mp-grid {
	display: grid;
	grid-gap: 30px;
}

.mp-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.mp-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.mp-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.mp-divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, transparent, #b05e27, transparent);
	margin: 50px 0;
}

.mp-spacer-sm {
	height: 30px;
}

.mp-spacer-md {
	height: 60px;
}

.mp-spacer-lg {
	height: 90px;
}

/* === HEADER & NAVIGATION === */
.mp-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 20px 0;
	background-color: rgba(17, 17, 17, 0.9);
	backdrop-filter: blur(10px);
}

.mp-header.mp-header-scrolled {
	padding: 10px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	background-color: rgba(17, 17, 17, 0.95);
}

.mp-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mp-logo {
	display: flex;
	align-items: center;
}

.mp-logo-text {
	font-size: 1.75rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: 1px;
}

.mp-logo-highlight {
	color: #b05e27;
}

.mp-nav {
	display: flex;
}

.mp-nav-list {
	display: flex;
	align-items: center;
}

.mp-nav-item {
	margin: 0 15px;
	position: relative;
}

.mp-nav-link {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1px;
	color: rgb(234, 228, 228);
	padding: 10px;
	border-radius: 5px;
	transition: all 0.3s ease;
	background: transparent;
}

.mp-nav-link:hover {
	background: linear-gradient(90deg, #b05e27, #29ff5b);
}

.mp-nav-link:hover::after {
	width: 100%;
}

.mp-nav-link.active {
	color: #b05e27;
}

.mp-nav-link.active::after {
	width: 100%;
}

.mp-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width: 30px;
	cursor: pointer;
}

.mp-mobile-toggle span {
	width: 100%;
	height: 3px;
	background-color: #fff;
	transition: all 0.3s ease;
}

/* === HERO SECTION === */
.mp-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.mp-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.mp-hero-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(17, 17, 17, 0.5) 0%,
		rgba(17, 17, 17, 0.9) 70%,
		#111111 100%
	);
}

.mp-hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/mp-hero.jpg');
	opacity: 0.1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.mp-hero-content {
	max-width: 600px;
}

.mp-hero-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 1s forwards 0.5s;
}

.mp-hero-subtitle {
	font-size: 1.75rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 1s forwards 0.7s;
}

.mp-hero-buttons {
	display: flex;
	gap: 15px;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 1s forwards 0.9s;
}

.mp-hero-graphic {
	position: relative;
	height: 400px;
	width: 100%;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 1s forwards 1.1s;
}

.mp-pulse-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
}

.mp-pulse-line {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	animation: drawLine 3s forwards infinite alternate;
	stroke: #b05e27;
	stroke-width: 2;
}

.mp-pulse-circle {
	fill: #29ff5b;
	opacity: 0;
	r: 5;
	animation: pulseCircle 3s forwards infinite alternate;
}

/* === BUTTONS === */
.mp-btn {
	display: inline-block;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 4px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border: none;
	outline: none;
}

.mp-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.5s,
		height 0.5s;
	z-index: -1;
}

.mp-btn:hover::before {
	width: 300%;
	height: 300%;
}

.mp-btn-primary {
	background-color: #b05e27;
	color: #fff;
	transition: all 0.5s ease;
}

.mp-btn-primary:hover {
	background-color: #fff;
	color: #b05e27;
}

.mp-btn-secondary {
	background-color: #29ff5b;
	color: #fff;
}

.mp-btn-outline {
	background-color: transparent;
	border: 2px solid #29ff5b;
	color: #29ff5b;
}

.mp-btn-outline:hover {
	background-color: rgba(41, 98, 255, 0.1);
}

.mp-btn-large {
	padding: 15px 40px;
	font-size: 1.1rem;
}

.mp-btn-block {
	display: block;
	width: 100%;
}

.mp-btn-with-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mp-btn-with-icon i {
	font-size: 1.2em;
}

/* === CARDS === */
.mp-card {
	background: rgba(26, 26, 26, 0.7);
	border-radius: 6px;
	padding: 30px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid #b05e27;
}

.mp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #b05e27, #29ff5b);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.mp-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mp-card:hover::before {
	transform: scaleX(1);
}

.mp-card-title {
	font-size: 1.75rem;
	margin-bottom: 20px;
	color: #fff;
}

.mp-card-subtitle {
	font-size: 1.1rem;
	margin-bottom: 15px;
	color: #b05e27;
}

.mp-card-icon {
	margin-bottom: 20px;
	font-size: 2.5rem;
	color: #29ff5b;
}

.mp-card-footer {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mp-card-price {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.mp-card-price-caption {
	font-size: 0.9rem;
	opacity: 0.7;
}

.mp-feature-list {
	margin: 20px 0;
}

.mp-feature-item {
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mp-feature-icon {
	color: #b05e27;
}

/* === VISION & VALUES === */
.mp-value-card {
	position: relative;
	padding: 30px;
	background: rgba(226, 224, 224, 0.7);
	border-radius: 6px;
	transition: all 0.3s ease;
	overflow: hidden;
	height: 100%;
}

.mp-value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 30px #b05e27;
}

.mp-value-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(156, 39, 176, 0.2),
		rgba(41, 98, 255, 0.2)
	);
	margin-bottom: 20px;
}

.mp-value-icon i {
	font-size: 2rem;
	background: linear-gradient(135deg, #b05e27, #29ff5b);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mp-value-title {
	font-size: 1.75rem;
	margin-bottom: 15px;
}

.mp-value-text {
	line-height: 1.8;
}

/* === METHODS SECTION === */
.mp-method-card {
	position: relative;
	padding: 30px;
	background: rgba(226, 224, 224, 0.7);
	border-radius: 6px;
	transition: all 0.3s ease;
	overflow: hidden;
	height: 100%;
}

.mp-method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 30px #b05e27;
}

.mp-method-title {
	font-size: 1.75rem;
	margin-bottom: 20px;
}

.mp-method-video-container {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	margin: 25px 0;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.mp-method-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.mp-slider {
	position: relative;
	overflow: hidden;
	margin: 30px 0;
}

.mp-slider-container {
	display: flex;
	transition: transform 0.4s ease;
}

.mp-slide {
	flex: 0 0 100%;
	padding: 20px;
}

.mp-slide-content {
	padding: 20px;
	background: rgba(26, 26, 26, 0.7);
	border-radius: 6px;
	border: 1px solid #b05e27;
}

.mp-slider-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.mp-slider-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
	color: #b05e27;
	transition: color 0.3s ease;
}

.mp-slider-btn:hover {
	color: #29ff5b;
}

.mp-slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
}

.mp-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #b05e27;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.mp-slider-dot.active {
	background-color: #b05e27;
}

/* === SUCCESS STORIES === */
.mp-testimonial-card {
	padding: 30px;
	background: rgba(226, 224, 224, 0.7);
	border-radius: 6px;
	transition: all 0.3s ease;
	height: 100%;
}

.mp-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 30px #b05e27;
}

.mp-testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.mp-testimonial-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
	border: 3px solid #b05e27;
}

.mp-testimonial-info {
	flex: 1;
}

.mp-testimonial-name {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.mp-testimonial-job {
	font-size: 0.9rem;
	opacity: 0.7;
}

.mp-testimonial-text {
	position: relative;
	padding-left: 25px;
	line-height: 1.8;
}

.mp-testimonial-text::before {
	content: '\201C';
	font-size: 4rem;
	font-family: Georgia, serif;
	color: #b05e27;
	position: absolute;
	top: -20px;
	left: -10px;
	opacity: 0.3;
}

/* === PRICING SECTION === */
.mp-pricing-card {
	padding: 30px;
	background: rgba(23, 15, 15, 0.7);
	border-radius: 6px;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.mp-pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mp-pricing-header {
	text-align: center;
	padding-bottom: 20px;

	margin-bottom: 20px;
}

.mp-pricing-title {
	font-size: 1.75rem;
	margin-bottom: 15px;
	color: #fff;
}

.mp-pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.mp-pricing-period {
	font-size: 0.9rem;
	opacity: 0.7;
	color: #fff;
}

.mp-pricing-features {
	flex: 1;
	margin-bottom: 25px;
}

.mp-pricing-feature {
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.mp-pricing-feature i {
	color: #b05e27;
}

.mp-pricing-footer {
	text-align: center;
}

.mp-pricing-highlighted {
	position: relative;
	overflow: hidden;
	border-color: #b05e27;
}

/* === CONTACT SECTION === */
.mp-contact-form {
	padding: 30px;
	background: rgba(26, 26, 26, 0.7);
	border-radius: 6px;
	border: 1px solid #b05e27;
}

.mp-form-group {
	margin-bottom: 20px;
}

.mp-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.mp-form-input {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	transition: all 0.3s ease;
	color: #fff;
}

.mp-form-input:focus {
	border-color: #b05e27;
	outline: none;
	box-shadow: 0 0 0 3px #b05e27;
}

.mp-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.mp-form-error {
	color: #b05e27;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.mp-error-message {
	display: block;
	color: #b05e27;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.mp-form-input.error {
	border-color: #b05e27;
}

.mp-form-input.error + .mp-form-error {
	display: block;
}

.mp-form-input.success {
	border-color: #29ff5b;
}

/* Content Section */

.mp-legal-header {
	padding: 6rem 0;
}
.mp-legal-content {
	padding: 2rem 0;
}

.mp-legal-section {
	margin-bottom: 3rem;
}

.mp-legal-section-title {
	color: #b05e27;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

/* Lists */
.mp-legal-list {
	margin: 1rem 0;
}

.mp-legal-list li {
	margin-bottom: 1rem;
	padding-left: 0.5rem;
}

.mp-legal-list strong {
	color: #b05e27;
}

/* Table */
.mp-cookie-table-container {
	overflow-x: auto;
	margin: 2rem 0;
}

.mp-cookie-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #1a1a1a;
}

.mp-cookie-table th,
.mp-cookie-table td {
	padding: 1rem;
	text-align: left;
	border: 1px solid #333;
}

.mp-cookie-table th {
	background-color: #b05e27;
	color: white;
	font-weight: 600;
}

.mp-cookie-table tr:nth-child(even) {
	background-color: #252525;
}

/* Links */
.mp-legal-link {
	color: #b05e27;
	text-decoration: none;
	word-wrap: break-word;
	transition: color 0.3s ease;
}

.mp-legal-link:hover {
	color: #b05e27;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.mp-legal-title {
		font-size: 2rem;
	}

	.mp-legal-section-title {
		font-size: 1.5rem;
	}

	.mp-cookie-table th,
	.mp-cookie-table td {
		padding: 0.8rem;
		font-size: 0.9rem;
	}
}

/* === FOOTER === */
.mp-footer {
	background-color: #0a0a0a;
	padding: 60px 0 20px;
}

.mp-footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	margin-bottom: 50px;
}

.mp-footer-column {
	flex: 1;
	min-width: 200px;
}

.mp-footer-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.mp-footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #fff;
}

.mp-footer-link {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.mp-footer-link:hover {
	opacity: 1;
	color: #b05e27;
}

.mp-footer-contact-item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.mp-footer-bottom {
	text-align: center;
	padding-top: 20px;
	color: #fff;
}

.mp-copyright {
	opacity: 0.7;
	font-size: 0.9rem;
	color: #fff;
}

/* === COOKIE CONSENT === */
.mp-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 6px;
	padding: 20px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: none;
	max-width: 1000px;
	border: 3px solid #b05e27;
	/* backdrop-filter: blur(10px); */
}

.mp-cookie-popup.active {
	display: block;
	animation: fadeIn 0.5s forwards;
}

.mp-cookie-content {
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.mp-cookie-content p a {
	color: #b05e27;
}

.mp-cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes drawLine {
	0% {
		stroke-dashoffset: 1000;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes pulseCircle {
	0% {
		opacity: 0;
		r: 5;
	}
	50% {
		opacity: 1;
		r: 8;
	}
	100% {
		opacity: 0;
		r: 5;
	}
}

/* === UTILITIES === */
.mp-text-primary {
	color: #b05e27;
}

.mp-text-secondary {
	color: #29ff5b;
}

.mp-bg-primary {
	background-color: #b05e27;
}

.mp-bg-secondary {
	background-color: #29ff5b;
}

.mp-mb-1 {
	margin-bottom: 0.5rem;
}

.mp-mb-2 {
	margin-bottom: 1rem;
}

.mp-mb-3 {
	margin-bottom: 1.5rem;
}

.mp-mb-4 {
	margin-bottom: 2rem;
}

.mp-mb-5 {
	margin-bottom: 3rem;
}

.mp-mt-1 {
	margin-top: 0.5rem;
}

.mp-mt-2 {
	margin-top: 1rem;
}

.mp-mt-3 {
	margin-top: 1.5rem;
}

.mp-mt-4 {
	margin-top: 2rem;
}

.mp-mt-5 {
	margin-top: 3rem;
}

.mp-mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mp-text-center {
	text-align: center;
}

.mp-w-100 {
	width: 100%;
}

.mp-d-flex {
	display: flex;
}

.mp-justify-center {
	justify-content: center;
}

.mp-align-center {
	align-items: center;
}

.mp-flex-column {
	flex-direction: column;
}

.mp-gap-1 {
	gap: 0.5rem;
}

.mp-gap-2 {
	gap: 1rem;
}

.mp-gap-3 {
	gap: 1.5rem;
}

.mp-invisible {
	visibility: hidden;
}

.mp-visible {
	visibility: visible;
}

.mp-cookie-table-container {
	overflow-x: auto;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
	.mp-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.mp-hero-title {
		font-size: 3.5rem;
	}
}

@media (max-width: 992px) {
	.mp-hero-title {
		font-size: 3rem;
	}

	.mp-col-2,
	.mp-col-3 {
		flex-basis: 100%;
		max-width: 100%;
	}

	.mp-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.mp-pricing-cards {
		flex-direction: column;
		gap: 30px;
	}

	.mp-pricing-card {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.mp-nav-list {
		position: fixed;
		top: 100%;
		left: 0;
		width: 100%;
		height: 0;
		flex-direction: column;
		background-color: #2c2323;
		overflow: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
	}

	.mp-nav-list.active {
		height: auto;
		padding: 20px 0;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

	.mp-mobile-toggle {
		display: flex;
	}

	.mp-mobile-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
	}

	.mp-mobile-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.mp-mobile-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.mp-nav-item {
		margin: 10px 0;
	}

	.mp-hero-content {
		text-align: center;
		margin: 0 auto;
		margin-bottom: 50px;
	}

	.mp-hero-buttons {
		justify-content: center;
	}

	.mp-grid-2,
	.mp-grid-3,
	.mp-grid-4 {
		grid-template-columns: 1fr;
	}

	.mp-hero-title {
		font-size: 2.5rem;
	}

	.mp-section-title {
		font-size: 2.25rem;
	}

	.mp-footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.mp-footer-column {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.mp-hero-title {
		font-size: 2.2rem;
	}

	.mp-hero-subtitle {
		font-size: 1.3rem;
	}

	.mp-section-title {
		font-size: 1.75rem;
	}

	.mp-hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.mp-btn {
		width: 100%;
	}

	.mp-cookie-buttons {
		flex-direction: column;
	}

	.mp-cookie-popup {
		width: 90%;
		max-width: none;
	}
}
