/* =========================================================================
   BIGSTARTUP Business Content — mobile-first stylesheet
   Palette matched to the BIGSTARTUP logo (red #E20C0B / dark #152B2F).
   Scoped entirely under .bsc-root so it never touches the theme header/footer.
   ========================================================================= */

.bsc-root {
	--bsc-primary: #E20C0B;
	--bsc-primary-dark: #B30909;
	--bsc-primary-light: #FDECEC;
	--bsc-dark: #152B2F;
	--bsc-amber: #F59E0B;
	--bsc-amber-bg: #FFF7E6;
	--bsc-white: #FFFFFF;
	--bsc-border: #ECE4E4;
	--bsc-muted: #64707A;
	--bsc-shadow-sm: 0 1px 3px rgba(21, 43, 47, 0.06);
	--bsc-shadow-md: 0 10px 24px rgba(21, 43, 47, 0.08);
	--bsc-radius: 18px;

	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--bsc-dark);
	background: var(--bsc-white);
	overflow-x: hidden;
}

.bsc-root, .bsc-root * , .bsc-root *::before, .bsc-root *::after {
	box-sizing: border-box;
}

.bsc-section {
	width: 100%;
	padding: 34px 16px;
	border-bottom: 1px solid var(--bsc-border);
}

.bsc-section:last-of-type {
	border-bottom: none;
}

.bsc-h1 {
	font-size: 25px;
	line-height: 1.3;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 12px 0 8px;
}

.bsc-h2 {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 8px;
}

.bsc-lead {
	font-size: 15px;
	color: var(--bsc-muted);
	margin: 0 0 16px;
}

.bsc-desc {
	font-size: 14px;
	color: var(--bsc-muted);
	margin: 0 0 18px;
	line-height: 1.65;
}

.bsc-badge {
	display: inline-block;
	background: var(--bsc-primary-light);
	color: var(--bsc-primary);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 999px;
}

/* ---------- Video ---------- */
.bsc-video-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	border-radius: var(--bsc-radius);
	overflow: hidden;
	background: var(--bsc-dark);
	margin: 4px 0 10px;
	box-shadow: var(--bsc-shadow-md);
}

.bsc-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.bsc-caption {
	font-size: 13px;
	color: var(--bsc-muted);
	text-align: center;
	margin: 0;
}

/* ---------- Requirement cards ---------- */
.bsc-req-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bsc-req-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--bsc-white);
	border: 1px solid var(--bsc-border);
	border-radius: 14px;
	padding: 13px 14px;
	box-shadow: var(--bsc-shadow-sm);
}

.bsc-req-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	background: var(--bsc-primary-light);
	border-radius: 12px;
}

.bsc-req-text {
	display: flex;
	flex-direction: column;
	font-size: 13px;
}

.bsc-req-text strong {
	font-size: 14px;
	margin-bottom: 2px;
	color: var(--bsc-dark);
}

.bsc-req-text span {
	color: var(--bsc-muted);
}

/* ---------- Buttons ---------- */
.bsc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.bsc-btn:active {
	transform: scale(0.98);
}

.bsc-btn-primary {
	background: linear-gradient(135deg, var(--bsc-primary), var(--bsc-primary-dark));
	color: var(--bsc-white);
	box-shadow: 0 8px 18px rgba(226, 12, 11, 0.28);
}

.bsc-btn-outline {
	background: var(--bsc-white);
	color: var(--bsc-primary);
	border: 1.5px solid var(--bsc-primary);
}

.bsc-btn-block {
	width: 100%;
}

/* ---------- Steps ---------- */
.bsc-steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bsc-step {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.bsc-step-num {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bsc-primary), var(--bsc-primary-dark));
	color: var(--bsc-white);
	font-weight: 800;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(226, 12, 11, 0.25);
}

.bsc-step-body strong {
	display: block;
	font-size: 15px;
	margin-bottom: 2px;
	color: var(--bsc-dark);
}

.bsc-step-body p {
	font-size: 13px;
	color: var(--bsc-muted);
	margin: 0;
	line-height: 1.5;
}

/* ---------- Info boxes ---------- */
.bsc-info-box {
	border-radius: var(--bsc-radius);
	padding: 20px;
	border: 1px solid var(--bsc-border);
}

.bsc-info-box-primary {
	background: linear-gradient(160deg, var(--bsc-primary-light) 0%, var(--bsc-white) 100%);
	border-color: rgba(226, 12, 11, 0.18);
	box-shadow: var(--bsc-shadow-sm);
}

.bsc-info-box-amber {
	background: var(--bsc-amber-bg);
	border-color: rgba(245, 158, 11, 0.35);
}

.bsc-info-box-amber p {
	font-size: 13px;
	line-height: 1.6;
	margin: 0 0 12px;
	color: var(--bsc-dark);
}

.bsc-info-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--bsc-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}

.bsc-info-amount {
	font-size: 28px;
	font-weight: 800;
	color: var(--bsc-primary);
	margin-bottom: 4px;
}

.bsc-price-box {
	margin: 16px 0;
	text-align: center;
}

.bsc-price-box .bsc-info-amount {
	font-size: 32px;
}

