/**
 * Landing de Sponsors LideraFest 2026.
 * Todos los selectores están encapsulados para no afectar otras páginas.
 */

body.liderafest-sponsor-page {
	margin: 0;
	background: #fff;
	overflow-x: clip;
}

/*
 * Twenty Twenty-Five envuelve el contenido en varios contenedores
 * “constrained”. En algunas páginas esos envoltorios reducían el shortcode a
 * unos 600 px en escritorio. Esta neutralización solo se aplica a la página
 * que contiene [liderafest_sponsor_page].
 */
body.liderafest-sponsor-page .wp-site-blocks,
body.liderafest-sponsor-page .wp-site-blocks > main,
body.liderafest-sponsor-page .wp-site-blocks main,
body.liderafest-sponsor-page .wp-site-blocks .wp-block-group,
body.liderafest-sponsor-page .wp-site-blocks .wp-block-post-content,
body.liderafest-sponsor-page .wp-site-blocks .entry-content,
body.liderafest-sponsor-page .wp-site-blocks .wp-block-shortcode,
body.liderafest-sponsor-page .wp-site-blocks .is-layout-constrained,
body.liderafest-sponsor-page .wp-site-blocks .is-layout-flow {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.liderafest-sponsor-page .wp-site-blocks .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.liderafest-sponsor-page .wp-site-blocks .is-layout-flow > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.liderafest-sponsor-page .wp-site-blocks > header,
body.liderafest-sponsor-page .wp-site-blocks > footer,
body.liderafest-sponsor-page .wp-block-post-title,
body.liderafest-sponsor-page .wp-block-post-featured-image {
	display: none !important;
}

body.liderafest-sponsor-page .wp-site-blocks {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.lf-sponsor {
	--lfs-navy: #0d2138;
	--lfs-navy-2: #123754;
	--lfs-teal: #25b8b4;
	--lfs-teal-dark: #128f8d;
	--lfs-coral: #f36b43;
	--lfs-coral-dark: #d94d2d;
	--lfs-gold: #f2b632;
	--lfs-gold-dark: #d99b17;
	--lfs-ink: #172230;
	--lfs-muted: #627080;
	--lfs-line: #dce6ea;
	--lfs-cream: #fffaf3;
	--lfs-cream-2: #fff4e6;
	--lfs-mist: #f5f9fa;
	--lfs-white: #fff;
	--lfs-success: #168568;
	--lfs-error: #b03a2e;
	--lfs-shell: 1320px;
	--lfs-radius: 24px;
	--lfs-shadow: 0 20px 55px rgba(13, 33, 56, 0.10);
	position: relative;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	color: var(--lfs-ink);
	background: var(--lfs-white);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow: clip;
	-webkit-font-smoothing: antialiased;
}

.lf-sponsor *,
.lf-sponsor *::before,
.lf-sponsor *::after {
	box-sizing: border-box;
}

.lf-sponsor img,
.lf-sponsor svg {
	display: block;
	max-width: 100%;
}

.lf-sponsor a {
	color: inherit;
	text-decoration: none;
}

.lf-sponsor button,
.lf-sponsor input,
.lf-sponsor select,
.lf-sponsor textarea {
	font: inherit;
}

.lf-sponsor h1,
.lf-sponsor h2,
.lf-sponsor h3,
.lf-sponsor p,
.lf-sponsor ul,
.lf-sponsor ol,
.lf-sponsor figure {
	max-width: none;
	margin-top: 0;
}

.lfs-shell {
	width: min(calc(100% - 48px), var(--lfs-shell));
	margin-inline: auto;
}

.lfs-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 12px 18px;
	border-radius: 10px;
	background: var(--lfs-navy);
	color: #fff !important;
	transform: translateY(-180%);
	transition: transform .2s ease;
}

.lfs-skip-link:focus {
	transform: translateY(0);
}

/* Header */
.lfs-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.96);
	border-bottom: 1px solid rgba(13,33,56,.08);
	backdrop-filter: blur(14px);
}

body.admin-bar .lfs-header {
	top: 32px;
}

.lfs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	height: 76px;
}

.lfs-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.lfs-brand img {
	width: 156px;
	height: 60px;
	object-fit: contain;
}

