/* ==========================================================================
   Exorva theme
   Scopes: .elx-h (header), .elx (page), .elx-f (footer)
   ========================================================================== */

:root {
	--fog: #EEF0F4;
	--ink: #1A1B3A;
	--ink-2: #4A4C6B;
	--violet: #5B3DF5;
	--violet-d: #4527D8;
	--lilac: #DCD6FF;
	--coral: #FF6B4A;
	--wa: #1FA855;
	--wa-d: #178A45;
	--white: #fff;
	--line: rgba(26, 27, 58, .12);
	--f-head: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
	--f-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
	--wrap: 1240px;
	--gut: clamp(16px, 4vw, 40px);
	--r: 22px;
	--ease: cubic-bezier(.7, 0, .2, 1);
	--hh: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--fog);
	color: var(--ink);
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.elx-lock { overflow: hidden; }
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 800; line-height: 1.02; letter-spacing: -.025em; margin: 0; }
p { margin: 0; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.elx-skip { position: absolute; left: -999px; top: 8px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.elx-skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

/* Placeholders: highlighted only for logged-in editors */
mark.ph { background: none; color: inherit; }
.elx-show-ph mark.ph { background: rgba(255, 107, 74, .22); box-shadow: 0 0 0 2px rgba(255, 107, 74, .35); border-radius: 4px; }

.elx-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.elx-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.elx-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
	font: 700 16px/1 var(--f-body); text-decoration: none; cursor: pointer;
	transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.elx-btn svg { width: 20px; height: 20px; flex: none; }
.elx-btn:hover { transform: translateY(-2px); }
.elx-btn--lg { padding: 18px 30px; font-size: 17px; }
.elx-btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px -10px rgba(31, 168, 85, .7); }
.elx-btn--wa:hover { background: var(--wa-d); }
.elx-btn--dark { background: var(--ink); color: #fff; }
.elx-btn--dark:hover { background: var(--violet); }
.elx-btn--light { background: #fff; color: var(--violet); }
.elx-btn--light:hover { background: var(--ink); color: #fff; }
.elx-btn--ghost { border-color: var(--ink); color: var(--ink); }
.elx-btn--ghost:hover { background: var(--ink); color: #fff; }
.elx-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; border-bottom: 2px solid currentColor; padding-bottom: 3px; }
.elx-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.elx-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.elx-h { position: fixed; inset: 0 0 auto; z-index: 100; }
.elx-h__bar {
	position: relative; z-index: 3;
	height: var(--hh); display: flex; align-items: center; justify-content: space-between;
	padding: 0 var(--gut); transition: background .3s, box-shadow .3s;
}
.elx-h.is-scrolled .elx-h__bar { background: rgba(238, 240, 244, .78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.elx-h.is-open .elx-h__bar { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.elx-h__logo { font: 800 30px/1 var(--f-head); letter-spacing: -.04em; text-decoration: none; color: var(--ink); transition: color .3s; }
.elx-h__logo span { color: var(--violet); transition: color .3s; }
.elx-h__logo img { max-height: 44px; width: auto; }
.elx-h.is-open .elx-h__logo, .elx-h.is-open .elx-h__logo span { color: #fff; }
.elx-h__actions { display: flex; align-items: center; gap: 10px; }
.elx-h__wa {
	display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 18px;
	border-radius: 999px; background: var(--wa); color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
	transition: background .25s, opacity .3s;
}
.elx-h__wa:hover { background: var(--wa-d); }
.elx-h__wa svg { width: 20px; height: 20px; }
.elx-h.is-open .elx-h__wa { opacity: 0; pointer-events: none; }
.elx-h__toggle {
	display: inline-flex; align-items: center; gap: 12px; height: 46px; padding: 0 8px 0 20px;
	border: 0; border-radius: 999px; background: var(--ink); color: #fff; cursor: pointer;
	font: 700 15px/1 var(--f-body); transition: background .3s, color .3s;
}
.elx-h.is-open .elx-h__toggle { background: #fff; color: var(--ink); }
.elx-h__label { min-width: 42px; text-align: left; }
.elx-h__icon { position: relative; width: 32px; height: 32px; border-radius: 50%; background: var(--coral); }
.elx-h__icon i { position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease), top .4s var(--ease); }
.elx-h__icon i:first-child { top: 12px; }
.elx-h__icon i:last-child { top: 18px; }
.elx-h.is-open .elx-h__icon i:first-child { top: 15px; transform: rotate(45deg); }
.elx-h.is-open .elx-h__icon i:last-child { top: 15px; transform: rotate(-45deg); }

/* Full-screen menu: violet circle grows from the toggle */
.elx-menu { position: fixed; inset: 0; z-index: 2; visibility: hidden; pointer-events: none; }
.elx-h.is-open .elx-menu { visibility: visible; pointer-events: auto; }
.elx-menu__bg {
	position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--violet);
	top: var(--my, 39px); left: var(--mx, calc(100% - 40px));
	transform: translate(-50%, -50%) scale(0); transition: transform .8s var(--ease);
}
.elx-h.is-open .elx-menu__bg { transform: translate(-50%, -50%) scale(var(--ms, 400)); }
.elx-h.is-closing .elx-menu { visibility: visible; }
.elx-menu__inner {
	position: relative; height: 100%; overflow-y: auto; color: #fff;
	display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: end;
	max-width: var(--wrap); margin: 0 auto; padding: calc(var(--hh) + 40px) var(--gut) 56px;
}
.elx-menu__nav ol { list-style: none; margin: 0; padding: 0; }
.elx-menu__nav li { overflow: hidden; }
.elx-menu__nav a {
	display: inline-flex; align-items: flex-start; gap: 14px; text-decoration: none;
	font: 800 clamp(44px, 8vw, 104px)/1.02 var(--f-head); letter-spacing: -.045em;
	transform: translateY(110%); transition: transform .7s var(--ease), color .25s;
}
.elx-menu__nav sup { font: 600 14px/1 var(--f-body); letter-spacing: 0; margin-top: .9em; opacity: .6; }
.elx-menu__nav a:hover { color: var(--lilac); }
.elx-h.is-open .elx-menu__nav a { transform: none; transition-delay: calc(.25s + var(--i) * .06s); }
.elx-menu__side { display: grid; gap: 28px; opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .6s var(--ease); }
.elx-h.is-open .elx-menu__side { opacity: 1; transform: none; transition-delay: .55s; }
.elx-menu__offer { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r); padding: 26px; }
.elx-menu__offer .elx-eyebrow { color: var(--lilac); }
.elx-menu__price { font: 600 24px/1.2 var(--f-head); margin-bottom: 20px; }
.elx-menu__price strong { color: #fff; font-weight: 800; display: block; font-size: 34px; }
.elx-menu__contact { display: grid; gap: 6px; }
.elx-menu__contact a { font-size: 19px; font-weight: 600; text-decoration: none; }
.elx-menu__contact a:hover { text-decoration: underline; }

.elx-socials { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; }
.elx-socials a { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; opacity: .85; transition: background .25s, color .25s, opacity .25s; }
.elx-socials a:hover { opacity: 1; background: #fff; color: var(--violet); border-color: #fff; }
.elx-socials svg { width: 18px; height: 18px; }

/* ==========================================================================
   Page sections
   ========================================================================== */
.elx-sec { padding: clamp(72px, 10vw, 130px) 0; }
.elx-sec--tight { padding-top: clamp(24px, 4vw, 48px); }
.elx-sec--ink { background: var(--ink); color: #fff; }
.elx-sec--ink .elx-eyebrow { color: var(--coral); }
.elx-sec--lilac { background: var(--lilac); }
.elx-head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 780px; }
.elx-head h2 { font-size: clamp(38px, 6vw, 72px); }
.elx-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; flex-wrap: wrap; }
.elx-head--row > div { max-width: 780px; }
.elx-note { margin-top: 24px; font-size: 14px; color: var(--ink-2); }
.elx-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.elx-split > .elx-head { position: sticky; top: calc(var(--hh) + 24px); }
.elx-split .elx-head .elx-link { margin-top: 24px; }

/* ---------- Hero ---------- */
.elx-hero { margin-top: var(--hh); padding-top: clamp(24px, 5vh, 64px); overflow: hidden; }
.elx-hero__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.elx-hero__lead {
	display: inline-block; font: 800 clamp(20px, 2.4vw, 28px)/1 var(--f-head); color: var(--coral);
	transform: rotate(-3deg); margin-bottom: 18px; padding: 8px 16px; border: 2px dashed var(--coral); border-radius: 999px;
}
.elx-hero__title { font-size: clamp(42px, min(6.2vw, 10.5vh), 92px); line-height: .95; letter-spacing: -.045em; }
.elx-u { position: relative; white-space: nowrap; color: var(--violet); }
.elx-u::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -.04em; height: .14em; background: var(--coral);
	border-radius: 99px; transform-origin: left; transform: scaleX(0); animation: elx-underline 1s .9s var(--ease) forwards;
}
@keyframes elx-underline { to { transform: scaleX(1); } }
.elx-hero__sub { font-size: clamp(17px, 1.6vw, 21px); max-width: 620px; margin-top: 22px; color: var(--ink-2); }
.elx-hero__sub strong { color: var(--ink); }
.elx-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.elx-hero__art { position: relative; min-height: 400px; display: grid; place-items: center; }
.elx-tag {
	position: relative; z-index: 2; width: min(330px, 100%); background: var(--violet); color: #fff;
	border-radius: 28px 28px 28px 28px; padding: 54px 32px 32px; transform: rotate(6deg);
	box-shadow: 0 40px 70px -30px rgba(91, 61, 245, .7); animation: elx-swing 6s ease-in-out infinite;
	transform-origin: 50% 0;
}
@keyframes elx-swing { 0%, 100% { transform: rotate(6deg); } 50% { transform: rotate(2deg); } }
.elx-tag__hole { position: absolute; top: 20px; left: 50%; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; background: var(--fog); box-shadow: inset 0 2px 4px rgba(0, 0, 0, .25); }
.elx-tag__from { font-weight: 600; opacity: .8; }
.elx-tag__price { font: 800 78px/1 var(--f-head); letter-spacing: -.05em; margin: 4px 0; }
.elx-tag__price small { font-size: 26px; letter-spacing: 0; margin-right: 6px; vertical-align: top; position: relative; top: 12px; }
.elx-tag__per { font: 700 18px/1 var(--f-head); color: var(--lilac); margin-bottom: 24px; }
.elx-tag ul { list-style: none; margin: 0; padding: 20px 0 0; border-top: 1.5px dashed rgba(255, 255, 255, .35); display: grid; gap: 10px; }
.elx-tag li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.elx-tag li svg { width: 20px; height: 20px; padding: 3px; background: var(--coral); border-radius: 50%; }
.elx-blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.elx-blob--1 { width: 260px; height: 260px; background: var(--lilac); top: 6%; right: -4%; }
.elx-blob--2 { width: 120px; height: 120px; background: var(--coral); bottom: 8%; left: 6%; opacity: .9; }

.elx-marquee { margin-top: clamp(56px, 8vw, 100px); background: var(--ink); color: #fff; overflow: hidden; padding: 20px 0; transform: rotate(-1.2deg); margin-inline: -20px; }
.elx-marquee__track { display: flex; gap: 32px; width: max-content; animation: elx-marquee 32s linear infinite; font: 700 clamp(18px, 2vw, 24px)/1 var(--f-head); white-space: nowrap; }
.elx-marquee b { color: var(--coral); font-weight: 400; }
@keyframes elx-marquee { to { transform: translateX(-50%); } }

/* ---------- Manifesto (scroll-pinned) ---------- */
.elx-mani { position: relative; height: 420vh; background: var(--violet); color: #fff; margin-top: clamp(64px, 9vw, 120px); }
.elx-mani__pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.admin-bar .elx-mani__pin { top: 32px; height: calc(100vh - 32px); }
.elx-mani__label {
	position: absolute; top: calc(var(--hh) + 20px); left: var(--gut); display: flex; align-items: center; gap: 10px;
	font: 800 14px/1 var(--f-head); letter-spacing: .08em; text-transform: uppercase;
}
.elx-mani__label span { width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }
.elx-mani__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.elx-mani__svg text {
	fill: #fff; font-family: var(--f-head); font-weight: 800; font-stretch: 75%; text-transform: uppercase; letter-spacing: -.01em;
	font-variation-settings: "wdth" 75;
}
.elx-mani__text {
	position: relative; max-width: 1180px; padding: 0 var(--gut); text-align: center; opacity: 0;
	font: 800 clamp(30px, 4.6vw, 72px)/1.02 var(--f-head); font-stretch: 75%; font-variation-settings: "wdth" 75;
	text-transform: uppercase; letter-spacing: -.01em;
}
.elx-mani__text em { font-style: normal; }
.elx-mani__text .w { color: rgba(255, 255, 255, .18); transition: color .25s linear; }
.elx-mani__text .w.on { color: #fff; }
.elx-mani__text em .w.on { color: var(--lilac); }
/* No JS / reduced motion: a normal, static section */
html:not(.elx-js) .elx-mani, .elx-mani.is-static { height: auto; }
html:not(.elx-js) .elx-mani__pin, .elx-mani.is-static .elx-mani__pin { position: relative; height: auto; min-height: 80vh; padding: calc(var(--hh) + 80px) 0 100px; }
html:not(.elx-js) .elx-mani__text, .elx-mani.is-static .elx-mani__text { opacity: 1; }
html:not(.elx-js) .elx-mani__svg { display: none; }
.elx-mani.is-static .elx-mani__svg { display: none; }
@media (max-width: 782px) { .admin-bar .elx-mani__pin { top: 0; height: 100vh; } }
@media (max-width: 600px) { .elx-mani { height: 360vh; } }

/* ---------- Compare ---------- */
.elx-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.elx-compare__card { border-radius: var(--r); padding: clamp(28px, 4vw, 48px); }
.elx-compare__card.is-old { background: #fff; border: 1px solid var(--line); }
.elx-compare__card.is-new { background: var(--violet); color: #fff; }
.elx-compare__label { font-weight: 700; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.elx-compare__num { font: 800 clamp(44px, 6vw, 76px)/1 var(--f-head); letter-spacing: -.04em; margin: 16px 0 8px; }
.elx-compare__num small { font-size: .4em; letter-spacing: 0; opacity: .8; }
.is-old .elx-compare__num { color: var(--ink-2); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 4px; }
.elx-compare__cap { opacity: .75; margin-bottom: 28px; }
.elx-compare ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.elx-compare li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.elx-compare li svg { width: 26px; height: 26px; padding: 5px; border-radius: 50%; flex: none; }
.is-old li svg { background: rgba(255, 107, 74, .15); color: var(--coral); }
.is-new li svg { background: #fff; color: var(--violet); }

/* ---------- Types ---------- */
.elx-types { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.elx-types li {
	font: 600 clamp(18px, 2.2vw, 28px)/1 var(--f-head); padding: 16px 26px; border: 1.5px solid rgba(255, 255, 255, .25);
	border-radius: 999px; transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.elx-types li:hover { background: var(--coral); border-color: var(--coral); transform: rotate(-2deg); }

/* ---------- Steps ---------- */
.elx-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.elx-step { background: #fff; border-radius: var(--r); padding: 30px 26px 34px; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.elx-step:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(26, 27, 58, .45); }
.elx-step__n { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--lilac); color: var(--violet); font: 800 20px/1 var(--f-head); margin-bottom: 40px; }
.elx-step:nth-child(4) .elx-step__n { background: var(--violet); color: #fff; }
.elx-step h3 { font-size: 24px; margin-bottom: 12px; letter-spacing: -.02em; }
.elx-step p { color: var(--ink-2); font-size: 16px; }

/* ---------- Plans ---------- */
.elx-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.elx-plan { background: #fff; border-radius: var(--r); padding: 34px 30px; display: flex; flex-direction: column; scroll-margin-top: 100px; border: 1px solid var(--line); }
.elx-plan.is-featured { background: var(--violet); color: #fff; border-color: var(--violet); transform: translateY(-12px); box-shadow: 0 40px 70px -40px rgba(91, 61, 245, .8); }
.elx-plan__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.elx-plan__top h3 { font-size: 28px; }
.elx-plan__tag { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--fog); color: var(--ink-2); white-space: nowrap; }
.is-featured .elx-plan__tag { background: var(--coral); color: #fff; }
.elx-plan__price { font: 800 60px/1 var(--f-head); letter-spacing: -.045em; margin: 28px 0; }
.elx-plan__price small { font-size: 20px; letter-spacing: 0; margin-right: 4px; vertical-align: top; position: relative; top: 8px; }
.elx-plan__price span { font: 600 16px/1 var(--f-body); letter-spacing: 0; opacity: .6; margin-left: 4px; }
.elx-plan__list { list-style: none; margin: 0 0 32px; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; flex: 1; }
.is-featured .elx-plan__list { border-color: rgba(255, 255, 255, .25); }
.elx-plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.elx-plan__list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--violet); }
.is-featured .elx-plan__list svg { color: var(--lilac); }
.elx-plan .elx-btn { width: 100%; }

/* ---------- FAQ ---------- */
.elx-faq { border-top: 1.5px solid var(--ink); }
.elx-faq__item { border-bottom: 1.5px solid var(--ink); }
.elx-faq__item summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
	padding: 24px 0; font: 700 clamp(19px, 2vw, 23px)/1.25 var(--f-head); letter-spacing: -.015em;
}
.elx-faq__item summary::-webkit-details-marker { display: none; }
.elx-faq__item summary i { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--lilac); flex: none; transition: background .3s, transform .4s var(--ease); }
.elx-faq__item summary i::before, .elx-faq__item summary i::after { content: ""; position: absolute; left: 10px; right: 10px; top: 16px; height: 2px; background: var(--violet); border-radius: 2px; }
.elx-faq__item summary i::after { transform: rotate(90deg); transition: transform .4s var(--ease); }
.elx-faq__item[open] summary i { background: var(--violet); transform: rotate(180deg); }
.elx-faq__item[open] summary i::before, .elx-faq__item[open] summary i::after { background: #fff; }
.elx-faq__item[open] summary i::after { transform: rotate(0); }
.elx-faq__item summary:hover span { color: var(--violet); }
.elx-faq__a { padding: 0 60px 26px 0; color: var(--ink-2); }

/* ---------- Video testimonials ---------- */
.elx-vc { --gap: 20px; --per: 3; }
.elx-vc__nav { display: flex; gap: 10px; }
.elx-vc__btn {
	width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .3); background: transparent; color: #fff;
	display: grid; place-items: center; cursor: pointer; transition: background .25s, border-color .25s, opacity .25s, color .25s;
}
.elx-vc__btn svg { width: 22px; height: 22px; }
.elx-vc__btn[data-dir="-1"] svg { transform: scaleX(-1); }
.elx-vc__btn:hover:not(:disabled) { background: var(--coral); border-color: var(--coral); }
.elx-vc__btn:disabled { opacity: .3; cursor: default; }
.elx-vc__track {
	list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; gap: var(--gap);
	grid-auto-columns: calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
	overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; cursor: grab;
}
.elx-vc__track::-webkit-scrollbar { display: none; }
.elx-vc__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.elx-vc__track.is-dragging * { pointer-events: none; }
.elx-vcard { scroll-snap-align: start; min-width: 0; }
.elx-vcard__media {
	position: relative; aspect-ratio: 3 / 5; border-radius: var(--r); overflow: hidden; background: #0E0F24;
	isolation: isolate;
}
/* Landscape clips: blurred poster fills the card, the video sits centred */
.elx-vcard.is-land .elx-vcard__media::before {
	content: ""; position: absolute; inset: -30px; z-index: -1; background: var(--poster) center / cover; filter: blur(24px) brightness(.55);
}
.elx-vcard__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.elx-vcard.is-land video { object-fit: contain; }
.elx-vcard__media::after {
	content: ""; position: absolute; inset: 0; pointer-events: none; transition: opacity .3s;
	background: linear-gradient(180deg, transparent 55%, rgba(14, 15, 36, .55));
}
.elx-vcard.is-playing .elx-vcard__media::after { opacity: 0; }
.elx-vcard__play {
	position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50%; border: 0;
	background: var(--coral); color: #fff; display: grid; place-items: center; cursor: pointer; z-index: 2;
	box-shadow: 0 0 0 10px rgba(255, 107, 74, .25); transition: transform .3s var(--ease), box-shadow .3s, opacity .3s;
}
.elx-vcard__play svg { width: 30px; height: 30px; margin-left: 4px; }
.elx-vcard__play:hover { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(255, 107, 74, .2); }
.elx-vcard.is-playing .elx-vcard__play { opacity: 0; pointer-events: none; }
.elx-vcard__cap { display: grid; gap: 2px; padding: 18px 4px 0; }
.elx-vcard__cap strong { font: 700 20px/1.2 var(--f-head); letter-spacing: -.01em; }
.elx-vcard__cap span { font-size: 15px; color: rgba(255, 255, 255, .65); }
.elx-vcard__cap a { color: var(--lilac); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(220, 214, 255, .4); }
.elx-vcard__cap a:hover { color: #fff; text-decoration-color: currentColor; }
.elx-vc__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.elx-vc__dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 99px; background: rgba(255, 255, 255, .3); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.elx-vc__dots button.is-active { width: 30px; background: var(--coral); }
@media (max-width: 900px) { .elx-vc { --per: 2; } }
@media (max-width: 600px) {
	.elx-vc { --per: 1.25; --gap: 14px; }
	.elx-vc__btn { width: 46px; height: 46px; }
	.elx-vc__track { margin-right: calc(var(--gut) * -1); padding-right: var(--gut); scroll-padding-left: 0; }
}

/* ---------- CTA (scroll-pinned reveal) ---------- */
.elx-cta { position: relative; height: 320vh; }
.elx-cta__pin {
	position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
	display: grid; place-items: center; color: #fff; text-align: center;
}
.admin-bar .elx-cta__pin { top: 32px; height: calc(100vh - 32px); }
.elx-cta__shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.elx-cta__shape path { fill: var(--violet); }
.elx-cta__label {
	position: absolute; top: calc(var(--hh) + 20px); left: var(--gut); display: flex; align-items: center; gap: 10px;
	font: 800 14px/1 var(--f-head); letter-spacing: .08em; text-transform: uppercase; opacity: 0; transition: opacity .4s;
}
.elx-cta__label span { width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }
.elx-cta.is-filled .elx-cta__label { opacity: 1; }
.elx-cta__big, .elx-cta__final { grid-area: 1 / 1; position: relative; padding: 0 var(--gut); }
.elx-cta__big {
	font: 800 clamp(56px, 10vw, 168px)/.9 var(--f-head); font-stretch: 75%; font-variation-settings: "wdth" 75;
	text-transform: uppercase; letter-spacing: -.01em;
	opacity: 0; transform: translateY(40px) scale(.96); transition: opacity .6s, transform .9s var(--ease);
}
.elx-cta.is-big .elx-cta__big { opacity: 1; transform: none; }
.elx-cta.is-final .elx-cta__big { opacity: 0; transform: translateY(-60px) scale(1.04); }
.elx-cta__final { max-width: 1100px; pointer-events: none; }
.elx-cta.is-final .elx-cta__final { pointer-events: auto; }
.elx-cta__title {
	font: 800 clamp(44px, 7.4vw, 116px)/.95 var(--f-head); font-stretch: 75%; font-variation-settings: "wdth" 75;
	text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 28px;
}
.elx-cta__title .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.elx-cta__title .ln > span { display: block; transform: translateY(110%); transition: transform .9s var(--ease); transition-delay: calc(var(--d) * .1s); }
.elx-cta__text, .elx-cta__actions {
	opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .8s var(--ease); transition-delay: calc(var(--d) * .1s + .1s);
}
.elx-cta__text { max-width: 600px; margin: 0 auto 32px; font-size: clamp(17px, 1.6vw, 20px); color: rgba(255, 255, 255, .88); }
.elx-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.elx-cta__offer { font-size: 15px; color: rgba(255, 255, 255, .8); }
.elx-cta__offer b { color: #fff; background: var(--coral); padding: 3px 9px; border-radius: 999px; margin-right: 4px; }
.elx-cta.is-final .elx-cta__title .ln > span, .elx-cta.is-final .elx-cta__text, .elx-cta.is-final .elx-cta__actions { transform: none; opacity: 1; }
/* No JS / reduced motion: a normal violet block */
html:not(.elx-js) .elx-cta, .elx-cta.is-static { height: auto; }
html:not(.elx-js) .elx-cta__pin, .elx-cta.is-static .elx-cta__pin { position: relative; height: auto; min-height: 80vh; padding: 120px 0; background: var(--violet); }
html:not(.elx-js) .elx-cta__shape, html:not(.elx-js) .elx-cta__big, .elx-cta.is-static .elx-cta__shape, .elx-cta.is-static .elx-cta__big { display: none; }
html:not(.elx-js) .elx-cta__label, .elx-cta.is-static .elx-cta__label { opacity: 1; }
html:not(.elx-js) .elx-cta__final .ln > span, html:not(.elx-js) .elx-cta__text, html:not(.elx-js) .elx-cta__actions { transform: none; opacity: 1; }
html:not(.elx-js) .elx-cta__final { pointer-events: auto; }
@media (max-width: 782px) { .admin-bar .elx-cta__pin { top: 0; height: 100vh; } }
@media (max-width: 600px) { .elx-cta { height: 280vh; } .elx-cta__actions .elx-btn { width: 100%; } }

/* ---------- Inner page hero ---------- */
.elx-phero { margin-top: var(--hh); padding: clamp(48px, 8vw, 110px) 0 clamp(36px, 5vw, 64px); }
.elx-crumb { display: flex; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 28px; }
.elx-crumb a { text-decoration: none; color: var(--violet); }
.elx-crumb a:hover { text-decoration: underline; }
.elx-crumb span { opacity: .5; }
.elx-phero__title { font-size: clamp(46px, 8vw, 116px); line-height: .95; letter-spacing: -.045em; max-width: 1100px; }
.elx-phero__intro { font-size: clamp(18px, 1.8vw, 22px); color: var(--ink-2); max-width: 680px; margin-top: 28px; }

/* ---------- Comparison table ---------- */
.elx-table-wrap { overflow-x: auto; background: #fff; border-radius: var(--r); border: 1px solid var(--line); }
.elx-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 16px; }
.elx-table th, .elx-table td { padding: 16px 22px; text-align: center; border-bottom: 1px solid var(--line); }
.elx-table th[scope="row"] { text-align: left; font-weight: 600; }
.elx-table thead th { font: 800 22px/1.1 var(--f-head); padding-top: 28px; padding-bottom: 22px; vertical-align: bottom; }
.elx-table thead th small { display: block; font: 600 14px/1 var(--f-body); color: var(--ink-2); margin-top: 6px; }
.elx-table thead th.is-featured { color: var(--violet); }
.elx-table td.is-featured, .elx-table thead th.is-featured { background: rgba(91, 61, 245, .06); }
.elx-table__group th { text-align: left !important; background: var(--fog); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); padding: 12px 22px; }
.elx-table tbody tr:last-child td, .elx-table tbody tr:last-child th { border-bottom: 0; }
.elx-y { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--violet); color: #fff; vertical-align: middle; }
.elx-y svg { width: 16px; height: 16px; }
.elx-n { color: rgba(26, 27, 58, .3); font-weight: 700; }

/* ---------- Cards / add-ons ---------- */
.elx-addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.elx-addon { border: 1.5px solid rgba(255, 255, 255, .18); border-radius: var(--r); padding: 28px; transition: border-color .25s, background .25s; }
.elx-addon:hover { border-color: var(--coral); background: rgba(255, 255, 255, .04); }
.elx-addon h3 { font-size: 24px; margin-bottom: 10px; }
.elx-addon p { opacity: .75; }
.elx-addon .elx-addon__price { opacity: 1; margin-top: 20px; font-weight: 700; color: var(--coral); }

.elx-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.elx-card { background: #fff; border-radius: var(--r); padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); }
.elx-card h3 { font-size: 26px; margin-bottom: 12px; }
.elx-card p { color: var(--ink-2); }
.elx-card .elx-big { font: 700 22px/1.3 var(--f-head); color: var(--ink); margin-bottom: 8px; }
a.elx-card { text-decoration: none; transition: transform .3s var(--ease); }
a.elx-card:hover { transform: translateY(-4px); }

/* ---------- Timeline ---------- */
.elx-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.elx-timeline::before { content: ""; position: absolute; left: 35px; top: 20px; bottom: 20px; width: 2px; background: repeating-linear-gradient(var(--violet) 0 8px, transparent 8px 16px); }
.elx-timeline__item { position: relative; display: grid; grid-template-columns: 72px 1.3fr 1fr; gap: clamp(20px, 4vw, 56px); padding: 36px 0; border-bottom: 1px solid var(--line); }
.elx-timeline__item:last-child { border-bottom: 0; }
.elx-timeline__n { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 50%; background: var(--violet); color: #fff; display: grid; place-items: center; font: 800 24px/1 var(--f-head); box-shadow: 0 0 0 8px var(--fog); }
.elx-timeline__body h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 12px 0 14px; }
.elx-timeline__body p { color: var(--ink-2); font-size: 18px; }
.elx-timeline__need { background: #fff; border-radius: var(--r); padding: 24px 26px; border: 1px solid var(--line); align-self: start; }
.elx-timeline__need .elx-eyebrow { color: var(--coral); margin-bottom: 8px; }

/* ---------- About ---------- */
.elx-prose { font-size: 18px; color: var(--ink-2); max-width: 760px; }
.elx-prose--wide { max-width: 860px; }
.elx-prose p, .elx-prose ul, .elx-prose ol { margin: 0 0 1.2em; }
.elx-prose h2 { font-size: clamp(24px, 2.6vw, 32px); color: var(--ink); margin: 1.8em 0 .6em; scroll-margin-top: 100px; letter-spacing: -.02em; }
.elx-prose h2:first-child, .elx-prose > .elx-legal__updated + h2 { margin-top: 0; }
.elx-prose h3 { font-size: 22px; color: var(--ink); margin: 1.4em 0 .5em; }
.elx-prose a { color: var(--violet); font-weight: 600; }
.elx-prose img { height: auto; border-radius: var(--r); }
.elx-thumb { width: 100%; height: auto; border-radius: var(--r); margin-bottom: 32px; }
.elx-promises { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.elx-promise { border-top: 2px solid var(--coral); padding-top: 24px; }
.elx-promise span { font: 800 16px/1 var(--f-head); color: var(--coral); }
.elx-promise h3 { font-size: 28px; margin: 18px 0 12px; }
.elx-promise p { opacity: .75; }
.elx-team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.elx-member__photo { aspect-ratio: 4 / 5; border-radius: var(--r); margin-bottom: 16px; background: linear-gradient(135deg, var(--lilac), #fff); position: relative; overflow: hidden; }
.elx-member__photo::after { content: ""; position: absolute; left: 50%; bottom: -20%; width: 70%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50% 50% 0 0; background: rgba(91, 61, 245, .18); }
.elx-member h3 { font-size: 22px; }
.elx-member p { color: var(--ink-2); font-size: 15px; }

/* ---------- FAQ page ---------- */
.elx-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(40px, 6vw, 80px); position: sticky; top: calc(var(--hh) + 8px); z-index: 5; }
.elx-jump a { padding: 12px 22px; border-radius: 999px; background: #fff; border: 1px solid var(--line); text-decoration: none; font-weight: 700; transition: background .25s, color .25s; }
.elx-jump a:hover, .elx-jump a.is-active { background: var(--ink); color: #fff; }
.elx-faqgroup { scroll-margin-top: 170px; padding-bottom: clamp(48px, 7vw, 90px); }
.elx-faqgroup h2 { font-size: clamp(32px, 4.4vw, 56px); }

/* ---------- Contact ---------- */
.elx-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.elx-ccard { display: grid; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px; text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s; min-width: 0; }
.elx-ccard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(26, 27, 58, .45); }
.elx-ccard.is-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.elx-ccard__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--lilac); color: var(--violet); margin-bottom: 18px; }
.is-wa .elx-ccard__icon { background: #fff; color: var(--wa); }
.elx-ccard__icon svg { width: 24px; height: 24px; }
.elx-ccard__label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.elx-ccard__value { font: 800 24px/1.2 var(--f-head); overflow-wrap: anywhere; }
.elx-ccard__hint { font-size: 15px; opacity: .7; }
.elx-contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; align-items: start; }
.elx-form { background: #fff; border-radius: var(--r); padding: clamp(26px, 4vw, 48px); border: 1px solid var(--line); display: grid; gap: 18px; }
.elx-form h2 { font-size: clamp(30px, 3.4vw, 42px); }
.elx-form__intro { color: var(--ink-2); margin-top: -6px; }
.elx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.elx-form label { display: grid; gap: 8px; font-weight: 700; font-size: 15px; }
.elx-form input, .elx-form select, .elx-form textarea {
	width: 100%; font: 500 16px/1.4 var(--f-body); color: var(--ink); background: var(--fog);
	border: 1.5px solid transparent; border-radius: 14px; padding: 14px 16px; transition: border-color .2s, background .2s;
}
.elx-form input:focus, .elx-form select:focus, .elx-form textarea:focus { outline: none; border-color: var(--violet); background: #fff; }
.elx-form .is-invalid { border-color: var(--coral); }
.elx-form__error { color: var(--coral); font-weight: 600; }
.elx-form .elx-btn { justify-self: start; }
.elx-contact__side { display: grid; gap: 20px; }
.elx-map { border-radius: var(--r); overflow: hidden; min-height: 240px; background: repeating-linear-gradient(45deg, var(--lilac) 0 12px, #E6E1FF 12px 24px); display: grid; place-items: center; text-align: center; }
.elx-map p { background: #fff; padding: 12px 18px; border-radius: 12px; margin: 20px; font-size: 14px; color: var(--ink-2); }
.elx-map iframe { width: 100%; height: 300px; border: 0; }

/* ---------- Legal ---------- */
.elx-legal { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.elx-legal > .elx-prose:only-child { grid-column: 1 / -1; }
.elx-legal__toc { position: sticky; top: calc(var(--hh) + 24px); background: #fff; border-radius: var(--r); padding: 26px; border: 1px solid var(--line); }
.elx-legal__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-size: 15px; }
.elx-legal__toc a { text-decoration: none; color: var(--ink-2); }
.elx-legal__toc a:hover { color: var(--violet); }
.elx-legal__updated { font-size: 14px; font-weight: 600; color: var(--violet); }

.elx-pager { margin-top: 40px; }
.elx-pager .nav-links { display: flex; gap: 8px; }
.elx-pager .page-numbers { padding: 10px 16px; border-radius: 999px; background: #fff; text-decoration: none; font-weight: 700; }
.elx-pager .current { background: var(--ink); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.elx-f { background: var(--ink); color: #fff; padding-top: clamp(64px, 9vw, 120px); overflow: hidden; }
.elx-f a { text-decoration: none; }
.elx-f__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 6vw, 96px); padding-bottom: clamp(48px, 7vw, 90px); border-bottom: 1px solid rgba(255, 255, 255, .15); }
.elx-f__word { font: 800 clamp(44px, 6vw, 80px)/1 var(--f-head); letter-spacing: -.04em; margin-bottom: 24px; }
.elx-f__pron { font: 500 clamp(18px, 2vw, 24px)/1 var(--f-body); letter-spacing: 0; color: var(--lilac); margin-left: 8px; }
.elx-f__word em { font: italic 500 clamp(16px, 1.6vw, 20px)/1 var(--f-body); letter-spacing: 0; color: var(--coral); margin-left: 6px; }
.elx-f__dict ol { margin: 0; padding-left: 26px; display: grid; gap: 12px; font-size: clamp(17px, 1.6vw, 20px); color: rgba(255, 255, 255, .8); max-width: 640px; }
.elx-f__dict li::marker { font-weight: 700; color: var(--coral); }
.elx-f__cta { align-self: end; }
.elx-f__cta p { font: 600 clamp(20px, 2.2vw, 26px)/1.3 var(--f-head); margin-bottom: 24px; }
.elx-f__cta strong { color: var(--lilac); }
.elx-f__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: clamp(40px, 6vw, 72px) 0; }
.elx-f__cols h4 { font: 700 13px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 18px; }
.elx-f__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.elx-f__cols a, .elx-f__cols p { color: rgba(255, 255, 255, .8); overflow-wrap: anywhere; }
.elx-f__cols p + p { margin-top: 10px; }
.elx-f__cols a:hover { color: #fff; text-decoration: underline; }
.elx-f__mark {
	font: 800 clamp(120px, 27vw, 420px)/.72 var(--f-head); letter-spacing: -.07em; color: var(--violet);
	white-space: nowrap; text-align: center; margin-bottom: -.06em; user-select: none;
}
.elx-f__mark span { color: var(--coral); }
.elx-f__bottom { position: relative; background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .15); padding: 22px 0; font-size: 14px; }
.elx-f__bottom .elx-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.elx-f__bottom p { color: rgba(255, 255, 255, .6); }
.elx-f__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }
.elx-f__legal a { color: rgba(255, 255, 255, .8); }
.elx-f__legal a:hover { color: #fff; text-decoration: underline; }
.elx-f .elx-socials a { width: 38px; height: 38px; }

/* ---------- Reveal on scroll ---------- */
.elx-js .elx-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s, transform .9s var(--ease); }
.elx-js .elx-reveal.is-in { opacity: 1; transform: none; }
.elx-steps .elx-reveal:nth-child(2), .elx-compare .elx-reveal:nth-child(2) { transition-delay: .1s; }
.elx-steps .elx-reveal:nth-child(3) { transition-delay: .2s; }
.elx-steps .elx-reveal:nth-child(4) { transition-delay: .3s; }
.elx-hero .elx-reveal:nth-child(2) { transition-delay: .1s; }
.elx-hero .elx-reveal:nth-child(3) { transition-delay: .2s; }
.elx-hero .elx-reveal:nth-child(4) { transition-delay: .3s; }

/* Anchors clear the fixed header */
.elx [id] { scroll-margin-top: 90px; }

/* WordPress admin bar */
.admin-bar .elx-h { top: 32px; }
@media (max-width: 782px) { .admin-bar .elx-h { top: 46px; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.elx-steps { grid-template-columns: repeat(2, 1fr); }
	.elx-promises, .elx-team { grid-template-columns: repeat(2, 1fr); }
	.elx-addons { grid-template-columns: repeat(2, 1fr); }
	.elx-plan { padding: 30px 24px; }
	.elx-plan__price { font-size: 50px; }
	.elx-timeline__item { grid-template-columns: 72px 1fr; }
	.elx-timeline__need { grid-column: 2; }
}
@media (max-width: 900px) {
	.elx-hero__grid, .elx-split, .elx-compare, .elx-contact, .elx-legal, .elx-f__top { grid-template-columns: 1fr; }
	.elx-split > .elx-head, .elx-legal__toc { position: static; }
	.elx-hero__art { min-height: 380px; }
	.elx-menu__inner { grid-template-columns: 1fr; align-items: start; gap: 36px; }
	.elx-contact-cards { grid-template-columns: 1fr; }
	.elx-f__cols { grid-template-columns: repeat(2, 1fr); }
	.elx-plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
	.elx-plan.is-featured { transform: none; }
}
@media (max-width: 600px) {
	body { font-size: 16px; }
	:root { --hh: 70px; }
	.elx-h__logo { font-size: 26px; }
	.elx-h__wa { width: 46px; padding: 0; justify-content: center; }
	.elx-h__wa span { display: none; }
	.elx-h__toggle { padding-left: 16px; }
	.elx-hero__ctas .elx-btn { width: 100%; }
	.elx-u { white-space: normal; }
	.elx-steps, .elx-promises, .elx-addons, .elx-cards, .elx-form__row { grid-template-columns: 1fr; }
	.elx-team { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.elx-timeline::before { left: 23px; }
	.elx-timeline__item { grid-template-columns: 48px 1fr; gap: 18px; }
	.elx-timeline__n { width: 48px; height: 48px; font-size: 18px; }
	.elx-faq__a { padding-right: 0; }
	.elx-f__cols { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
	.elx-f__bottom .elx-wrap { flex-direction: column; align-items: flex-start; }
	.elx-form .elx-btn { width: 100%; }
	.elx-jump { position: static; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
	html { scroll-behavior: auto; }
	.elx-js .elx-reveal { opacity: 1; transform: none; }
	.elx-u::after { transform: scaleX(1); }
}

/* ==========================================================================
   Custom cursor (mouse / trackpad only)
   ========================================================================== */
.elx-cursor, .elx-cursor-trail {
	position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%;
	opacity: 0; will-change: transform; transition: opacity .3s;
}
/* The dot is drawn at hover size (56px) and scaled down, so the ring stays crisp when it grows. */
.elx-cursor { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
.elx-cursor span {
	display: block; width: 100%; height: 100%; border-radius: 50%;
	background: var(--coral); border: 1.5px solid var(--coral); transform: scale(.2);
	transition: transform .35s var(--ease), background-color .3s;
}
.elx-cursor-trail { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--coral); opacity: 0; }
html.elx-cursor-on .elx-cursor { opacity: 1; }
html.elx-cursor-on .elx-cursor-trail { opacity: .55; }
html.elx-cursor-on .elx-cursor.is-hover span { transform: scale(1); background-color: rgba(255, 107, 74, .16); }
html.elx-cursor-on .elx-cursor.is-down span { transform: scale(.15); }
html.elx-cursor-on .elx-cursor.is-hover.is-down span { transform: scale(.85); }
html.elx-cursor-on.elx-cursor-hide .elx-cursor, html.elx-cursor-on.elx-cursor-hide .elx-cursor-trail { opacity: 0; }
/* Hide the system cursor, but keep the text caret in form fields */
html.elx-cursor-on, html.elx-cursor-on * { cursor: none !important; }
html.elx-cursor-on input, html.elx-cursor-on textarea, html.elx-cursor-on select, html.elx-cursor-on [contenteditable] { cursor: auto !important; }

/* ==========================================================================
   Limited-time offer
   ========================================================================== */
.elx-offer {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 28px;
	background: var(--ink); color: #fff; border-radius: var(--r); padding: 20px 20px 20px 24px; margin-bottom: 28px;
	position: relative; overflow: hidden;
}
.elx-offer::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255, 255, 255, .03) 22px 44px);
}
.elx-offer > * { position: relative; }
.elx-offer__copy { display: flex; align-items: center; gap: 18px; }
.elx-offer__tag {
	flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; width: 84px; height: 84px; border-radius: 50%;
	background: var(--coral); color: #fff; font: 800 13px/1 var(--f-head); letter-spacing: .08em; text-align: center;
	transform: rotate(-10deg); animation: elx-pulse 2.4s ease-in-out infinite;
}
.elx-offer__tag span { display: block; font-size: 30px; letter-spacing: -.03em; }
@keyframes elx-pulse { 0%, 100% { transform: rotate(-10deg) scale(1); } 50% { transform: rotate(-10deg) scale(1.07); } }
.elx-offer__title { font: 800 clamp(20px, 2.2vw, 26px)/1.15 var(--f-head); letter-spacing: -.02em; }
.elx-offer__sub { color: var(--coral); font-weight: 700; margin-top: 4px; }
.elx-offer__timer { display: flex; gap: 8px; }
.elx-offer__unit { display: grid; place-items: center; min-width: 64px; padding: 10px 6px 8px; border-radius: 14px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); }
.elx-offer__unit b { font: 800 28px/1 var(--f-head); font-variant-numeric: tabular-nums; }
.elx-offer__unit small { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-top: 4px; }

/* Plan cards on sale */
.elx-plan__was { display: flex; align-items: center; gap: 10px; margin: 24px 0 -18px; font-weight: 600; color: var(--ink-2); }
.elx-plan__was s { text-decoration-color: var(--coral); text-decoration-thickness: 2px; }
.is-featured .elx-plan__was { color: rgba(255, 255, 255, .75); }
.elx-plan__off { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--coral); color: #fff; }
.elx-table thead th small s { text-decoration-color: var(--coral); opacity: .7; margin-right: 4px; }

/* Hero price tag sticker */
.elx-tag__sticker {
	position: absolute; top: -26px; right: -26px; width: 92px; height: 92px; border-radius: 50%;
	background: var(--coral); color: #fff; display: grid; place-content: center; text-align: center;
	font: 800 14px/1 var(--f-head); letter-spacing: .08em; transform: rotate(12deg);
	box-shadow: 0 14px 30px -12px rgba(255, 107, 74, .8); border: 3px solid var(--fog);
}
.elx-tag__sticker b { display: block; font-size: 32px; letter-spacing: -.03em; }
.elx-tag__from s { opacity: .75; text-decoration-color: var(--coral); text-decoration-thickness: 2px; margin-left: 4px; }
.elx-marquee .is-hot { color: var(--coral); }

@media (max-width: 900px) {
	.elx-offer { padding: 20px; }
	.elx-offer .elx-btn { width: 100%; }
}
@media (max-width: 600px) {
	.elx-offer__tag { width: 70px; height: 70px; }
	.elx-offer__tag span { font-size: 24px; }
	.elx-offer__timer { width: 100%; justify-content: space-between; }
	.elx-offer__unit { flex: 1; min-width: 0; }
	.elx-tag__sticker { top: -18px; right: -10px; width: 76px; height: 76px; }
	.elx-tag__sticker b { font-size: 26px; }
}