/* ---------- Check lists ---------- */
.bsc-check-list, .bsc-plain-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bsc-check-list li {
	font-size: 14px;
	font-weight: 600;
	color: var(--bsc-dark);
	background: var(--bsc-white);
	border: 1px solid var(--bsc-border);
	border-left: 3px solid var(--bsc-primary);
	border-radius: 10px;
	padding: 11px 14px;
	box-shadow: var(--bsc-shadow-sm);
}

.bsc-plain-list li {
	font-size: 13px;
	color: var(--bsc-muted);
	border-left: 2px solid var(--bsc-primary);
	padding-left: 10px;
}

/* ---------- Training ---------- */
.bsc-training-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 10px;
}

.bsc-training-card {
	border: 1px solid var(--bsc-border);
	border-radius: var(--bsc-radius);
	padding: 18px;
	box-shadow: var(--bsc-shadow-sm);
}

.bsc-training-card h3 {
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 10px;
	color: var(--bsc-dark);
}

.bsc-note {
	font-size: 12px;
	color: var(--bsc-muted);
	font-style: italic;
	margin: 4px 0 0;
}

/* ---------- Form ---------- */
.bsc-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bsc-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.bsc-form-row label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bsc-dark);
}

.bsc-form-row input[type="text"],
.bsc-form-row input[type="tel"],
.bsc-form-row textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--bsc-border);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14px;
	font-family: inherit;
	background: var(--bsc-white);
	color: var(--bsc-dark);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bsc-form-row input:focus,
.bsc-form-row textarea:focus {
	outline: none;
	border-color: var(--bsc-primary);
	box-shadow: 0 0 0 3px rgba(226, 12, 11, 0.12);
}

.bsc-form-row textarea {
	min-height: 100px;
	resize: vertical;
}

.bsc-radio-row {
	display: flex;
	gap: 18px;
}

.bsc-radio, .bsc-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 400;
}

.bsc-consent-row {
	background: var(--bsc-primary-light);
	border-radius: 12px;
	padding: 12px 14px;
}

.bsc-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bsc-form-message {
	font-size: 13px;
	min-height: 18px;
}

.bsc-form-message.bsc-success {
	color: var(--bsc-primary);
	font-weight: 700;
}

.bsc-form-message.bsc-error {
	color: #DC2626;
	font-weight: 700;
}

/* ---------- Sticky CTA (sits above existing bottom nav) ---------- */
.bsc-sticky-cta {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: calc(60px + env(safe-area-inset-bottom, 0px)); /* adjust 60px to match your theme's bottom nav height */
	z-index: 999;
	display: none;
}

.bsc-sticky-cta a {
	display: block;
	width: 100%;
	text-align: center;
	background: linear-gradient(135deg, var(--bsc-primary), var(--bsc-primary-dark));
	color: var(--bsc-white);
	font-weight: 700;
	font-size: 14px;
	padding: 13px 16px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(226, 12, 11, 0.35);
}

.bsc-sticky-cta.bsc-visible {
	display: block;
}

/* ---------- Refund calculation table (Terms & Conditions page) ---------- */
.bsc-calc-table {
	border: 1px solid var(--bsc-border);
	border-radius: var(--bsc-radius);
	overflow: hidden;
	box-shadow: var(--bsc-shadow-sm);
	margin-bottom: 10px;
}

.bsc-calc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	font-size: 13.5px;
	border-bottom: 1px solid var(--bsc-border);
	background: var(--bsc-white);
}

.bsc-calc-row:last-child {
	border-bottom: none;
}

.bsc-calc-row span {
	color: var(--bsc-muted);
}

.bsc-calc-row strong {
	color: var(--bsc-dark);
	font-weight: 700;
	white-space: nowrap;
}

.bsc-calc-minus {
	background: var(--bsc-primary-light);
}

.bsc-calc-minus strong {
	color: var(--bsc-primary);
}

.bsc-calc-total {
	background: linear-gradient(135deg, var(--bsc-primary), var(--bsc-primary-dark));
}

.bsc-calc-total span,
.bsc-calc-total strong {
	color: var(--bsc-white);
}

.bsc-calc-total span {
	font-weight: 700;
}

.bsc-calc-total strong {
	font-size: 16px;
}

.bsc-terms-disclaimer {
	font-size: 11.5px;
	color: var(--bsc-muted);
	font-style: italic;
	text-align: center;
	padding: 18px 16px 30px;
	margin: 0;
}

/* =========================================================================
   Tablet / Desktop enhancements — mobile styles above remain the baseline.
   ========================================================================= */
@media (min-width: 700px) {
	.bsc-section {
		padding: 48px 26px;
	}

	.bsc-req-grid {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.bsc-req-card {
		flex: 1 1 calc(33.333% - 10px);
		min-width: 200px;
	}

	.bsc-training-grid {
		flex-direction: row;
	}

	.bsc-training-card {
		flex: 1;
	}

	.bsc-check-list-2col {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.bsc-h1 {
		font-size: 32px;
	}

	.bsc-h2 {
		font-size: 25px;
	}

	.bsc-sticky-cta {
		display: none !important; /* sticky CTA is a mobile-only convenience */
	}
}