.lfs-nav {
	display: flex;
	align-items: center;
	gap: 27px;
	font-size: .86rem;
	font-weight: 750;
	color: #263342;
}

.lfs-nav > a:not(.lfs-nav__cta) {
	position: relative;
	padding-block: 25px 22px;
}

.lfs-nav > a:not(.lfs-nav__cta)::after {
	content: "";
	position: absolute;
	right: 50%;
	bottom: 16px;
	left: 50%;
	height: 2px;
	border-radius: 2px;
	background: var(--lfs-coral);
	transition: right .2s ease, left .2s ease;
}

.lfs-nav > a:hover::after,
.lfs-nav > a:focus-visible::after,
.lfs-nav > a.is-current::after {
	right: 0;
	left: 0;
}

.lfs-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 20px;
	border-radius: 12px;
	background: var(--lfs-coral);
	color: #fff !important;
	box-shadow: 0 9px 24px rgba(243,107,67,.25);
	transition: transform .2s ease, background .2s ease;
}

.lfs-nav__cta:hover,
.lfs-nav__cta:focus-visible {
	background: var(--lfs-coral-dark);
	transform: translateY(-2px);
}

.lfs-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	border: 1px solid var(--lfs-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.lfs-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin-block: 4px;
	border-radius: 999px;
	background: var(--lfs-navy);
}

/* Hero */
.lfs-hero {
	position: relative;
	isolation: isolate;
	min-height: 660px;
	background:
		radial-gradient(circle at 14% 92%, rgba(37,184,180,.10), transparent 28%),
		linear-gradient(112deg, #fffdf8 0%, #fff8ef 100%);
}

.lfs-hero__blob {
	position: absolute;
	z-index: -1;
	border-radius: 45% 55% 62% 38% / 45% 40% 60% 55%;
	filter: saturate(1.05);
}

.lfs-hero__blob--gold {
	top: -210px;
	left: -150px;
	width: 420px;
	height: 420px;
	background: var(--lfs-gold);
	transform: rotate(19deg);
}

.lfs-hero__blob--teal {
	top: -230px;
	right: -150px;
	width: 390px;
	height: 390px;
	background: var(--lfs-teal);
	transform: rotate(-10deg);
}

.lfs-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(520px, 1.22fr);
	align-items: center;
	gap: 54px;
	min-height: 660px;
	padding-block: 70px 64px;
}

.lfs-hero__copy {
	position: relative;
	z-index: 2;
}

.lfs-kicker,
.lfs-eyebrow {
	margin-bottom: 14px;
	color: var(--lfs-teal-dark);
	font-size: .83rem;
	font-weight: 900;
	letter-spacing: .14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lfs-kicker--gold,
.lfs-eyebrow--light {
	color: var(--lfs-gold);
}

.lfs-hero h1 {
	margin-bottom: 24px;
	color: var(--lfs-navy);
	font-size: clamp(3rem, 5.6vw, 5.9rem);
	font-weight: 950;
	letter-spacing: -.065em;
	line-height: .95;
}

.lfs-hero h1 span {
	display: block;
	color: var(--lfs-coral);
}

.lfs-hero__lead {
	max-width: 650px !important;
	margin-bottom: 30px;
	color: #354558;
	font-size: clamp(1.05rem, 1.45vw, 1.28rem);
	line-height: 1.65;
}

.lfs-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 26px;
	margin-bottom: 30px;
}

.lfs-button,
.lfs-link-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 850;
}

.lfs-button svg,
.lfs-link-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-button--primary {
	min-height: 54px;
	padding: 14px 24px;
	border-radius: 12px;
	background: var(--lfs-navy);
	color: #fff !important;
	box-shadow: 0 13px 30px rgba(13,33,56,.20);
	transition: transform .2s ease, background .2s ease;
}

.lfs-button--primary:hover,
.lfs-button--primary:focus-visible {
	background: var(--lfs-teal-dark);
	transform: translateY(-2px);
}

.lfs-link-arrow {
	color: var(--lfs-navy);
	text-decoration: underline;
	text-decoration-color: var(--lfs-gold);
	text-decoration-thickness: 3px;
	text-underline-offset: 7px;
}

.lfs-event-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	color: #405268;
	font-size: .93rem;
	font-weight: 800;
}

