:root {
	--primary-accent: #6067af;
	--site-bg: #ffffff;
	--light-bg: #f4f5f7;
	--section-bg: #fafafa;
	--dark-bg: #121212;
	--card-dark: #333333;
	--heading-color: #333333;
	--text-color: #272626;
	--muted-text: #7a7a7a;
	--text-on-dark: #ffffff;
	--font-heading: "Montserrat", Arial, Helvetica, sans-serif;
	--font-body: "Montserrat", Arial, Helvetica, sans-serif;
	--container: 748px;
}

@media (min-width: 576px) {
	:root { --container: 992px; }
}

@media (min-width: 960px) {
	:root { --container: 1140px; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
	background: var(--site-bg);
}

img { max-width: 100%; height: auto; display: block; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 15px;
}

a { color: var(--primary-accent); text-decoration: none; }

/* Header */

.site-header {
	background: var(--site-bg);
	border-bottom: 1px solid var(--light-bg);
	position: relative;
	z-index: 100;
}

/* Neve header uses a wider container (1170px) than Elementor content (1140px) */
.site-header .container { max-width: 1170px; }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	flex-wrap: wrap;
}

.logo img { max-width: 164px; height: auto; }

.nav-toggle {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	order: 2;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-color);
}

.main-nav {
	order: 3;
	flex-basis: 100%;
	display: none;
}

.main-nav.open { display: block; }

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav > ul > li {
	border-top: 1px solid var(--light-bg);
}

.main-nav > ul > li > a {
	display: block;
	padding: 12px 4px;
	text-decoration: none;
	color: var(--text-color);
	font-family: var(--font-heading);
	font-weight: 500;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a:focus {
	color: var(--primary-accent);
}

.main-nav .dropdown {
	display: none;
	padding-left: 15px;
}

.main-nav .has-dropdown.open .dropdown { display: block; }

.main-nav .dropdown li a {
	padding: 10px 4px;
	font-weight: 400;
	font-size: 0.95em;
}

.accio-badge {
	order: 4;
	margin-left: auto;
}

.accio-badge img { width: 90px; height: auto; }

@media (min-width: 960px) {
	.header-inner { flex-wrap: nowrap; }
	.nav-toggle { display: none; }
	.main-nav {
		order: 2;
		flex-basis: auto;
		display: block;
	}
	.main-nav > ul {
		display: flex;
		align-items: center;
		gap: 20px;
	}
	.main-nav > ul > li {
		border-top: none;
		position: relative;
	}
	.main-nav > ul > li > a {
		padding: 10px 4px;
		white-space: nowrap;
	}
	.main-nav .has-dropdown:hover .dropdown,
	.main-nav .has-dropdown:focus-within .dropdown {
		display: block;
	}
	.main-nav .dropdown {
		position: absolute;
		top: 100%;
		left: 0;
		background: var(--site-bg);
		box-shadow: 0 8px 20px rgba(0,0,0,0.12);
		min-width: 180px;
		padding: 8px 0;
		z-index: 10;
	}
	.main-nav .dropdown li a { padding: 8px 16px; }
	.accio-badge { order: 3; }
	.accio-badge img { width: 110px; }
}

/* Hero */

.hero {
	background-image: url("../img/hero-bg.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #7c7ed5;
	background-blend-mode: luminosity;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	padding: 60px 20px;
	margin: 20px 0 40px;
}

/* Same light lilac treatment as the interior bands, keeping the
   neuron texture visible. */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #7c7ed5;
	opacity: 0.45;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.4;
}

.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	text-align: center;
	color: var(--text-on-dark);
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-on-dark);
	margin: 0 0 20px;
}

.hero h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--text-on-dark);
	margin: 50px 20px;
}

.hero .divider {
	width: 20%;
	max-width: 120px;
	height: 1.5px;
	background: var(--text-on-dark);
	margin: 0 auto;
}

@media (min-width: 960px) {
	.hero {
		min-height: 400px;
		padding: 0 40px;
		margin: 40px 0;
	}
	.hero h1 { font-size: 40px; line-height: 40px; }
	.hero h2 { font-size: 32px; }
}

/* Clients carousel */

.clients {
	padding: 30px 0 10px;
}

.carousel {
	display: flex;
	align-items: center;
	gap: 10px;
}

.carousel-viewport {
	overflow: hidden;
	flex: 1;
}

.carousel-track {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: transform 0.5s ease;
}

.carousel-track li {
	flex: 0 0 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
}

