/* =========================================================
   PrestaShop Module Pages
   ========================================================= */

.presta-module-page {
	--module-max-width: 1200px;
	--module-text-width: 760px;
	--module-accent: #cd2653;
}


/* Container
--------------------------------------------------------- */

.presta-module-container {
	width: min(
		calc(100% - 48px),
		var(--module-max-width)
	);
	margin-left: auto;
	margin-right: auto;
}


/* Hero
--------------------------------------------------------- */

.presta-module-hero {
	padding: 90px 0 100px;
	overflow: hidden;
}

.presta-module-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: 70px;
}

.presta-module-eyebrow {
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--module-accent);
}

.presta-module-hero h1 {
	max-width: 650px;
	margin: 0 0 28px;
	font-size: clamp(48px, 6vw, 76px);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.presta-module-hero__description {
	max-width: 620px;
	margin-bottom: 32px;
	font-size: 20px;
	line-height: 1.6;
	color: #555;
}

.presta-module-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.presta-module-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 999px;
	background: var(--module-accent);
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none !important;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.presta-module-button:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.presta-module-hero__visual {
	position: relative;
}

.presta-module-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.12),
		0 8px 24px rgba(0, 0, 0, 0.08);
}


/* Capabilities
--------------------------------------------------------- */

.presta-module-capabilities {
	border-top: 1px solid #e6e3dd;
	border-bottom: 1px solid #e6e3dd;
}

.presta-module-capabilities__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.presta-module-capability {
	padding: 28px 24px;
	border-right: 1px solid #e6e3dd;
}

.presta-module-capability:first-child {
	padding-left: 0;
}

.presta-module-capability:last-child {
	padding-right: 0;
	border-right: 0;
}

.presta-module-capability strong {
	display: block;
	margin-bottom: 7px;
	font-size: 17px;
}

.presta-module-capability span {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}


/* Content
--------------------------------------------------------- */

.presta-module-content {
	padding: 100px 0;
}

.presta-module-container--content {
	max-width: 960px;
}

.presta-module-content h2 {
	margin-top: 80px;
	margin-bottom: 24px;
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.presta-module-content h3 {
	margin-top: 50px;
	margin-bottom: 18px;
}

.presta-module-content p,
.presta-module-content li {
	font-size: 18px;
	line-height: 1.7;
}

.presta-module-content table {
	width: 100%;
}


/* Final CTA
--------------------------------------------------------- */

.presta-module-final-cta {
	padding: 90px 0;
	text-align: center;
	background: #f5efe0;
}

.presta-module-final-cta h2 {
	margin: 0 0 28px;
	font-size: clamp(34px, 4vw, 52px);
	letter-spacing: -0.03em;
}


/* Responsive
--------------------------------------------------------- */

@media (max-width: 900px) {

	.presta-module-hero {
		padding: 60px 0 70px;
	}

	.presta-module-hero__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.presta-module-capabilities__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.presta-module-capability {
		border-bottom: 1px solid #e6e3dd;
	}

	.presta-module-capability:nth-child(2) {
		border-right: 0;
	}

	.presta-module-capability:nth-child(3),
	.presta-module-capability:nth-child(4) {
		border-bottom: 0;
	}
}


@media (max-width: 600px) {

	.presta-module-container {
		width: min(
			calc(100% - 32px),
			var(--module-max-width)
		);
	}

	.presta-module-hero h1 {
		font-size: 46px;
	}

	.presta-module-hero__description {
		font-size: 18px;
	}

	.presta-module-capabilities__grid {
		grid-template-columns: 1fr;
	}

	.presta-module-capability {
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid #e6e3dd;
	}

	.presta-module-capability:last-child {
		border-bottom: 0;
	}

	.presta-module-content {
		padding: 60px 0;
	}

}
/* =========================================================
   Content styling
   ========================================================= */

.presta-module-content {
	color: #202020;
}

.presta-module-content p {
	max-width: 760px;
}


/* Headings
--------------------------------------------------------- */

.presta-module-content h2 {
	position: relative;
	max-width: 820px;
	margin-top: 96px;
	margin-bottom: 28px;
}

.presta-module-content h2:first-child {
	margin-top: 0;
}

.presta-module-content h2::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: var(--module-accent);
}