.lfs-event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lfs-event-meta svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: var(--lfs-teal-dark);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-hero__visual {
	position: relative;
	margin: 0;
	border-radius: 44px 18px 54px 30px;
	background: #f5eadf;
	box-shadow: 0 28px 70px rgba(13,33,56,.14);
	overflow: hidden;
	transform: rotate(.7deg);
}

.lfs-hero__visual::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: auto auto -46px -46px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: var(--lfs-teal);
	box-shadow: 118px 58px 0 var(--lfs-coral);
	opacity: .95;
}

.lfs-hero__visual img {
	width: 100%;
	aspect-ratio: 1.58 / 1;
	object-fit: cover;
	object-position: center;
}

/* Facts */
.lfs-facts {
	position: relative;
	z-index: 3;
	background: #fff;
	border-top: 1px solid rgba(13,33,56,.07);
	border-bottom: 1px solid rgba(13,33,56,.08);
	box-shadow: 0 12px 36px rgba(13,33,56,.06);
}

.lfs-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.lfs-facts__grid > div {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	padding: 22px 30px;
	text-align: center;
}

.lfs-facts__grid > div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 30px;
	right: 0;
	bottom: 30px;
	width: 1px;
	background: var(--lfs-line);
}

.lfs-facts strong {
	color: var(--lfs-navy);
	font-size: 1.26rem;
	font-weight: 950;
}

.lfs-facts span {
	color: var(--lfs-muted);
	font-size: .82rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* Shared sections */
.lfs-section {
	padding-block: 96px;
}

.lfs-section-heading {
	max-width: 760px;
	margin-bottom: 46px;
}

.lfs-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.lfs-section-heading h2,
.lfs-collaboration h2,
.lfs-contact h2 {
	margin-bottom: 18px;
	color: var(--lfs-navy);
	font-size: clamp(2.15rem, 4vw, 4rem);
	font-weight: 950;
	letter-spacing: -.055em;
	line-height: 1.04;
}

.lfs-section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--lfs-muted);
	font-size: 1.08rem;
}

/* Benefits */
.lfs-benefits {
	position: relative;
	background: var(--lfs-cream);
}

.lfs-benefits::before,
.lfs-benefits::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.lfs-benefits::before {
	top: 100px;
	right: -90px;
	width: 220px;
	height: 220px;
	border: 42px solid rgba(37,184,180,.10);
}

.lfs-benefits::after {
	bottom: 80px;
	left: -55px;
	width: 130px;
	height: 130px;
	background: radial-gradient(circle, var(--lfs-coral) 2px, transparent 3px);
	background-size: 17px 17px;
	opacity: .5;
}

.lfs-benefits__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.lfs-benefit {
	min-height: 330px;
	padding: 30px 24px 26px;
	border: 1px solid rgba(13,33,56,.08);
	border-radius: 22px;
	background: rgba(255,255,255,.82);
	box-shadow: 0 14px 34px rgba(13,33,56,.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

.lfs-benefit:hover {
	transform: translateY(-5px);
	box-shadow: var(--lfs-shadow);
}

.lfs-benefit__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin-bottom: 25px;
	border-radius: 22px;
	background: rgba(37,184,180,.10);
	color: var(--lfs-teal-dark);
}

.lfs-benefit:nth-child(2) .lfs-benefit__icon,
.lfs-benefit:nth-child(5) .lfs-benefit__icon {
	background: rgba(243,107,67,.10);
	color: var(--lfs-coral);
}

.lfs-benefit:nth-child(3) .lfs-benefit__icon,
.lfs-benefit:nth-child(4) .lfs-benefit__icon {
	background: rgba(242,182,50,.14);
	color: var(--lfs-gold-dark);
}

.lfs-benefit__icon svg {
	width: 46px;
	height: 46px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-benefit h3 {
	margin-bottom: 12px;
	color: var(--lfs-navy);
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.25;
}

.lfs-benefit p {
	margin-bottom: 0;
	color: var(--lfs-muted);
	font-size: .91rem;
	line-height: 1.65;
}

/* Collaboration strip */
.lfs-collaboration {
	position: relative;
	isolation: isolate;
	padding-block: 64px;
	background:
		linear-gradient(100deg, rgba(37,184,180,.95), rgba(18,143,141,.98)),
		var(--lfs-teal);
	color: #fff;
	overflow: hidden;
}

.lfs-collaboration::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -120px;
	right: -90px;
	width: 360px;
	height: 360px;
	border: 55px solid rgba(255,255,255,.10);
	border-radius: 50%;
}

.lfs-collaboration__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 80px;
}