@media (min-width: 768px) {
	.carousel-track li { flex-basis: 25%; }
}

.carousel-track img {
	max-height: 70px;
	width: auto;
	margin: 0 auto;
	transition: transform 0.2s ease;
}

.carousel-track img:hover {
	transform: scale(1.05);
}

.carousel-btn {
	background: none;
	border: 1px solid var(--light-bg);
	color: var(--text-color);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
}

.carousel-btn:hover { border-color: var(--primary-accent); color: var(--primary-accent); }

/* Feature image */

.feature-image {
	padding: 10px 0 40px;
}

.feature-image img {
	margin: 0 auto;
}

@media (min-width: 960px) {
	.feature-image img { width: 70%; }
}

/* Footer */

/* The original site hides all footer content via custom CSS */
.site-footer { display: none; }

/* Page hero (interior pages) */

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	background-size: cover;
	background-position: center;
	/* Recolor each photo to the neuron lilac hue while keeping its FULL
	   texture and contrast (luminosity blend). A light veil only nudges
	   the darkest images up so the tone stays roughly consistent. */
	background-color: #7c7ed5;
	background-blend-mode: luminosity;
	text-align: center;
}

/* Light lilac veil — just enough to unify the hue, keeps texture crisp */
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #7c7ed5;
	opacity: 0.45;
}

/* Darkening so the white heading stays legible over the textured band.
   The stone bands sit a touch lighter than the neuron ones. */
.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.24;
}

/* Estrategia uses the neuron photo (like the home) — keep it a notch
   darker than the stone bands so the two neuron bands stay in sync. */
.page-hero.band-neuron::after {
	opacity: 0.4;
}

.page-hero.solid::before { content: none; }

/* Lighter variant for the darker page-hero-6 photo (Planificación,
   Quiénes somos): a lighter lilac veil at higher opacity lifts the
   band, and less darkening keeps it clearer, matching the others. */
.page-hero.band-light::before {
	background: #9698dd;
	opacity: 0.6;
}

.page-hero.band-light::after {
	opacity: 0.22;
}

.page-hero h1 {
	position: relative;
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 600;
	line-height: 1;
	color: var(--text-on-dark);
	margin: 0;
}

.page-hero .hero-inner { position: relative; z-index: 1; }

.page-hero .divider {
	width: 20%;
	min-width: 100px;
	height: 1.5px;
	background: var(--text-on-dark);
	margin: 25px auto 0;
}

@media (min-width: 960px) {
	.page-hero { padding: 150px 60px; }
	.page-hero h1 { font-size: 40px; line-height: 40px; }
}

/* Purple panels (El sector / Aplicaciones) */

.sector-intro {
	padding: 60px 20px;
}

@media (min-width: 960px) {
	.sector-intro { padding: 100px 0; }
}

.sector-intro .panel-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.sector-intro .panel-grid { grid-template-columns: 1fr 1fr; }
}

.panel {
	background: var(--primary-accent);
	color: var(--text-on-dark);
	padding: 30px;
}

@media (min-width: 960px) {
	.panel { padding: 40px; }
}

.panel h2 {
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 600;
	color: var(--text-on-dark);
	text-align: center;
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.panel h2 { font-size: 30px; }
}

.panel .divider {
	width: 20%;
	height: 1.5px;
	background: var(--text-on-dark);
	margin: 0 auto 25px;
}

.panel p {
	margin: 0 0 18px;
	text-align: justify;
}

.panel ul {
	margin: 0;
	padding-left: 20px;
}

.panel ul li { margin-bottom: 8px; }

/* Generic content sections */

/* Process pages (Estrategia / Planificación / Ejecución) */

.process-panels {
	background: var(--site-bg);
	padding: 60px 20px;
}

@media (min-width: 960px) {
	.process-panels { padding: 100px 0; }
}

.process-panels > .container { max-width: 1300px; }

.process-panels > .container > .divider {
	width: 20%;
	height: 1.5px;
	background: #000000;
	margin: 0 auto 60px;
}

@media (min-width: 960px) {
	.process-panels > .container > .divider { margin-bottom: 100px; }
}

.light-panel {
	background: var(--section-bg);
	color: var(--heading-color);
	padding: 20px;
}

@media (min-width: 960px) {
	.light-panel { padding: 40px; }
}

.light-panel h2 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.light-panel h2 { font-size: 24px; }
}

.light-panel .divider {
	height: 1.5px;
	background: var(--heading-color);
	width: 100%;
	margin: 0 0 20px;
}

