/* BCL Pricing Calculator — scoped styles.
   Everything is namespaced under .bcl-pc so it won't leak into the rest
   of the Elementor page or clash with theme/global selectors. */

.bcl-pc {
	--purple: #410076;
	--secondary: #3D1B7A;
	--violet: #6011B4;
	--plum: #2B1141;
	--lavender: #F7F5FB;
	--heading: #4A1A7A;
	--text: #2B1141;
	--muted: #6b6478;
	--border: #e4dcf0;
	--white: #ffffff;
	--green: #1a7a4a;

	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: var(--white);
	color: var(--text);
	margin: 0;
	padding: 0 0 60px;
}
.bcl-pc *, .bcl-pc *::before, .bcl-pc *::after { box-sizing: border-box; }

.bcl-pc .wrap { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* Suite switcher */
.bcl-pc .suite-nav {
	display: flex; justify-content: center; gap: 8px;
	padding: 14px 16px; background: #fff; border-bottom: 1px solid var(--border);
	flex-wrap: wrap; position: sticky; top: 0; z-index: 10;
}
.bcl-pc .suite-nav button {
	font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted);
	background: #fff; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border);
	cursor: pointer;
}
.bcl-pc .suite-nav button.current { background: var(--violet); color: #fff; border-color: var(--violet); }

/* Hero */
.bcl-pc .hero { text-align: center; padding: 40px 16px 24px; background: var(--lavender); }
.bcl-pc .eyebrow { color: var(--violet); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.bcl-pc h1 { font-weight: 400; font-size: 32px; color: var(--heading); margin: 0 0 8px; }
.bcl-pc .sub { color: var(--muted); font-size: 15px; margin: 0 0 24px; }

/* Mode tabs */
.bcl-pc .mode-tabs {
	display: inline-flex; background: #fff; border: 1px solid var(--border);
	border-radius: 999px; padding: 4px; gap: 2px; flex-wrap: wrap; justify-content: center;
}
.bcl-pc .mode-tabs button {
	font-family: inherit; font-size: 14px; font-weight: 600; padding: 10px 18px;
	border-radius: 999px; border: none; background: transparent; color: var(--muted); cursor: pointer;
}
.bcl-pc .mode-tabs button.active { background: var(--violet); color: #fff; }

/* Calculator card */
.bcl-pc .calc-card {
	background: #fff; border: 1px solid var(--border); border-radius: 16px;
	box-shadow: 0 6px 24px rgba(65,0,118,.08); margin: -28px auto 0; padding: 28px;
	position: relative; z-index: 2;
}
.bcl-pc .panel { display: none; }
.bcl-pc .panel.active { display: block; }
.bcl-pc .panel-intro { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.bcl-pc .panel-intro .tag { font-size: 12px; font-weight: 700; color: var(--violet); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.bcl-pc .panel-intro h3 { font-weight: 400; font-size: 20px; color: var(--heading); margin: 0 0 6px; }
.bcl-pc .panel-intro p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; max-width: 560px; }

.bcl-pc .field-row { margin-bottom: 18px; }
.bcl-pc .field-label { font-size: 13px; font-weight: 600; color: var(--plum); margin-bottom: 8px; display: block; }

.bcl-pc .segmented { display: inline-flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.bcl-pc .segmented button {
	font-family: inherit; font-size: 13.5px; font-weight: 600; padding: 10px 16px;
	border: none; background: #fff; color: var(--muted); cursor: pointer; border-right: 1px solid var(--border);
}
.bcl-pc .segmented button:last-child { border-right: none; }
.bcl-pc .segmented button.active { background: var(--violet); color: #fff; }

.bcl-pc input[type="number"], .bcl-pc select {
	font-family: inherit; font-size: 15px; padding: 11px 14px; border: 1.5px solid var(--border);
	border-radius: 8px; width: 100%; max-width: 220px; color: var(--text);
}
.bcl-pc input[type="number"]:focus, .bcl-pc select:focus { outline: none; border-color: var(--violet); }

/* checkbox rows (Standalone) */
.bcl-pc .checkbox-row {
	display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--border);
	border-radius: 10px; padding: 13px 16px; margin-bottom: 10px; gap: 12px; flex-wrap: wrap;
}
.bcl-pc .checkbox-row.checked { border-color: var(--violet); background: #F9F6FF; }
.bcl-pc .checkbox-left { display: flex; align-items: center; gap: 10px; }
.bcl-pc .checkbox-left input { accent-color: var(--violet); width: 17px; height: 17px; }
.bcl-pc .checkbox-left strong { font-size: 14.5px; color: var(--plum); display: block; }
.bcl-pc .checkbox-left span { font-size: 12.5px; color: var(--muted); }
.bcl-pc .qty-input { width: 80px !important; max-width: 80px; padding: 7px 10px; font-size: 13.5px; }
.bcl-pc .qty-wrap { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); }

/* TP category rows */
.bcl-pc .cat-row {
	display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--border);
	border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; gap: 12px; flex-wrap: wrap;
}
.bcl-pc .cat-row.checked { border-color: var(--violet); background: #F9F6FF; }
.bcl-pc .cat-left { display: flex; align-items: flex-start; gap: 10px; max-width: 75%; }
.bcl-pc .cat-left input { accent-color: var(--violet); width: 17px; height: 17px; margin-top: 3px; }
.bcl-pc .cat-left strong { font-size: 14.5px; color: var(--plum); display: block; }
.bcl-pc .cat-left span { font-size: 12.5px; color: var(--muted); }
.bcl-pc .row-price { font-size: 13.5px; font-weight: 700; color: var(--violet); white-space: nowrap; }

/* CT package cards */
.bcl-pc .package-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 8px; }
.bcl-pc .package-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 16px; cursor: pointer; text-align: left; }
.bcl-pc .package-card:hover { border-color: var(--violet); }
.bcl-pc .package-card.selected { border-color: var(--violet); background: #F9F6FF; }
.bcl-pc .package-card .pname { font-size: 14px; font-weight: 700; color: var(--plum); margin-bottom: 4px; }
.bcl-pc .package-card .pfor { font-size: 12px; color: var(--muted); line-height: 1.4; margin-bottom: 8px; }
.bcl-pc .package-card .pprice { font-size: 16px; font-weight: 700; color: var(--violet); }
@media (max-width: 640px) { .bcl-pc .package-cards { grid-template-columns: 1fr; } }

.bcl-pc .calc-btn {
	font-family: inherit; font-size: 15px; font-weight: 600; padding: 13px 28px;
	background: var(--violet); color: #fff; border: none; border-radius: 8px; cursor: pointer;
	width: 100%; margin-top: 6px;
}
.bcl-pc .calc-btn:hover { background: var(--purple); }

/* Result */
.bcl-pc .result { margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--border); }
.bcl-pc .result-title { font-size: 13px; font-weight: 700; color: var(--violet); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.bcl-pc .result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 14px; }
.bcl-pc .result-stat { background: var(--lavender); border-radius: 10px; padding: 16px 14px; text-align: center; }
.bcl-pc .result-stat .label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.bcl-pc .result-stat .value { font-size: 19px; font-weight: 700; color: var(--plum); }
@media (max-width: 520px) { .bcl-pc .result-grid { grid-template-columns: 1fr; } }
.bcl-pc .formula-line { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.bcl-pc .formula-line code { background: var(--lavender); padding: 2px 8px; border-radius: 6px; color: var(--plum); font-family: "Segoe UI", monospace; }
.bcl-pc .clear-link { text-align: center; margin-top: 4px; }
.bcl-pc .clear-link button { background: none; border: none; color: var(--violet); font-size: 12.5px; cursor: pointer; text-decoration: underline; font-family: inherit; }
.bcl-pc .hidden { display: none !important; }
.bcl-pc .pro-tip { margin-top: 20px; background: #FFF9EC; border: 1px solid #F0E0B5; border-radius: 10px; padding: 14px 16px; font-size: 13.5px; color: #6b5a20; }
.bcl-pc .pro-tip strong { color: #4a3d10; }

/* Plan includes */
.bcl-pc .plan-includes { background: var(--lavender); border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; }
.bcl-pc .plan-includes-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; flex-wrap: wrap; gap: 6px; }
.bcl-pc .plan-includes-head strong { font-size: 14.5px; color: var(--heading); font-weight: 600; }
.bcl-pc .plan-includes-head span { font-size: 12.5px; color: var(--muted); }
.bcl-pc ul.includes { list-style: none; margin: 0; padding: 0; }
.bcl-pc ul.includes li { padding: 7px 0; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.bcl-pc ul.includes li:first-child { border-top: none; }
.bcl-pc ul.includes li::before { content: "✓"; color: var(--violet); font-weight: 700; flex-shrink: 0; }

/* Intake quiz */
.bcl-pc .quiz-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 6px 24px rgba(65,0,118,.08); padding: 28px; margin-bottom: 20px; }
.bcl-pc .quiz-q { margin-bottom: 20px; }
.bcl-pc .quiz-options button { font-size: 13.5px; }
.bcl-pc .quiz-submit:disabled { background: #cbb8e8; cursor: not-allowed; }
.bcl-pc .quiz-skip { text-align: center; margin-top: 12px; }
.bcl-pc .quiz-skip button { background: none; border: none; color: var(--muted); font-size: 12.5px; cursor: pointer; text-decoration: underline; font-family: inherit; }
.bcl-pc .reco-banner {
	display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px;
	background: #F0E8FB; border: 1px solid var(--violet); border-radius: 12px; padding: 14px 20px;
	margin-bottom: 16px; font-size: 13.5px; color: var(--plum);
}
.bcl-pc .reco-banner strong { color: var(--heading); }
.bcl-pc .reco-banner > button { background: none; border: none; color: var(--violet); font-size: 12.5px; cursor: pointer; text-decoration: underline; font-family: inherit; flex-shrink: 0; }
.bcl-pc .reco-main { max-width: 560px; }
.bcl-pc .reco-followup { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(96,17,180,.25); font-size: 12.5px; color: var(--secondary); line-height: 1.5; }
.bcl-pc .reco-followup button { background: none; border: none; color: var(--violet); font-weight: 700; font-size: 12.5px; cursor: pointer; text-decoration: underline; font-family: inherit; padding: 0; }

/* Sections */
.bcl-pc section { padding: 44px 0 0; }
.bcl-pc section h2 { font-weight: 400; font-size: 22px; color: var(--heading); margin: 0 0 6px; text-align: center; }
.bcl-pc section .section-sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 28px; }

.bcl-pc .eligibility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bcl-pc .elig-card { border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.bcl-pc .elig-card .tag { font-size: 12px; font-weight: 700; color: var(--violet); text-transform: uppercase; margin-bottom: 6px; }
.bcl-pc .elig-card h4 { font-size: 15px; font-weight: 600; color: var(--plum); margin: 0 0 8px; }
.bcl-pc .elig-card ul { margin: 0; padding-left: 18px; font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 640px) { .bcl-pc .eligibility-grid { grid-template-columns: 1fr; } }

.bcl-pc .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bcl-pc .step { text-align: center; }
.bcl-pc .step .num {
	font-size: 13px; font-weight: 700; color: var(--violet); border: 1.5px solid var(--violet);
	width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.bcl-pc .step h3 { font-weight: 600; font-size: 15px; color: var(--plum); margin: 0 0 6px; }
.bcl-pc .step p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
@media (max-width: 640px) { .bcl-pc .steps { grid-template-columns: 1fr; } }

.bcl-pc .maths-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bcl-pc .maths-card { border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.bcl-pc .maths-card .tag { font-size: 12px; font-weight: 700; color: var(--violet); text-transform: uppercase; margin-bottom: 2px; }
.bcl-pc .maths-card .desc { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.bcl-pc .maths-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-top: 1px solid var(--border); }
.bcl-pc .maths-row:first-of-type { border-top: none; }
.bcl-pc .maths-row.total { font-weight: 700; color: var(--plum); }
.bcl-pc .maths-formula { margin-top: 10px; font-size: 11.5px; color: var(--muted); background: var(--lavender); padding: 6px 10px; border-radius: 6px; text-align: center; }
@media (max-width: 640px) { .bcl-pc .maths-grid { grid-template-columns: 1fr; } }

.bcl-pc table.compare { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.bcl-pc table.compare th, .bcl-pc table.compare td { border: 1px solid var(--border); padding: 11px 14px; text-align: left; }
.bcl-pc table.compare th { background: var(--lavender); color: var(--plum); font-weight: 600; }
.bcl-pc table.compare td.yes { color: var(--green); font-weight: 600; }
.bcl-pc table.compare td.no { color: #a33; }

.bcl-pc .faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.bcl-pc .faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--plum); }
.bcl-pc .faq-q .icon { font-size: 18px; color: var(--violet); transition: transform .15s ease; }
.bcl-pc .faq-item.open .icon { transform: rotate(45deg); }
.bcl-pc .faq-a { max-height: 0; overflow: hidden; transition: max-height .2s ease; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.bcl-pc .faq-item.open .faq-a { max-height: 320px; margin-top: 10px; }

.bcl-pc .end-cta { background: var(--lavender); border-radius: 16px; text-align: center; padding: 36px 24px; margin-top: 48px; }
.bcl-pc .end-cta h2 { margin-bottom: 8px; }
.bcl-pc .end-cta p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
.bcl-pc .end-cta a.btn { display: inline-block; background: var(--violet); color: #fff; text-decoration: none; font-weight: 600; font-size: 14.5px; padding: 13px 28px; border-radius: 8px; }
.bcl-pc .end-cta a.btn:hover { background: var(--purple); }
.bcl-pc .contact-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 24px; }
.bcl-pc .contact-note a { color: var(--violet); }

.bcl-pc .page { display: none; }
.bcl-pc .page.active { display: block; }