.lfs-collaboration h2 {
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.lfs-collaboration p {
	margin-bottom: 0;
	font-size: 1.08rem;
	line-height: 1.72;
}

/* Packages */
.lfs-packages {
	background: #fff;
}

.lfs-packages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
}

.lfs-package {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--lfs-line);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(13,33,56,.07);
	overflow: hidden;
}

.lfs-package__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--lfs-navy);
	color: #fff;
	font-size: .66rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.lfs-package__header {
	min-height: 172px;
	padding: 28px 25px 24px;
	background: var(--lfs-teal);
	color: #fff;
}

.lfs-package--gold .lfs-package__header {
	background: var(--lfs-gold);
	color: var(--lfs-navy);
}

.lfs-package--coral .lfs-package__header {
	background: var(--lfs-coral);
}

.lfs-package--navy .lfs-package__header {
	background: var(--lfs-navy);
}

.lfs-package__header h3 {
	margin-bottom: 10px;
	font-size: 1.22rem;
	font-weight: 950;
	line-height: 1.18;
}

.lfs-package__header strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1.52rem;
	font-weight: 950;
}

.lfs-package__header span {
	display: block;
	font-size: .75rem;
	font-weight: 700;
	opacity: .90;
}

.lfs-package__intro {
	min-height: 92px;
	margin: 0;
	padding: 22px 24px 16px;
	color: var(--lfs-muted);
	font-size: .87rem;
	line-height: 1.58;
}

.lfs-package ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0 24px 24px;
	list-style: none;
}

.lfs-package li {
	display: grid;
	grid-template-columns: 18px minmax(0,1fr);
	align-items: start;
	gap: 8px;
	color: #35485a;
	font-size: .81rem;
	line-height: 1.45;
}

.lfs-package li svg {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	fill: none;
	stroke: var(--lfs-teal-dark);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-package--gold li svg { stroke: var(--lfs-gold-dark); }
.lfs-package--coral li svg { stroke: var(--lfs-coral); }
.lfs-package--navy li svg { stroke: var(--lfs-navy); }

.lfs-package__button {
	width: calc(100% - 48px);
	min-height: 48px;
	margin: auto 24px 24px;
	border: 0;
	border-radius: 10px;
	background: var(--lfs-teal);
	color: #fff;
	font-size: .85rem;
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, filter .2s ease;
}

.lfs-package--gold .lfs-package__button { background: var(--lfs-gold); color: var(--lfs-navy); }
.lfs-package--coral .lfs-package__button { background: var(--lfs-coral); }
.lfs-package--navy .lfs-package__button { background: var(--lfs-navy); }

.lfs-package__button:hover,
.lfs-package__button:focus-visible {
	filter: brightness(.95);
	transform: translateY(-2px);
}

.lfs-custom-offer {
	display: grid;
	grid-template-columns: 64px minmax(0,1fr) auto;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
	padding: 18px 22px;
	border: 1px solid rgba(13,33,56,.10);
	border-radius: 18px;
	background: var(--lfs-cream);
}

.lfs-custom-offer__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--lfs-teal);
	color: #fff;
}

.lfs-custom-offer__icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-custom-offer strong {
	display: block;
	margin-bottom: 2px;
	color: var(--lfs-navy);
}

.lfs-custom-offer p {
	margin-bottom: 0;
	color: var(--lfs-muted);
	font-size: .9rem;
}

.lfs-custom-offer button {
	min-width: 150px;
	min-height: 44px;
	padding: 10px 20px;
	border: 2px solid var(--lfs-teal);
	border-radius: 10px;
	background: #fff;
	color: var(--lfs-teal-dark);
	font-weight: 900;
	cursor: pointer;
}

/* Process */
.lfs-process {
	position: relative;
	padding-block: 90px;
	background: var(--lfs-navy);
	color: #fff;
	overflow: hidden;
}

.lfs-process::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 58px solid rgba(242,182,50,.12);
	border-radius: 50%;
}

