/**
 * Estilos modernos para la Homepage de Molduras Parthenon
 * Tema: porto-child
 */

:root {
	--mp-forest: #2a3c30;
	--mp-forest-dark: #19251d;
	--mp-forest-light: #3d5646;
	--mp-accent: #c49a5b;
	--mp-sand: #f8f6f0;
	--mp-sand-soft: #f2efe7;
	--mp-ink: #181d19;
	--mp-muted: #646e66;
	--mp-line: #e3e7e2;
	--mp-white: #ffffff;
	--mp-wa: #25d366;
	--mp-wa-dark: #1ea952;
	--mp-radius-sm: 6px;
	--mp-radius-md: 12px;
	--mp-radius-lg: 20px;
	--mp-shadow-sm: 0 4px 12px rgba(24, 29, 25, 0.05);
	--mp-shadow-md: 0 10px 30px rgba(24, 29, 25, 0.08);
	--mp-shadow-lg: 0 20px 45px rgba(24, 29, 25, 0.13);
}

/* ========================================================
   BASE & RESET CONTAINER
   ======================================================== */
.mp-home {
	color: var(--mp-ink);
	font-family: inherit;
	background: #ffffff;
	overflow-x: hidden;
}

.mp-home * {
	box-sizing: border-box;
}

.mp-shell {
	width: min(1220px, calc(100% - 40px));
	margin: 0 auto;
}

.mp-shell--narrow {
	width: min(900px, calc(100% - 40px));
}

/* Tipografías y Eyebrow */
.mp-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--mp-forest);
	margin-bottom: 8px;
}

.mp-eyebrow--light {
	color: var(--mp-accent);
}

.mp-section {
	padding: 80px 0;
}

.mp-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.mp-section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 48px;
}

.mp-section-title {
	font-size: clamp(28px, 3.8vw, 42px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.035em;
	color: var(--mp-ink);
	margin: 0 0 8px;
}

.mp-section-desc {
	font-size: 16px;
	color: var(--mp-muted);
	margin: 0;
	max-width: 600px;
	line-height: 1.5;
}

/* Botones y Enlaces Reutilizables */
.mp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: var(--mp-radius-md);
	transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
	cursor: pointer;
	line-height: 1;
}

.mp-btn--primary {
	background: var(--mp-forest);
	color: #ffffff !important;
	border: 1px solid var(--mp-forest);
	box-shadow: 0 4px 14px rgba(42, 60, 48, 0.2);
}

.mp-btn--primary:hover {
	background: var(--mp-forest-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(42, 60, 48, 0.3);
	color: #ffffff !important;
}

.mp-btn--whatsapp {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.mp-btn--whatsapp:hover {
	background: var(--mp-wa);
	border-color: var(--mp-wa);
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.mp-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mp-forest) !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	padding-bottom: 4px;
	border-bottom: 2px solid var(--mp-forest);
	transition: gap 0.2s, color 0.2s;
}

.mp-link-btn:hover {
	gap: 12px;
	color: var(--mp-accent) !important;
	border-bottom-color: var(--mp-accent);
}

.mp-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.04em;
	backdrop-filter: blur(6px);
}

.mp-pill__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mp-accent);
	box-shadow: 0 0 10px var(--mp-accent);
}

.mp-pill--light {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================================
   1. HERO SECTION
   ======================================================== */
.mp-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	background-color: var(--mp-forest-dark);
	background-image: var(--mp-hero-bg);
	background-size: cover;
	background-position: center;
	color: #ffffff;
	padding: 90px 0 70px;
}

.mp-hero__backdrop {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(20, 29, 23, 0.94) 0%,
		rgba(20, 29, 23, 0.82) 48%,
		rgba(20, 29, 23, 0.45) 100%
	);
	pointer-events: none;
}

.mp-hero__shell {
	position: relative;
	z-index: 2;
}

.mp-hero__content {
	max-width: 720px;
}