@media (max-width: 767px) {
	.light-panel .divider { width: 20%; margin: 0 auto 20px; }
}

.light-panel p {
	margin: 0 0 15px;
	text-align: justify;
}

.panel-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 768px) {
	.panel-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.why-section {
	margin-top: 40px;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: center;
}

@media (min-width: 768px) {
	.why-grid { grid-template-columns: 45% 1fr; }
	.why-grid.split-50 { grid-template-columns: 50% 1fr; }
	.why-grid.split-45 { grid-template-columns: 44.737% 1fr; }
	.why-grid.split-43 { grid-template-columns: 43.509% 1fr; }
}

.why-section h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-accent);
	margin: 0 0 20px;
}

@media (min-width: 960px) {
	.why-section h2 { font-size: 32px; }
}

.why-section p {
	margin: 0 0 15px;
	text-align: justify;
	color: var(--muted-text);
}

.benefits-band {
	background: var(--primary-accent);
	color: var(--text-on-dark);
	margin-top: 60px;
	padding: 30px;
	text-align: center;
}

.benefits-band h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--text-on-dark);
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.benefits-band h2 { font-size: 32px; }
}

.benefits-band p { margin: 0 auto; max-width: 1100px; }

.method-section {
	margin: 110px 0 30px;
}

.method-section h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-accent);
	text-align: center;
	margin: 0 0 20px;
}

@media (min-width: 960px) {
	.method-section h2 { font-size: 32px; }
}

.method-numbers {
	display: flex;
}

.method-numbers h2 {
	margin: 15px;
	text-align: center;
}

.method-numbers .n1 { width: 29%; }
.method-numbers .n2 { width: 43%; }
.method-numbers .n3 { width: 27%; }

.method-text {
	columns: 3;
	column-gap: 70px;
	color: var(--muted-text);
}

.method-text.gap-83 { column-gap: 83px; }

.method-text p {
	margin: 0;
	text-align: justify;
	break-inside: avoid;
}

@media (max-width: 767px) {
	.method-section { margin-top: 60px; }
	.method-numbers { display: none; }
	.method-text { columns: 1; }
	.method-text p { margin-bottom: 20px; }
}

/* About (Quiénes somos) */

.about-section {
	padding: 60px 20px;
}

@media (min-width: 960px) {
	.about-section { padding: 100px 0; }
}

.about-section > .container { max-width: 1300px; }

.about-section p {
	margin: 0 0 20px;
	text-align: justify;
	color: var(--heading-color);
}

/* Related sectors (dark cards) */

.related-section {
	background: var(--site-bg);
	padding: 60px 20px;
}

@media (min-width: 960px) {
	.related-section { padding: 100px 0; }
}

.related-section > .container > .divider {
	width: 20%;
	height: 1.5px;
	background: #000000;
	margin: 0 auto 40px;
}

.related-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 40px;
}

.related-row:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
	.related-row.row-3 { grid-template-columns: repeat(3, 1fr); }
	.related-row.row-2 {
		/* Same card width as the 3-per-row track: (100% - 2 gaps) / 3 */
		grid-template-columns: repeat(2, calc((100% - 40px) / 3));
		justify-content: center;
	}
	.related-row { margin-bottom: 60px; }
	.related-row:last-child { margin-bottom: 0; }
}

.related-card {
	background: var(--card-dark);
	color: var(--text-on-dark);
	padding: 20px;
	display: flex;
	flex-direction: column;
}

@media (min-width: 960px) {
	.related-card { padding: 40px; }
}

.related-card h4 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--text-on-dark);
	text-align: center;
	margin: 0 0 15px;
}

@media (min-width: 960px) {
	.related-card h4 { font-size: 24px; }
}

.related-card .divider {
	width: 20%;
	height: 1.5px;
	background: var(--text-on-dark);
	margin: 0 auto 20px;
}

.related-list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	text-align: left;
	font-size: 0.95em;
	color: var(--text-on-dark);
	flex: 1;
}

.related-list li {
	padding: 4px 0;
}

/* Use-case bullet list (white on purple) */

.use-case-list {
	margin: 0;
	padding-left: 20px;
}

.use-case-list li {
	margin-bottom: 8px;
}

/* Application icon gallery */

.gallery-section {
	background: var(--section-bg);
	padding: 60px 20px;
}

@media (min-width: 960px) {
	.gallery-section { padding: 60px 0; }
}