.lfs-section-heading--light h2,
.lfs-process h2 {
	color: #fff;
}

.lfs-process__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lfs-process__grid li {
	display: grid;
	grid-template-columns: 54px minmax(0,1fr);
	align-items: start;
	gap: 16px;
	padding: 24px 20px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: rgba(255,255,255,.055);
}

.lfs-process__grid > li > span {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: var(--lfs-gold);
	color: var(--lfs-navy);
	font-size: 1.25rem;
	font-weight: 950;
}

.lfs-process__grid h3 {
	margin-bottom: 6px;
	font-size: 1rem;
	font-weight: 900;
}

.lfs-process__grid p {
	margin-bottom: 0;
	color: rgba(255,255,255,.75);
	font-size: .84rem;
	line-height: 1.55;
}

/* Contact form */
.lfs-contact {
	position: relative;
	isolation: isolate;
	padding-block: 105px;
	background: linear-gradient(120deg, #fff8ed, #fffdf9);
	overflow: hidden;
}

.lfs-contact__shape {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
}

.lfs-contact__shape--one {
	top: -180px;
	left: -140px;
	width: 420px;
	height: 420px;
	background: rgba(242,182,50,.22);
}

.lfs-contact__shape--two {
	right: -170px;
	bottom: -210px;
	width: 470px;
	height: 470px;
	background: rgba(37,184,180,.18);
}

.lfs-contact__grid {
	display: grid;
	grid-template-columns: .86fr 1.14fr;
	align-items: center;
	gap: 86px;
}

.lfs-contact h2 {
	max-width: 560px;
	margin-bottom: 24px;
}

.lfs-contact__copy > p:not(.lfs-kicker) {
	max-width: 580px;
	margin-bottom: 28px;
	color: var(--lfs-muted);
	font-size: 1.06rem;
}

.lfs-contact__details {
	display: grid;
	gap: 13px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.lfs-contact__details li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 800;
}

.lfs-contact__details svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--lfs-teal-dark);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-contact__note {
	max-width: 560px;
	padding: 17px 19px;
	border-left: 4px solid var(--lfs-gold);
	border-radius: 0 12px 12px 0;
	background: rgba(255,255,255,.68);
	color: #4d5e70;
	font-size: .88rem;
}

.lfs-contact__form-card {
	padding: 28px;
	border: 1px solid rgba(13,33,56,.09);
	border-radius: 24px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 26px 70px rgba(13,33,56,.13);
}

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

.lfs-form[hidden] {
	display: none !important;
}

.lfs-form__heading h3 {
	margin-bottom: 4px;
	color: var(--lfs-navy);
	font-size: 1.35rem;
	font-weight: 950;
}

.lfs-form__heading p {
	margin-bottom: 0;
	color: var(--lfs-muted);
	font-size: .82rem;
}

.lfs-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lfs-form__row {
	display: grid;
	gap: 14px;
}

.lfs-form__row--two {
	grid-template-columns: repeat(2, minmax(0,1fr));
}

.lfs-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
	color: #304254;
	font-size: .78rem;
	font-weight: 800;
}

.lfs-field input,
.lfs-field select,
.lfs-field textarea {
	width: 100%;
	min-width: 0;
	margin: 0;
	border: 1px solid #cad7de;
	border-radius: 10px;
	outline: 0;
	background: #fff;
	color: var(--lfs-ink);
	font-size: .92rem;
	font-weight: 500;
	box-shadow: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.lfs-field input,
.lfs-field select {
	height: 48px;
	padding: 10px 13px;
}

.lfs-field textarea {
	min-height: 126px;
	padding: 13px;
	resize: vertical;
}

.lfs-field input:focus,
.lfs-field select:focus,
.lfs-field textarea:focus {
	border-color: var(--lfs-teal);
	box-shadow: 0 0 0 4px rgba(37,184,180,.13);
}


.lfs-field small {
	color: var(--lfs-muted);
	font-size: .69rem;
	font-weight: 500;
	line-height: 1.35;
}

.lfs-consent {
	display: grid;
	grid-template-columns: 17px minmax(0,1fr);
	align-items: start;
	gap: 9px;
	color: #526476;
	font-size: .74rem;
	font-weight: 500;
	line-height: 1.45;
	cursor: pointer;
}

.lfs-consent input {
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: var(--lfs-teal);
}

.lfs-form__status {
	display: none;
	padding: 11px 13px;
	border-radius: 9px;
	font-size: .79rem;
	font-weight: 700;
}

.lfs-form__status.is-visible {
	display: block;
}

.lfs-form__status.is-error {
	background: rgba(176,58,46,.08);
	color: var(--lfs-error);
}

.lfs-form__status.is-info {
	background: rgba(37,184,180,.09);
	color: var(--lfs-teal-dark);
}

.lfs-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-height: 52px;
	padding: 12px 22px;
	border: 0;
	border-radius: 11px;
	background: var(--lfs-coral);
	color: #fff;
	font-size: .9rem;
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(243,107,67,.22);
	cursor: pointer;
	transition: transform .2s ease, filter .2s ease;
}