.mp-hero__title {
	margin: 20px 0 18px;
	font-size: clamp(38px, 5.2vw, 68px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.mp-hero__accent {
	font-family: Georgia, 'Playfair Display', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--mp-accent);
}

.mp-hero__lead {
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.6;
	color: #e4ece3;
	margin: 0 0 32px;
	max-width: 620px;
}

.mp-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.mp-hero__stats {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mp-hero__stat-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mp-hero__stat-item strong {
	font-size: 24px;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.mp-hero__stat-item span {
	font-size: 12px;
	color: #bac8bb;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mp-hero__stat-divider {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.16);
}

/* ========================================================
   2. TRUST BAR / BENEFICIOS
   ======================================================== */
.mp-trust-bar {
	background: var(--mp-sand);
	border-bottom: 1px solid var(--mp-line);
	padding: 24px 0;
}

.mp-trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.mp-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 12px;
}

.mp-trust-item__icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: var(--mp-radius-md);
	background: #ffffff;
	border: 1px solid var(--mp-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mp-forest);
	box-shadow: var(--mp-shadow-sm);
}

.mp-trust-item__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mp-trust-item__text strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--mp-ink);
}

.mp-trust-item__text span {
	font-size: 12px;
	color: var(--mp-muted);
}

/* ========================================================
   3. CATEGORÍAS SHOWCASE
   ======================================================== */
.mp-section--categories {
	background: #ffffff;
}

.mp-categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.mp-cat-card {
	position: relative;
	min-height: 290px;
	border-radius: var(--mp-radius-md);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	text-decoration: none !important;
	background-color: var(--mp-forest);
	background-image: var(--mp-cat-bg);
	background-size: cover;
	background-position: center;
	box-shadow: var(--mp-shadow-sm);
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}

.mp-cat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--mp-shadow-lg);
}

.mp-cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 18, 0.1) 0%,
		rgba(15, 23, 18, 0.65) 60%,
		rgba(15, 23, 18, 0.92) 100%
	);
	transition: background 0.3s;
}

.mp-cat-card:hover .mp-cat-card__overlay {
	background: linear-gradient(
		180deg,
		rgba(15, 23, 18, 0.15) 0%,
		rgba(15, 23, 18, 0.75) 55%,
		rgba(15, 23, 18, 0.96) 100%
	);
}

.mp-cat-card__content {
	position: relative;
	z-index: 2;
	padding: 22px;
	width: 100%;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mp-cat-card__badge {
	align-self: flex-start;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 8px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	backdrop-filter: blur(4px);
}

.mp-cat-card__title {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
	margin: 0;
}

.mp-cat-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 700;
	color: var(--mp-accent);
	margin-top: 4px;
}

.mp-cat-card__arrow {
	font-size: 18px;
	transition: transform 0.25s;
}

.mp-cat-card:hover .mp-cat-card__arrow {
	transform: translateX(4px);
}

/* ========================================================
   4. PRODUCTOS DESTACADOS
   ======================================================== */
.mp-section--products {
	background: var(--mp-sand);
}

.mp-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mp-product-card {
	background: #ffffff;
	border-radius: var(--mp-radius-md);
	border: 1px solid var(--mp-line);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}

.mp-product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--mp-shadow-md);
	border-color: #cbd3cc;
}

.mp-product-card__thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #f4f6f3;
	overflow: hidden;
}

.mp-product-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.mp-product-card:hover .mp-product-card__thumb img {
	transform: scale(1.05);
}

.mp-badge--sale {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	background: #d9534f;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 4px;
	z-index: 2;
}

.mp-product-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mp-product-card__category {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--mp-muted);
	margin-bottom: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mp-product-card__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 14px;
	min-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mp-product-card__title a {
	color: var(--mp-ink) !important;
	text-decoration: none !important;
}

.mp-product-card__title a:hover {
	color: var(--mp-forest) !important;
}

.mp-product-card__price-row {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 16px;
}

.mp-product-card__price {
	font-size: 18px;
	font-weight: 900;
	color: var(--mp-ink);
}

.mp-product-card__price .amount {
	font-size: 19px;
	font-weight: 900;
	color: var(--mp-ink);
}

.mp-product-card__price del {
	font-size: 13px;
	color: var(--mp-muted);
	font-weight: normal;
	margin-right: 6px;
}

.mp-product-card__price ins {
	text-decoration: none;
	color: var(--mp-forest);
}