.gallery-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	margin-bottom: 40px;
}

.gallery-row:last-child { margin-bottom: 0; }

.gallery-item {
	flex: 0 0 50%;
	padding: 0 10px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.gallery-item { flex: 0 0 25%; margin-bottom: 0; }
	.gallery-row.row-5 .gallery-item { flex: 0 0 20%; }
}

.gallery-icon {
	font-size: 45px;
	color: var(--card-dark);
	margin-bottom: 15px;
}

.gallery-item p {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--card-dark);
}

.btn {
	display: inline-block;
	background: var(--primary-accent);
	color: var(--text-on-dark);
	padding: 10px 20px;
	border-radius: 0;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	border: 0;
	cursor: pointer;
}

.btn:hover { opacity: 0.85; }

.related-card .btn {
	background: #ffffff;
	color: var(--card-dark);
	align-self: flex-end;
}

/* Contact page */

.contact-section {
	background: var(--primary-accent);
	color: var(--text-on-dark);
	padding: 50px 0;
}

@media (min-width: 960px) {
	.contact-section { padding: 100px 0; }
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 768px) {
	.contact-grid { grid-template-columns: 53% 1fr; }
}

.contact-grid h1 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--text-on-dark);
	margin: 0 0 25px;
}

.contact-grid h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--text-on-dark);
	margin: 0 0 15px;
}

.contact-grid .divider {
	width: 20%;
	max-width: 100px;
	height: 1px;
	background: #fff;
	margin: 0 0 20px;
}

.icon-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.icon-list li {
	padding: 5px 0;
	color: #dbdbdb;
}

.icon-list li a { color: #dbdbdb; }
.icon-list li a:hover { color: #ffffff; }

.icon-list li i {
	color: #ffffff;
	font-size: 20px;
	width: 30px;
}

.contact-form label {
	display: block;
	font-size: 0.9em;
	margin-bottom: 4px;
	font-weight: 500;
	color: #ffffff;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-radius: 3px;
	font-family: var(--font-body);
	margin-bottom: 15px;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form .btn {
	background: #ffffff;
	color: var(--card-dark);
}

/* Google Maps embed */

.map-section iframe {
	display: block;
	width: 100%;
	height: 400px;
	border: 0;
}

/* Landing promo workshop */

.landing-hero {
	background-size: cover;
	background-position: center;
	padding: 80px 20px;
	text-align: center;
}

.landing-hero h1 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-accent);
	margin: 0 0 20px;
}

.landing-hero h2 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: #54595f;
	margin: 0;
}

@media (min-width: 960px) {
	.landing-hero { padding: 120px 60px; }
	.landing-hero h1 { font-size: 40px; }
	.landing-hero h2 { font-size: 24px; }
}

.landing-intro {
	padding: 60px 20px 30px;
	text-align: center;
}

.landing-intro h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	margin: 0 0 20px;
}

.landing-intro p { max-width: 900px; margin: 0 auto 20px; }

.landing-intro .btn { margin: 30px 0; font-size: 14px; padding: 14px 28px; }

.usecase-section {
	background: var(--section-bg);
	padding: 60px 20px;
}

.usecase-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.usecase-grid { grid-template-columns: repeat(3, 1fr); }
}

.usecase-card {
	padding: 20px;
	text-align: center;
	display: block;
}

.usecase-card img {
	width: 71px;
	height: 71px;
	padding: 9px;
	margin: 0 auto 15px;
	background: var(--primary-accent);
	border-radius: 50%;
	box-sizing: border-box;
	transition: transform 0.3s ease;
}

.usecase-card:hover img { transform: scale(1.1); }

.usecase-card h3 {
	font-family: var(--font-heading);
	font-size: 23px;
	font-weight: 600;
	color: var(--primary-accent);
	margin: 0;
}

.landing-strategy {
	padding: 60px 20px;
	text-align: center;
}

.landing-strategy h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-accent);
	margin: 0 0 15px;
}

.landing-strategy h3 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: #54595f;
	margin: 0 0 25px;
}

.landing-strategy p { max-width: 1000px; margin: 0 auto; text-align: justify; }

.case-section {
	background: var(--section-bg);
	padding: 60px 20px;
}

.case-section h2 {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
	margin: 0 0 10px;
}

.case-section h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--primary-accent);
	text-align: center;
	margin: 0 0 30px;
}

.case-section h4 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
	margin: 40px 0 15px;
}

.case-section ul {
	max-width: 900px;
	margin: 0 auto;
	padding-left: 20px;
}

