/*
 * Custom Energy Creation (Option A / page 226).
 *
 * Laid out against the client's full-page mockup:
 * ~/Downloads/俩个子页面/DIY页面/e541aad50c6345b488154d2af940f9e7.png (细节问题 五.1).
 * Section order, the "NN | TITLE" headers, the hero badge column, the two checkout
 * paths and the delivery strip all come from that file — keep them in sync with it.
 */
.ei-cec {
	--cec-gold: #d8a743;
	--cec-gold-soft: rgba(216, 167, 67, 0.32);
	--cec-purple: #8b5cf6;
	--cec-violet: #4c2a8f;
	/*
	 * Sampled straight from the mockup: page #010a23, cards #0a0b25, summary #10102e.
	 * This matters beyond taste — every icon the client supplied is an opaque PNG with
	 * this navy baked in behind the art. On the old purple-black page each icon read as
	 * a dark rectangle; on the navy they blend, exactly as they do in the mockup.
	 */
	--cec-bg: #010a23;
	--cec-card: #0a0b25;
	--cec-panel: #060c28;
	--cec-summary: #10102e;
	color: var(--ei-text, #f7ecd5);
	background:
		radial-gradient(circle at 12% 0%, rgba(139, 92, 246, 0.14), transparent 42%),
		radial-gradient(circle at 88% 12%, rgba(216, 167, 67, 0.08), transparent 44%),
		var(--cec-bg);
}
/*
 * The icon PNGs in assets/images/studio/custom-creation/ are alpha-keyed copies of the
 * client art (their originals bake the mockup's dark field in as opaque pixels), so they
 * composite normally here — no blend-mode tricks. Re-key with the same luminance ramp if
 * they are ever re-imported, or every icon comes back as a dark rectangle.
 */
.ei-cec-container {
	/* 1360 is the site-wide content width (ritual-families / category-overview /
	   intention-bracelets all use it); this page was the odd one out at 1180. */
	width: min(100% - clamp(28px, 4vw, 64px), 1360px);
	margin-inline: auto;
}
.ei-cec-section {
	padding-block: clamp(34px, 3.6vw, 56px);
	border-top: 1px solid rgba(216, 167, 67, 0.16);
}

/* "04 | BRACELET CONFIGURATION" section headers */
.ei-cec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ei-cec-head__num {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 1.24rem;
	font-weight: 700;
	color: var(--cec-gold);
	opacity: 0.85;
}
.ei-cec-head h2 {
	margin: 0;
	padding-left: 14px;
	border-left: 1px solid var(--cec-gold-soft);
	font-size: clamp(1.24rem, 2.1vw, 1.7rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff2cf;
}
.ei-cec-head__rule {
	padding: 4px 12px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cec-gold);
	border: 1px solid var(--cec-gold-soft);
	border-radius: 999px;
}

/* Buttons */
.ei-cec-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	font-family: var(--ei-ui-font, sans-serif);
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 200ms ease, box-shadow 200ms ease;
}
.ei-cec-btn--primary {
	color: #1a1206;
	background: linear-gradient(135deg, #f2cf72, #d8a743);
	border: 0;
	box-shadow: 0 14px 34px rgba(216, 167, 67, 0.32);
}
.ei-cec-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(216, 167, 67, 0.42); }
/* The mockup's second CTA is a violet button, not an outline. */
.ei-cec-btn--violet {
	color: #f4ecff;
	background: linear-gradient(135deg, #5c34a8, #3f2178);
	border: 1px solid rgba(163, 122, 255, 0.5);
	box-shadow: 0 14px 34px rgba(76, 42, 143, 0.4);
}
.ei-cec-btn--violet:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(76, 42, 143, 0.5); }