.presta-module-content h3 {
	max-width: 760px;
	margin-top: 46px;
	margin-bottom: 14px;
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.02em;
}


/* Lists
--------------------------------------------------------- */

.presta-module-content ul {
	max-width: 760px;
	margin: 28px 0 34px;
	padding: 0;
	list-style: none;
}

.presta-module-content ul li {
	position: relative;
	margin: 0;
	padding: 9px 0 9px 32px;
	font-size: 17px;
	line-height: 1.6;
}

.presta-module-content ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 9px;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: #eef6ef;
	color: #3d8750;
	font-size: 13px;
	font-weight: 700;
	line-height: 21px;
	text-align: center;
}


/* Links in content
--------------------------------------------------------- */

.presta-module-content a {
	color: var(--module-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.presta-module-content a:hover {
	text-decoration-thickness: 2px;
}


/* FAQ
--------------------------------------------------------- */

.presta-module-content h2 + h3 {
	margin-top: 24px;
}

.presta-module-content h3 {
	padding: 22px 24px 6px;
	margin-bottom: 0;
	border-top: 1px solid #e5e1d9;
}

.presta-module-content h3 + p {
	padding: 0 24px 22px;
	margin-top: 8px;
	border-bottom: 1px solid #e5e1d9;
}

.presta-module-content h3::before {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	float: right;
	width: 28px;
	height: 28px;
	margin-left: 20px;
	border: 1px solid #ddd8cf;
	border-radius: 50%;
	color: var(--module-accent);
	font-size: 18px;
	font-weight: 400;
}


/* Feature-like paragraphs after headings
--------------------------------------------------------- */

.presta-module-content h2 + p,
.presta-module-content h2 + ul {
	margin-top: 0;
}


/* Emphasis
--------------------------------------------------------- */

.presta-module-content strong {
	font-weight: 650;
}


/* Tables
--------------------------------------------------------- */

.presta-module-content table {
	max-width: 900px;
	margin: 36px 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e2ded6;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.presta-module-content th {
	padding: 15px 18px;
	background: #f5efe0;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
}

.presta-module-content td {
	padding: 14px 18px;
	border-top: 1px solid #e8e4dd;
	font-size: 16px;
	line-height: 1.5;
	vertical-align: top;
}

.presta-module-content tr > * + * {
	border-left: 1px solid #e8e4dd;
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 600px) {

	.presta-module-content h2 {
		margin-top: 68px;
	}

	.presta-module-content h2::before {
		margin-bottom: 14px;
	}

	.presta-module-content h3 {
		padding: 18px 16px 6px;
		font-size: 20px;
	}

	.presta-module-content h3 + p {
		padding: 0 16px 18px;
	}

	.presta-module-content ul li {
		padding-left: 30px;
		font-size: 16px;
	}

	.presta-module-content table {
		display: block;
		overflow-x: auto;
	}
}

.presta-module-faq-section {
	padding: 90px 0;
	background: #f7f5f0;
}

.presta-module-faq {
	max-width: 900px;
	margin: 0 auto;
}

.presta-module-faq h2 {
	margin: 0 0 38px;
}

.presta-module-faq-item {
	border-top: 1px solid #dedad2;
}

.presta-module-faq-item:last-child {
	border-bottom: 1px solid #dedad2;
}

.presta-module-faq-item summary {
	position: relative;
	padding: 24px 52px 24px 0;
	cursor: pointer;
	list-style: none;
	font-size: 20px;
	font-weight: 650;
	line-height: 1.4;
	color: #202020;
}

.presta-module-faq-item summary::-webkit-details-marker {
	display: none;
}

.presta-module-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #d5d0c7;
	border-radius: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	color: var(--module-accent);
}

.presta-module-faq-item[open] summary::after {
	content: "−";
}

.presta-module-faq-item p {
	max-width: 760px;
	margin: 0;
	padding: 0 52px 26px 0;
	font-size: 17px;
	line-height: 1.65;
	color: #555;
}

@media (max-width: 600px) {

	.presta-module-faq-section {
		padding: 60px 0;
	}

	.presta-module-faq-item summary {
		padding: 20px 44px 20px 0;
		font-size: 18px;
	}

	.presta-module-faq-item p {
		padding-right: 40px;
		font-size: 16px;
	}
}