.mp-product-card__unit {
	font-size: 11px;
	color: var(--mp-muted);
	font-weight: 600;
	text-transform: capitalize;
}

.mp-product-card__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
}

.mp-product-card__btn {
	flex-grow: 1;
	padding: 10px 14px;
	background: var(--mp-sand-soft);
	border: 1px solid var(--mp-line);
	color: var(--mp-ink) !important;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	border-radius: var(--mp-radius-sm);
	transition: all 0.2s;
}

.mp-product-card__btn:hover {
	background: var(--mp-forest);
	border-color: var(--mp-forest);
	color: #ffffff !important;
}

.mp-product-card__wa-icon {
	width: 38px;
	height: 38px;
	border-radius: var(--mp-radius-sm);
	background: #eafaf1;
	border: 1px solid #c3edd3;
	color: #128c7e;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition: all 0.2s;
	flex-shrink: 0;
}

.mp-product-card__wa-icon:hover {
	background: var(--mp-wa);
	border-color: var(--mp-wa);
	color: #ffffff;
	transform: scale(1.05);
}

/* ========================================================
   5. COTIZADOR EXPRESS / CALCULADOR
   ======================================================== */
.mp-section--calculator {
	background: #ffffff;
	padding: 60px 0;
}

.mp-calc-box {
	background: linear-gradient(135deg, var(--mp-forest-dark) 0%, var(--mp-forest) 100%);
	border-radius: var(--mp-radius-lg);
	padding: 56px 48px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
	color: #ffffff;
	box-shadow: var(--mp-shadow-lg);
}

.mp-calc-box__copy h2 {
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	color: #ffffff;
	margin: 18px 0 14px;
	letter-spacing: -0.03em;
}

.mp-calc-box__copy p {
	font-size: 16px;
	line-height: 1.6;
	color: #dce7db;
	margin: 0 0 28px;
}

.mp-calc-box__benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mp-calc-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}

.mp-calc-benefit svg {
	color: var(--mp-accent);
	flex-shrink: 0;
}

.mp-calc-box__form {
	background: #ffffff;
	padding: 32px;
	border-radius: var(--mp-radius-md);
	color: var(--mp-ink);
	box-shadow: var(--mp-shadow-md);
}

.mp-quote-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mp-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mp-form-group label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--mp-ink);
}

.mp-form-group select,
.mp-form-group input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border-radius: var(--mp-radius-sm);
	border: 1px solid var(--mp-line);
	background: var(--mp-sand);
	font-size: 14px;
	color: var(--mp-ink);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.mp-form-group select:focus,
.mp-form-group input:focus {
	border-color: var(--mp-forest);
	box-shadow: 0 0 0 3px rgba(42, 60, 48, 0.12);
	background: #ffffff;
}

.mp-btn--quote {
	width: 100%;
	height: 48px;
	background: var(--mp-wa);
	color: #ffffff !important;
	border: none;
	font-size: 15px;
	font-weight: 800;
	margin-top: 6px;
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.mp-btn--quote:hover {
	background: var(--mp-wa-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.mp-form-hint {
	font-size: 11px;
	color: var(--mp-muted);
	text-align: center;
	margin: 4px 0 0;
}

/* ========================================================
   6. POR QUÉ ELEGIRNOS (FEATURES)
   ======================================================== */
.mp-section--features {
	background: var(--mp-sand);
}

.mp-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mp-feature-card {
	background: #ffffff;
	border: 1px solid var(--mp-line);
	border-radius: var(--mp-radius-md);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.25s, box-shadow 0.25s;
}

.mp-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mp-shadow-md);
	border-color: #cbd3cc;
}

.mp-feature-card__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--mp-radius-md);
	background: rgba(42, 60, 48, 0.08);
	color: var(--mp-forest);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mp-feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--mp-ink);
	margin: 0;
	line-height: 1.3;
}

.mp-feature-card p {
	font-size: 14px;
	color: var(--mp-muted);
	line-height: 1.6;
	margin: 0;
}

/* ========================================================
   7. INSPIRACIÓN Y AMBIENTES
   ======================================================== */
.mp-section--inspiration {
	background: #ffffff;
}