/* ============================ 00 HERO ============================ */
.ei-cec-hero {
	position: relative;
	padding-block: clamp(48px, 5vw, 74px);
	overflow: hidden;
	border-bottom: 1px solid rgba(216, 167, 67, 0.18);
	background-image: var(--cec-hero-image);
	background-size: cover;
	background-position: center;
}
/* Keep the left copy legible over the bracelet artwork. */
.ei-cec-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(7, 5, 18, 0.92) 0%, rgba(7, 5, 18, 0.66) 34%, rgba(7, 5, 18, 0.12) 58%, rgba(7, 5, 18, 0.55) 100%),
		linear-gradient(180deg, rgba(7, 5, 18, 0.5), transparent 30%, rgba(7, 5, 18, 0.55));
}
.ei-cec-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 460px) 1fr minmax(0, 210px);
	align-items: center;
	gap: 24px;
	min-height: clamp(420px, 38vw, 540px);
}
.ei-cec-hero__copy { grid-column: 1; }
.ei-cec-hero__tag {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0 6px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ei-muted, #c7ac7a);
}
.ei-cec-hero__tag span {
	padding-right: 10px;
	border-right: 1px solid var(--cec-gold-soft);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--cec-gold);
}
.ei-cec-hero h1 {
	margin: 0 0 16px;
	max-width: 16ch;
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.12;
	color: #fff2cf;
}
.ei-cec-hero__lead {
	max-width: 46ch;
	margin: 0 0 10px;
	color: var(--ei-muted, #c7ac7a);
	font-size: 1rem;
	line-height: 1.5;
}
/* Side by side like the mockup — the default 30px padding wrapped them into a stack. */
.ei-cec-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.ei-cec-hero__cta .ei-cec-btn { flex: 1 1 auto; padding-inline: 18px; white-space: nowrap; }
.ei-cec-hero__badges {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ei-cec-hero__badges li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 10px;
	text-align: center;
	background: rgba(7, 5, 18, 0.52);
	border: 1px solid var(--cec-gold-soft);
	border-radius: 12px;
	backdrop-filter: blur(2px);
}
.ei-cec-hero__badges img { width: 88px; height: 66px; object-fit: contain; }
.ei-cec-hero__badges span {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--cec-gold);
}