.lfs-form__submit:hover,
.lfs-form__submit:focus-visible {
	filter: brightness(.95);
	transform: translateY(-2px);
}

.lfs-form__submit:disabled {
	cursor: wait;
	opacity: .65;
	transform: none;
}

.lfs-form__submit svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-form-success {
	padding: 42px 28px;
	text-align: center;
}

.lfs-form-success[hidden] {
	display: none !important;
}

.lfs-form-success__icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: rgba(22,133,104,.12);
	color: var(--lfs-success);
}

.lfs-form-success__icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-form-success h3 {
	margin-bottom: 8px;
	color: var(--lfs-navy);
	font-size: 1.45rem;
	font-weight: 950;
}

.lfs-form-success p {
	margin-bottom: 0;
	color: var(--lfs-muted);
}

/* FAQ */
.lfs-faq {
	background: #fff;
}

.lfs-faq__grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 90px;
	align-items: start;
}

.lfs-faq__items {
	display: grid;
	gap: 13px;
}

.lfs-faq details {
	border: 1px solid var(--lfs-line);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}

.lfs-faq summary {
	position: relative;
	padding: 20px 54px 20px 22px;
	color: var(--lfs-navy);
	font-weight: 900;
	cursor: pointer;
	list-style: none;
}

.lfs-faq summary::-webkit-details-marker {
	display: none;
}

.lfs-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 22px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--lfs-mist);
	color: var(--lfs-teal-dark);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 28px;
	text-align: center;
	transform: translateY(-50%);
}

.lfs-faq details[open] summary::after {
	content: "−";
}

.lfs-faq details p {
	margin: 0;
	padding: 0 22px 20px;
	color: var(--lfs-muted);
	font-size: .93rem;
}

/* Footer */
.lfs-footer {
	padding-block: 64px 24px;
	background: var(--lfs-navy);
	color: rgba(255,255,255,.76);
}

.lfs-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, .75fr);
	gap: 60px;
}

.lfs-footer__brand img {
	width: 180px;
	height: 76px;
	margin-bottom: 16px;
	border-radius: 8px;
	object-fit: contain;
}

.lfs-footer__brand p {
	max-width: 330px !important;
	margin-bottom: 20px;
	font-size: .9rem;
}

.lfs-footer h2 {
	margin-bottom: 17px;
	color: #fff;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.lfs-footer ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .86rem;
}

.lfs-footer a:hover,
.lfs-footer a:focus-visible {
	color: var(--lfs-gold);
}

.lfs-footer__contact li {
	display: grid;
	grid-template-columns: 19px minmax(0,1fr);
	align-items: center;
	gap: 9px;
}

.lfs-footer__contact svg,
.lfs-footer__social svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lfs-footer__contact svg {
	width: 18px;
	height: 18px;
}

.lfs-footer__social {
	display: flex;
	gap: 10px;
}

.lfs-footer__social a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 50%;
}

.lfs-footer__social svg {
	width: 18px;
	height: 18px;
}

.lfs-footer__social .is-fill {
	fill: currentColor;
	stroke: none;
}

.lfs-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.13);
	font-size: .78rem;
}

.lfs-footer__bottom p {
	margin-bottom: 0;
}

.lfs-footer__bottom p:last-child {
	display: flex;
	gap: 10px;
}