.mp-inspo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mp-inspo-card {
	background: var(--mp-sand);
	border: 1px solid var(--mp-line);
	border-radius: var(--mp-radius-md);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	transition: all 0.3s;
}

.mp-inspo-card:hover {
	background: #ffffff;
	border-color: var(--mp-forest);
	box-shadow: var(--mp-shadow-md);
	transform: translateY(-4px);
}

.mp-inspo-card__tag {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mp-forest);
	background: rgba(42, 60, 48, 0.1);
	padding: 4px 10px;
	border-radius: 4px;
	align-self: flex-start;
}

.mp-inspo-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--mp-ink);
	margin: 4px 0 0;
}

.mp-inspo-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--mp-muted);
	margin: 0;
}

/* ========================================================
   8. PREGUNTAS FRECUENTES (FAQ)
   ======================================================== */
.mp-section--faq {
	background: var(--mp-sand);
}

.mp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mp-faq-item {
	background: #ffffff;
	border: 1px solid var(--mp-line);
	border-radius: var(--mp-radius-md);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.mp-faq-item[open] {
	border-color: var(--mp-forest);
	box-shadow: var(--mp-shadow-sm);
}

.mp-faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 700;
	color: var(--mp-ink);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.mp-faq-item__question::-webkit-details-marker {
	display: none;
}

.mp-faq-item__chevron {
	font-size: 22px;
	font-weight: 400;
	color: var(--mp-forest);
	line-height: 1;
	transition: transform 0.25s;
}

.mp-faq-item[open] .mp-faq-item__chevron {
	transform: rotate(45deg);
}

.mp-faq-item__answer {
	padding: 0 24px 22px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--mp-muted);
}

.mp-faq-item__answer p {
	margin: 0;
}

/* ========================================================
   9. BANNER CTA FINAL
   ======================================================== */
.mp-final-cta {
	background: linear-gradient(135deg, var(--mp-forest-dark) 0%, var(--mp-forest) 100%);
	color: #ffffff;
	padding: 80px 0;
	text-align: center;
}

.mp-final-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.mp-final-cta__copy {
	max-width: 680px;
}

.mp-final-cta__copy h2 {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 8px 0 14px;
	letter-spacing: -0.03em;
}

.mp-final-cta__copy p {
	font-size: 17px;
	line-height: 1.6;
	color: #dce7db;
	margin: 0;
}

.mp-final-cta__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.mp-btn--whatsapp-large {
	background: var(--mp-wa);
	color: #ffffff !important;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 800;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.mp-btn--whatsapp-large:hover {
	background: var(--mp-wa-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.mp-btn--outline-light {
	background: transparent;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 16px 28px;
	font-size: 15px;
	font-weight: 700;
}

.mp-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
	color: #ffffff !important;
	transform: translateY(-2px);
}

/* ========================================================
   RESPONSIVE MEDIA QUERIES
   ======================================================== */
@media (max-width: 1080px) {
	.mp-trust-bar__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.mp-categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mp-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mp-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.mp-calc-box {
		grid-template-columns: 1fr;
		padding: 40px 30px;
	}
}

@media (max-width: 768px) {
	.mp-section {
		padding: 60px 0;
	}
	.mp-hero {
		min-height: 520px;
		padding: 60px 0 50px;
	}
	.mp-hero__title {
		font-size: 34px;
	}
	.mp-hero__stats {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.mp-hero__stat-divider {
		display: none;
	}
	.mp-section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 28px;
	}
	.mp-inspo-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 540px) {
	.mp-trust-bar__inner {
		grid-template-columns: 1fr;
	}
	.mp-categories-grid {
		grid-template-columns: 1fr;
	}
	.mp-products-grid {
		grid-template-columns: 1fr;
	}
	.mp-features-grid {
		grid-template-columns: 1fr;
	}
	.mp-calc-box {
		padding: 30px 20px;
	}
	.mp-calc-box__form {
		padding: 22px 18px;
	}
	.mp-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.mp-final-cta__actions {
		flex-direction: column;
		width: 100%;
	}
	.mp-final-cta__actions .mp-btn {
		width: 100%;
	}
}