/* ======================== 01 CORE VALUE ========================= */
/* The mockup separates the four values with hairlines, not cards. */
.ei-cec-values__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ei-cec-value {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 8px 22px;
	text-align: center;
	border-left: 1px solid rgba(216, 167, 67, 0.2);
}
.ei-cec-value:first-child { border-left: 0; }
.ei-cec-value__image { width: 84px; height: 84px; object-fit: contain; }
.ei-cec-value strong { color: #fff2cf; font-size: 1rem; font-weight: 500; line-height: 1.35; }

/* ======================== 02 INTENTIONS ========================= */
.ei-cec-intent-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.ei-cec-intent {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 20px 12px 16px;
	text-align: center;
	cursor: pointer;
	background: var(--cec-card);
	border: 1px solid rgba(216, 167, 67, 0.24);
	border-radius: 12px;
	transition: border-color 180ms ease, transform 180ms ease;
}
.ei-cec-intent input { position: absolute; opacity: 0; }
.ei-cec-intent:hover { transform: translateY(-3px); }
.ei-cec-intent:has(input:checked) {
	border-color: var(--cec-gold);
	box-shadow: 0 0 0 1px var(--cec-gold), 0 14px 30px rgba(0, 0, 0, 0.4);
}
.ei-cec-intent__image { display: block; width: 92px; height: 92px; object-fit: contain; margin-bottom: 6px; }
.ei-cec-intent__label {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff2cf;
}
.ei-cec-intent__sub { color: var(--ei-muted, #c7ac7a); font-size: 0.78rem; line-height: 1.3; }
/* The mockup shows a checkbox at the foot of each intention card. */
.ei-cec-intent__box {
	display: grid;
	place-content: center;
	width: 20px;
	height: 20px;
	margin-top: 10px;
	background: rgba(7, 6, 16, 0.7);
	border: 1px solid rgba(216, 167, 67, 0.45);
	border-radius: 5px;
	transition: background 160ms ease, border-color 160ms ease;
}
.ei-cec-intent__box::after {
	content: "";
	width: 9px;
	height: 5px;
	border-left: 2px solid #1a1206;
	border-bottom: 2px solid #1a1206;
	transform: rotate(-45deg) translate(1px, -2px);
	opacity: 0;
	transition: opacity 140ms ease;
}
.ei-cec-intent:has(input:checked) .ei-cec-intent__box {
	background: linear-gradient(135deg, #f2cf72, #d8a743);
	border-color: var(--cec-gold);
}
.ei-cec-intent:has(input:checked) .ei-cec-intent__box::after { opacity: 1; }
.ei-cec-intent input:focus-visible ~ .ei-cec-intent__box { box-shadow: 0 0 0 3px rgba(216, 167, 67, 0.3); }
.ei-cec-intent--rule {
	cursor: default;
	justify-content: center;
	gap: 8px;
	background: rgba(12, 10, 32, 0.5);
}
.ei-cec-intent--rule:hover { transform: none; }
.ei-cec-intent--rule strong {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cec-gold);
}
.ei-cec-intent__rule-mark { width: 56px; height: 56px; object-fit: contain; margin-top: 4px; opacity: 0.8; }
/* Clicking a 4th intention silently bounces back; flash the rule so it reads. */
.ei-cec-intent--rule.is-flash { animation: ei-cec-flash 620ms ease; }
@keyframes ei-cec-flash {
	0%, 100% { border-color: rgba(216, 167, 67, 0.24); }
	30%, 70% { border-color: var(--cec-gold); box-shadow: 0 0 0 1px var(--cec-gold), 0 0 26px rgba(216, 167, 67, 0.4); }
}

/* ===================== 03 ENERGY STATE INPUT ==================== */
.ei-cec-state__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: start; }
.ei-cec-field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	background: var(--cec-panel);
	border: 1px solid rgba(216, 167, 67, 0.22);
	border-radius: 12px;
}
.ei-cec-field > span {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cec-gold);
}
.ei-cec-field input,
.ei-cec-field select {
	width: 100%;
	padding: 12px 14px;
	color: var(--ei-text, #f7ecd5);
	background: rgba(7, 6, 16, 0.7);
	border: 1px solid rgba(216, 167, 67, 0.28);
	border-radius: 10px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.94rem;
}
.ei-cec-field input:focus,
.ei-cec-field select:focus { outline: none; border-color: var(--cec-gold); box-shadow: 0 0 0 3px rgba(216, 167, 67, 0.18); }

/* Pills */
.ei-cec-pills { display: flex; gap: 8px; }
.ei-cec-pills--intensity { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ei-cec-pill {
	position: relative;
	display: flex;
	cursor: pointer;
	background: rgba(7, 6, 16, 0.7);
	border: 1px solid rgba(216, 167, 67, 0.28);
	border-radius: 10px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.86rem;
	transition: border-color 160ms ease, background 160ms ease;
}
.ei-cec-pill input { position: absolute; opacity: 0; }
.ei-cec-pill > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100%;
	padding: 10px 6px;
}
.ei-cec-pill:has(input:checked) { border-color: var(--cec-gold); background: rgba(216, 167, 67, 0.16); }
.ei-cec-pill--icon img { width: 26px; height: 26px; object-fit: contain; }

/* ==================== 04 BRACELET CONFIGURATION ================= */
/* The three blocks stretch to a shared height so their bottom edges line up. */
.ei-cec-config__grid { display: grid; grid-template-columns: 0.85fr 0.9fr 1.25fr; gap: 18px; align-items: stretch; }
.ei-cec-config__block {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background: var(--cec-panel);
	border: 1px solid rgba(216, 167, 67, 0.22);
	border-radius: 14px;
}
.ei-cec-config__block h3 {
	margin: 0 0 14px;
	color: #fff2cf;
	font-size: 1.05rem;
	text-align: center;
}

/* Wrist size — radio rows, per the mockup */
.ei-cec-wrist { display: flex; flex-direction: column; gap: 8px; }
.ei-cec-wrist__row {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	cursor: pointer;
	background: rgba(7, 6, 16, 0.6);
	border: 1px solid rgba(216, 167, 67, 0.24);
	border-radius: 8px;
	transition: border-color 160ms ease, background 160ms ease;
}
.ei-cec-wrist__row input { position: absolute; opacity: 0; }
.ei-cec-wrist__dot {
	display: grid;
	place-content: center;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	border: 1px solid rgba(216, 167, 67, 0.55);
	border-radius: 50%;
}
.ei-cec-wrist__dot::after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cec-gold);
	opacity: 0;
	transition: opacity 140ms ease;
}
.ei-cec-wrist__row strong { font-family: var(--ei-ui-font, sans-serif); font-size: 0.9rem; color: #fff2cf; }
.ei-cec-wrist__row em { margin-left: auto; font-style: normal; font-size: 0.88rem; color: var(--ei-muted, #c7ac7a); }
.ei-cec-wrist__row:has(input:checked) { border-color: var(--cec-gold); background: rgba(216, 167, 67, 0.14); }
.ei-cec-wrist__row:has(input:checked) .ei-cec-wrist__dot::after { opacity: 1; }
.ei-cec-wrist__row input:focus-visible ~ .ei-cec-wrist__dot { box-shadow: 0 0 0 3px rgba(216, 167, 67, 0.3); }
.ei-cec-wrist__hint {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 14px 0 0;
	font-size: 0.78rem;
	color: var(--ei-muted, #c7ac7a);
}
.ei-cec-wrist__hint img { width: 42px; height: 42px; object-fit: contain; opacity: 0.85; }

/* Bead size — image / label / price rows, per the mockup */
.ei-cec-beads { display: flex; flex-direction: column; gap: 10px; }
.ei-cec-bead {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	cursor: pointer;
	background: rgba(7, 6, 16, 0.7);
	border: 1px solid rgba(216, 167, 67, 0.28);
	border-radius: 10px;
	transition: border-color 160ms ease, background 160ms ease;
}
.ei-cec-bead input { position: absolute; opacity: 0; }
.ei-cec-bead:has(input:checked) { border-color: var(--cec-gold); background: rgba(216, 167, 67, 0.14); }
.ei-cec-bead input:focus-visible ~ .ei-cec-bead__size { text-decoration: underline; }
.ei-cec-bead__image { flex: 0 0 auto; width: 52px; height: 52px; object-fit: contain; }
.ei-cec-bead__size { font-family: var(--ei-ui-font, sans-serif); font-size: 1rem; font-weight: 700; color: #fff2cf; }
/* Auto margin, not space-between: the bead art must not drift from the label. */
.ei-cec-bead__price { margin-left: auto; font-family: var(--ei-ui-font, sans-serif); font-size: 0.92rem; color: var(--cec-gold); white-space: nowrap; }
.ei-cec-bead__price i,
.ei-cec-upgrade__offer-row i,
.ei-cec-summary__total i { font-style: normal; font-size: 0.72em; opacity: 0.75; }

/* Optional upgrade — violet panel */
.ei-cec-upgrade { background: linear-gradient(160deg, rgba(92, 52, 168, 0.5), rgba(28, 16, 58, 0.9)); border-color: rgba(163, 122, 255, 0.4); }
.ei-cec-upgrade:has(input:checked) { border-color: var(--cec-gold); box-shadow: 0 0 0 1px var(--cec-gold); }
.ei-cec-upgrade__toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; margin-bottom: 14px; }
/* A native checkbox renders as a white square on this dark card; draw our own. */
.ei-cec-upgrade__toggle input {
	appearance: none;
	-webkit-appearance: none;
	display: grid;
	place-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin: 0;
	cursor: pointer;
	background: rgba(7, 6, 16, 0.7);
	border: 1px solid rgba(216, 167, 67, 0.45);
	border-radius: 6px;
	transition: background 160ms ease, border-color 160ms ease;
}
.ei-cec-upgrade__toggle input::after {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid #1a1206;
	border-bottom: 2px solid #1a1206;
	transform: rotate(-45deg) translate(1px, -2px);
	opacity: 0;
	transition: opacity 140ms ease;
}
.ei-cec-upgrade__toggle input:checked { background: linear-gradient(135deg, #f2cf72, #d8a743); border-color: var(--cec-gold); }
.ei-cec-upgrade__toggle input:checked::after { opacity: 1; }
.ei-cec-upgrade__toggle input:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(216, 167, 67, 0.28); }
.ei-cec-upgrade__title {
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff2cf;
}
.ei-cec-upgrade__body { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 14px; align-items: stretch; }
.ei-cec-upgrade__offer {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px;
	text-align: center;
	background: rgba(7, 6, 16, 0.42);
	border: 1px solid rgba(163, 122, 255, 0.4);
	border-radius: 10px;
}
.ei-cec-upgrade__offer strong { color: #fff2cf; font-size: 0.98rem; font-weight: 500; }
.ei-cec-upgrade__offer-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: auto; }
/* flex-shrink would squash the icon to a few pixels next to the price. */
.ei-cec-upgrade__offer-row img { flex: 0 0 auto; width: 64px; height: 64px; object-fit: contain; }
.ei-cec-upgrade__offer-row em { font-style: normal; font-size: 1.32rem; font-weight: 700; color: var(--cec-gold); }
.ei-cec-upgrade__includes { padding: 4px 0; }
.ei-cec-upgrade__includes strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff2cf;
}
.ei-cec-upgrade__includes ul { margin: 0; padding: 0; list-style: none; }
.ei-cec-upgrade__includes li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 7px;
	color: var(--ei-muted, #c7ac7a);
	font-size: 0.88rem;
}
.ei-cec-upgrade__includes li::before { content: "✓"; color: var(--cec-gold); font-weight: 700; }

/* ====================== 05 CHECKOUT LOGIC ======================= */
.ei-cec-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 18px; }
.ei-cec-path {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: var(--cec-panel);
	border: 1px solid rgba(216, 167, 67, 0.24);
	border-radius: 12px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.ei-cec-path img { flex: 0 0 auto; width: 72px; height: 52px; object-fit: contain; }
.ei-cec-path strong { display: block; color: #fff2cf; font-size: 1.16rem; font-weight: 500; }
.ei-cec-path em { font-style: normal; color: var(--ei-muted, #c7ac7a); font-size: 0.94rem; }
/* Mirrors the consultation toggle so the active checkout path is obvious. */
.ei-cec-path.is-active { border-color: var(--cec-gold); box-shadow: 0 0 0 1px var(--cec-gold), 0 14px 30px rgba(0, 0, 0, 0.34); }

.ei-cec-checkout__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; align-items: stretch; }
.ei-cec-summary,
.ei-cec-buy {
	padding: 24px;
	background: var(--cec-card);
	border: 1px solid rgba(216, 167, 67, 0.22);
	border-radius: 14px;
}
.ei-cec-summary h3 { margin: 0 0 16px; color: var(--cec-gold); font-size: 1.3rem; }
.ei-cec-summary__rows { margin: 0 0 14px; }
.ei-cec-summary__rows > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed rgba(216, 167, 67, 0.2); }
/* Any row toggled with the [hidden] attribute must beat the display rule above. */
.ei-cec-summary__rows > div[hidden] { display: none; }
.ei-cec-summary__rows dt { color: var(--ei-muted, #c7ac7a); margin: 0; }
.ei-cec-summary__rows dd { color: #fff2cf; margin: 0; }
.ei-cec-summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; }
/* Direct child only: as a descendant selector this also shrank the amount inside <strong>. */
.ei-cec-summary__total > span { color: var(--ei-muted, #c7ac7a); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; }
.ei-cec-summary__total strong { color: var(--cec-gold); font-size: 1.9rem; }
.ei-cec-buy { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.ei-cec-buy__note { color: var(--ei-muted, #c7ac7a); font-size: 0.96rem; margin: 0; }
.ei-cec-buy__submit { width: 100%; font-size: 1.05rem; }
.ei-cec-buy__secure { display: flex; align-items: center; gap: 8px; color: var(--ei-muted, #c7ac7a); font-size: 0.84rem; margin: 14px 0 0; }
.ei-cec-buy__secure svg { width: 18px; height: 18px; color: var(--cec-gold); }

/* ======================== 06 CONTACT ============================ */
.ei-cec-contact__layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 22px; align-items: center; }
.ei-cec-contact__lead { margin: 0; color: var(--ei-muted, #c7ac7a); font-size: 1.02rem; line-height: 1.5; }
.ei-cec-contact__panel {
	padding: 16px 20px 20px;
	background: var(--cec-panel);
	border: 1px solid rgba(216, 167, 67, 0.22);
	border-radius: 12px;
}
.ei-cec-contact__note {
	margin: 0 0 14px;
	font-family: var(--ei-ui-font, sans-serif);
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	color: var(--cec-gold);
}
.ei-cec-contact__row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ei-cec-contact__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 6px;
	color: #fff2cf;
	font-size: 0.86rem;
	text-align: center;
}
a.ei-cec-contact__item:hover { color: var(--cec-gold); }
.ei-cec-contact__image { width: 46px; height: 46px; object-fit: contain; }

/* ====================== 07 BLUEPRINT ============================ */
.ei-cec-blueprint__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.ei-cec-blueprint__card {
	background: var(--cec-card);
	border: 1px solid rgba(216, 167, 67, 0.2);
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	color: #fff2cf;
}
.ei-cec-blueprint__card img { display: block; width: 100%; aspect-ratio: 6 / 5; object-fit: cover; }
.ei-cec-blueprint__card span { display: block; padding: 10px 8px 12px; font-size: 0.9rem; }

/* ======================== 08 PROCESS ============================ */
/* Four steps joined by the mockup's gold arrows. */
.ei-cec-process__row {
	display: flex;
	align-items: stretch;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ei-cec-process__step {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--cec-card);
	border: 1px solid rgba(216, 167, 67, 0.2);
	border-radius: 12px;
	color: #fff2cf;
}
.ei-cec-process__step img { display: block; width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.ei-cec-process__step span { padding: 10px 8px 12px; text-align: center; font-size: 0.92rem; }
.ei-cec-process__arrow {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	color: var(--cec-gold);
	font-size: 1.5rem;
	line-height: 1;
}

/* ======================= 09 DELIVERY ============================ */
.ei-cec-delivery__row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.ei-cec-deliverable {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: var(--cec-card);
	border: 1px solid rgba(216, 167, 67, 0.2);
	border-radius: 12px;
	color: #fff2cf;
}
.ei-cec-deliverable img {
	flex: 0 0 auto;
	width: 76px;
	height: 62px;
	object-fit: cover;
	border-radius: 8px;
}
.ei-cec-deliverable span { font-size: 0.86rem; line-height: 1.3; }

/* ======================== 10 FINAL CTA ========================== */
.ei-cec-final__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.ei-cec-final__copy h3 { margin: 0 0 8px; color: #fff2cf; font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
.ei-cec-final__copy p { margin: 0; color: var(--ei-muted, #c7ac7a); font-size: 0.96rem; }
.ei-cec-final__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.ei-cec-final__cta .ei-cec-btn { min-width: 240px; }

/* ========================= RESPONSIVE ========================== */
@media (max-width: 1100px) {
	.ei-cec-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 190px); }
	.ei-cec-hero__copy { grid-column: 1; }
	.ei-cec-hero__badges { grid-column: 2; }
	.ei-cec-config__grid { grid-template-columns: 1fr 1fr; }
	.ei-cec-upgrade { grid-column: span 2; }
	.ei-cec-state__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ei-cec-intent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ei-cec-delivery__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ei-cec-blueprint__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ei-cec-process__row { flex-wrap: wrap; }
	.ei-cec-process__step { flex-basis: calc(50% - 22px); }
}
@media (max-width: 900px) {
	.ei-cec-hero__inner { grid-template-columns: 1fr; min-height: 0; }
	.ei-cec-hero__copy,
	.ei-cec-hero__badges { grid-column: 1; }
	.ei-cec-hero__badges { flex-direction: row; }
	.ei-cec-hero__badges li { flex: 1 1 0; }
	.ei-cec-hero h1 { max-width: none; }
	.ei-cec-values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ei-cec-value { border-left: 0; }
	.ei-cec-config__grid { grid-template-columns: 1fr; }
	.ei-cec-upgrade { grid-column: auto; }
	.ei-cec-paths { grid-template-columns: 1fr; }
	.ei-cec-checkout__grid { grid-template-columns: 1fr; }
	.ei-cec-contact__layout { grid-template-columns: 1fr; }
	.ei-cec-final__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
	.ei-cec-intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ei-cec-state__grid { grid-template-columns: 1fr; }
	.ei-cec-values__grid { grid-template-columns: 1fr; }
	.ei-cec-blueprint__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ei-cec-delivery__row { grid-template-columns: 1fr; }
	.ei-cec-upgrade__body { grid-template-columns: 1fr; }
	.ei-cec-hero__badges { flex-direction: column; }
	.ei-cec-process__step { flex-basis: 100%; }
	.ei-cec-process__arrow { display: none; }
	.ei-cec-final__cta .ei-cec-btn { min-width: 0; flex: 1 1 100%; }
}