/* Responsive */
@media (max-width: 1180px) {
	.lfs-nav { gap: 18px; font-size: .80rem; }
	.lfs-hero__grid { grid-template-columns: .92fr 1.08fr; gap: 34px; }
	.lfs-benefits__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.lfs-benefit { min-height: 290px; }
	.lfs-packages__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.lfs-process__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
	.lfs-menu-toggle { display: block; }
	.lfs-header__inner { position: relative; }
	.lfs-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 16px 24px 22px;
		background: #fff;
		border-bottom: 1px solid var(--lfs-line);
		box-shadow: 0 18px 40px rgba(13,33,56,.12);
	}
	.lfs-nav.is-open { display: flex; }
	.lfs-nav > a:not(.lfs-nav__cta) { padding: 11px 0; }
	.lfs-nav > a:not(.lfs-nav__cta)::after { display: none; }
	.lfs-nav__cta { margin-top: 8px; }
	.lfs-hero__grid { grid-template-columns: 1fr; padding-block: 70px 58px; }
	.lfs-hero__copy { max-width: 760px; }
	.lfs-hero__visual { max-width: 850px; }
	.lfs-facts__grid { grid-template-columns: repeat(2,1fr); }
	.lfs-facts__grid > div:nth-child(2)::after { display: none; }
	.lfs-facts__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--lfs-line); }
	.lfs-collaboration__grid,
	.lfs-contact__grid,
	.lfs-faq__grid { grid-template-columns: 1fr; gap: 45px; }
	.lfs-contact__copy { max-width: 700px; }
	.lfs-footer__grid { grid-template-columns: 1.4fr repeat(2,1fr); }
	.lfs-footer__grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 720px) {
	.lfs-shell { width: min(calc(100% - 30px), var(--lfs-shell)); }
	.lfs-header__inner { height: 68px; }
	.lfs-brand img { width: 136px; height: 52px; }
	.lfs-hero { min-height: auto; }
	.lfs-hero__grid { min-height: auto; padding-block: 52px 44px; }
	.lfs-hero h1 { font-size: clamp(2.7rem, 13vw, 4.7rem); }
	.lfs-hero__visual { border-radius: 28px 14px 34px 20px; }
	.lfs-event-meta { align-items: flex-start; flex-direction: column; gap: 9px; }
	.lfs-section { padding-block: 72px; }
	.lfs-benefits__grid { grid-template-columns: 1fr; }
	.lfs-benefit { min-height: 0; }
	.lfs-packages__grid { grid-template-columns: 1fr; }
	.lfs-custom-offer { grid-template-columns: 56px 1fr; }
	.lfs-custom-offer button { grid-column: 1 / -1; width: 100%; }
	.lfs-process__grid { grid-template-columns: 1fr; }
	.lfs-contact { padding-block: 78px; }
	.lfs-contact__form-card { padding: 20px; }
	.lfs-form__row--two { grid-template-columns: 1fr; }
	.lfs-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 30px; }
	.lfs-footer__brand { grid-column: 1 / -1; }
	.lfs-footer__grid > div:last-child { grid-column: auto; }
	.lfs-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
	.lfs-shell { width: min(calc(100% - 22px), var(--lfs-shell)); }
	.lfs-actions { align-items: stretch; flex-direction: column; }
	.lfs-button--primary, .lfs-link-arrow { width: 100%; }
	.lfs-facts__grid { grid-template-columns: 1fr; }
	.lfs-facts__grid > div { min-height: 98px; }
	.lfs-facts__grid > div:not(:last-child)::after { display: none; }
	.lfs-facts__grid > div:not(:last-child) { border-bottom: 1px solid var(--lfs-line); }
	.lfs-collaboration { padding-block: 52px; }
	.lfs-package__header { min-height: 0; }
	.lfs-custom-offer { grid-template-columns: 1fr; text-align: center; }
	.lfs-custom-offer__icon { margin-inline: auto; }
	.lfs-process__grid li { grid-template-columns: 46px 1fr; padding: 20px 16px; }
	.lfs-process__grid > li > span { width: 44px; height: 44px; }
	.lfs-footer__grid { grid-template-columns: 1fr; }
	.lfs-footer__grid > div:last-child { grid-column: auto; }
	.lfs-footer__bottom p:last-child { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
	.lf-sponsor *,
	.lf-sponsor *::before,
	.lf-sponsor *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