.case-section ul li { margin-bottom: 10px; }

.stats-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin: 30px 0;
	text-align: center;
}

.stat {
	flex: 0 1 300px;
}

.stat .num {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 600;
	color: var(--primary-accent);
	display: block;
	margin-bottom: 8px;
}

.stat .label {
	font-size: 15px;
	color: var(--muted-text);
}

.landing-cta {
	text-align: center;
	padding: 40px 20px;
}

.landing-cta .btn { font-size: 14px; padding: 14px 28px; }

.testimonials-section {
	padding: 60px 20px;
}

.testimonials-section h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	margin: 0 0 40px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 768px) {
	.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
	text-align: center;
}

.testimonial img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 15px;
}

.testimonial blockquote {
	margin: 0 0 15px;
	font-style: italic;
	color: var(--muted-text);
}

.testimonial cite {
	font-family: var(--font-heading);
	font-style: normal;
	font-weight: 600;
	color: var(--heading-color);
}

.workshop-form-section {
	background: var(--section-bg);
	padding: 60px 20px;
}

.workshop-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 768px) {
	.workshop-grid { grid-template-columns: 1fr 1fr; }
}

.workshop-grid h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	margin: 0 0 20px;
}

.workshop-grid ul {
	margin: 0 0 30px;
	padding-left: 20px;
}

.workshop-grid ul li { margin-bottom: 10px; }

.workshop-grid .closing {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-accent);
}

.workshop-form {
	background: var(--primary-accent);
	color: var(--text-on-dark);
	padding: 40px;
}

.workshop-form h2 {
	color: var(--text-on-dark);
	text-align: center;
}

.workshop-form .divider {
	width: 20%;
	height: 1px;
	background: #ffffff;
	margin: 0 auto 25px;
}

.trusted-section {
	padding: 60px 0 40px;
}

.trusted-section h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	margin: 0 0 30px;
}

/* Legal pages */

.legal-section {
	padding: 50px 0;
}

@media (min-width: 960px) {
	.legal-section { padding: 80px 0; }
}

.legal-content {
	max-width: 900px;
}

.legal-content p { margin: 0 0 16px; text-align: justify; }

.legal-content h2,
.legal-content h3,
.legal-content .titol {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--heading-color);
	margin: 30px 0 12px;
}

.legal-content h2 { font-size: 24px; }
.legal-content h3 { font-size: 20px; }

.legal-content ul,
.legal-content ol { margin: 0 0 16px; padding-left: 22px; }

.legal-content li { margin-bottom: 8px; text-align: justify; }

.legal-content a { color: var(--primary-accent); }
.legal-content a:hover { text-decoration: underline; }

.sitemap-list {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: 40px;
}

@media (max-width: 640px) { .sitemap-list { columns: 1; } }

.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }

.sitemap-list a {
	font-family: var(--font-heading);
	font-weight: 500;
	color: var(--primary-accent);
}

.sitemap-list a:hover { text-decoration: underline; }

/* Blog */

.blog-section {
	padding: 50px 0;
}

@media (min-width: 960px) {
	.blog-section { padding: 80px 0; }
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 768px) {
	.blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
	background: var(--section-bg);
	border: 1px solid var(--light-bg);
	display: flex;
	flex-direction: column;
}

.blog-card-body { padding: 25px; }

.blog-card h2 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 8px;
}

.blog-card h2 a { color: var(--heading-color); }
.blog-card h2 a:hover { color: var(--primary-accent); }

.blog-meta {
	font-size: 13px;
	color: var(--muted-text);
	margin: 0 0 15px;
}

.blog-card .btn { margin-top: 15px; align-self: flex-start; }

/* 404 page */

.error-section {
	padding: 50px 0 70px;
	text-align: center;
}

@media (min-width: 960px) {
	.error-section { padding: 70px 0 100px; }
}

.error-code {
	font-family: var(--font-heading);
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
	color: var(--primary-accent);
	margin: 0 0 10px;
}

@media (min-width: 960px) {
	.error-code { font-size: 120px; }
}

.error-lead {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--heading-color);
	margin: 0 0 10px;
}

.error-section p { max-width: 640px; margin-left: auto; margin-right: auto; }

.error-actions { margin: 30px 0; }

.error-links {
	max-width: 640px;
	margin: 30px auto 0;
	columns: 2;
	text-align: center;
}

@media (min-width: 768px) {
	.error-links { columns: 3; }
}
