/* ==========================================================================
   Big Climb Partners — Brand Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Astra Parent Theme Layout Overrides
   --------------------------------------------------------------------------
   Astra's header.php wraps content in .ast-container which has display:flex
   and max-width constraints. We override these on our custom template pages
   so sections stack vertically and can go full-width.
   -------------------------------------------------------------------------- */
.bigclimb-home .ast-container,
.bigclimb-service .ast-container,
.bigclimb-contact .ast-container,
.bigclimb-about .ast-container,
.bigclimb-industry .ast-container,
.bigclimb-case-studies .ast-container,
.bigclimb-case-study .ast-container,
.bigclimb-blog .ast-container,
.bigclimb-team .ast-container,
.bigclimb-partners .ast-container,
.bigclimb-resources .ast-container,
.bigclimb-careers .ast-container,
.bigclimb-thank-you .ast-container {
	display: block !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.bigclimb-home #primary,
.bigclimb-service #primary,
.bigclimb-contact #primary,
.bigclimb-about #primary,
.bigclimb-industry #primary,
.bigclimb-case-studies #primary,
.bigclimb-case-study #primary,
.bigclimb-blog #primary,
.bigclimb-team #primary,
.bigclimb-partners #primary,
.bigclimb-resources #primary,
.bigclimb-careers #primary,
.bigclimb-thank-you #primary {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.bigclimb-home .site-content,
.bigclimb-service .site-content,
.bigclimb-contact .site-content,
.bigclimb-about .site-content,
.bigclimb-industry .site-content,
.bigclimb-case-studies .site-content,
.bigclimb-case-study .site-content,
.bigclimb-blog .site-content,
.bigclimb-team .site-content,
.bigclimb-partners .site-content,
.bigclimb-resources .site-content,
.bigclimb-careers .site-content,
.bigclimb-thank-you .site-content {
	padding-top: 0;
}

.bigclimb-home .entry-content,
.bigclimb-service .entry-content,
.bigclimb-contact .entry-content,
.bigclimb-about .entry-content,
.bigclimb-industry .entry-content,
.bigclimb-case-studies .entry-content,
.bigclimb-case-study .entry-content,
.bigclimb-blog .entry-content,
.bigclimb-team .entry-content,
.bigclimb-partners .entry-content,
.bigclimb-resources .entry-content,
.bigclimb-careers .entry-content,
.bigclimb-thank-you .entry-content {
	margin: 0;
}

/* Hide Astra's default page header/title on our custom templates */
.bigclimb-home .entry-header,
.bigclimb-service .entry-header,
.bigclimb-contact .entry-header,
.bigclimb-about .entry-header,
.bigclimb-industry .entry-header,
.bigclimb-case-studies .entry-header,
.bigclimb-case-study .entry-header,
.bigclimb-blog .entry-header,
.bigclimb-team .entry-header,
.bigclimb-partners .entry-header,
.bigclimb-resources .entry-header,
.bigclimb-careers .entry-header,
.bigclimb-thank-you .entry-header {
	display: none;
}

/* Ensure full-width sections break out of any remaining constraints */
.bc-hero,
.bc-section,
.bc-stats,
.bc-cta {
	display: block;
	width: 100%;
	clear: both;
}

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Brand Tokens)
   -------------------------------------------------------------------------- */
:root {
	--bc-blue-dark: #23386a;
	--bc-blue-secondary: #698eb2;
	--bc-orange: #df7c3c;
	--bc-charcoal: #233869;
	--bc-white: #ffffff;
	--bc-black: #000000;
	--bc-gray-light: #f7f8fa;
	--bc-gray-mid: #e4e8ed;
	--bc-gray-text: #5a6577;

	--bc-font-heading: 'Barlow Semi Condensed', sans-serif;
	--bc-font-body: 'Roboto', sans-serif;
	--bc-font-button: 'DM Sans', sans-serif;

	--bc-container: 1200px;
	--bc-radius: 20px;
	--bc-radius-btn: 50px;
	--bc-transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. Base Typography
   -------------------------------------------------------------------------- */
body {
	font-family: var(--bc-font-body);
	font-weight: 400;
	line-height: 1.65;
	color: var(--bc-charcoal);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bc-font-heading);
	font-weight: 600;
	color: var(--bc-blue-dark);
	line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 38px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
	margin-bottom: 1.25em;
	color: var(--bc-gray-text);
}

a {
	color: var(--bc-blue-dark);
	transition: color var(--bc-transition);
}

a:hover {
	color: var(--bc-orange);
}

/* --------------------------------------------------------------------------
   3. Layout — Container & Sections
   -------------------------------------------------------------------------- */
.bc-container {
	max-width: var(--bc-container);
	margin: 0 auto;
	padding: 0 30px;
}

.bc-section {
	padding: 100px 0;
}

.bc-section--gray {
	background-color: var(--bc-gray-light);
}

.bc-section--dark {
	background-color: var(--bc-charcoal);
	color: var(--bc-white);
}

.bc-section--dark h2,
.bc-section--dark h3,
.bc-section--dark h4,
.bc-section--dark p {
	color: var(--bc-white);
}

.bc-section--dark p {
	color: rgba(255, 255, 255, 0.8);
}

.bc-section__header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 60px;
}

.bc-section__header p {
	font-size: 18px;
}

.bc-section__label {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-orange);
	margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.bc-btn {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--bc-radius-btn);
	padding: 15px 30px;
	transition: all var(--bc-transition);
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1;
}

.bc-btn--primary {
	background-color: var(--bc-blue-dark);
	color: var(--bc-white);
	border-color: var(--bc-blue-dark);
}

.bc-btn--primary:hover {
	background-color: var(--bc-blue-secondary);
	border-color: var(--bc-blue-secondary);
	color: var(--bc-white);
}

.bc-btn--secondary {
	background-color: transparent;
	color: var(--bc-blue-dark);
	border-color: var(--bc-blue-dark);
}

.bc-btn--secondary:hover {
	background-color: var(--bc-blue-dark);
	color: var(--bc-white);
}

.bc-btn--orange {
	background-color: var(--bc-orange);
	color: var(--bc-white);
	border-color: var(--bc-orange);
}

.bc-btn--orange:hover {
	background-color: #c96a2f;
	border-color: #c96a2f;
	color: var(--bc-white);
}

.bc-btn--white {
	background-color: var(--bc-white);
	color: var(--bc-blue-dark);
	border-color: var(--bc-white);
}

.bc-btn--white:hover {
	background-color: transparent;
	color: var(--bc-white);
	border-color: var(--bc-white);
}

.bc-btn + .bc-btn {
	margin-left: 16px;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.bc-hero {
	position: relative;
	background-color: var(--bc-charcoal);
	color: var(--bc-white);
	text-align: center;
	padding: 120px 0 100px;
	overflow: hidden;
}

.bc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--bc-charcoal) 0%, var(--bc-blue-dark) 100%);
	opacity: 0.95;
	z-index: 1;
}

.bc-hero .bc-container {
	position: relative;
	z-index: 2;
}

.bc-hero h1 {
	color: var(--bc-white);
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.bc-hero__subtitle {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.bc-hero__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   6. Cards Grid
   -------------------------------------------------------------------------- */
.bc-grid {
	display: grid;
	gap: 30px;
}

.bc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bc-grid--4 { grid-template-columns: repeat(4, 1fr); }

.bc-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 40px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}

.bc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(35, 56, 106, 0.14);
}

.bc-card__icon {
	width: 60px;
	height: 60px;
	background-color: rgba(223, 124, 60, 0.1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--bc-orange);
	font-size: 28px;
}

.bc-card__title {
	font-size: 22px;
	margin-bottom: 12px;
}

.bc-card__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--bc-gray-text);
	margin-bottom: 20px;
}

.bc-card__link {
	font-family: var(--bc-font-button);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--bc-orange);
	text-decoration: none;
}

.bc-card__link:hover {
	color: var(--bc-blue-dark);
}

.bc-card__link::after {
	content: ' \2192';
}

/* --------------------------------------------------------------------------
   7. Stats Bar
   -------------------------------------------------------------------------- */
.bc-stats {
	background: linear-gradient(135deg, var(--bc-charcoal) 0%, var(--bc-blue-dark) 100%);
	padding: 80px 0;
}

.bc-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	text-align: center;
}

.bc-stats__number {
	font-family: var(--bc-font-heading);
	font-size: 52px;
	font-weight: 700;
	color: var(--bc-orange);
	line-height: 1;
	margin-bottom: 8px;
}

.bc-stats__label {
	font-family: var(--bc-font-button);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   8. Testimonials
   -------------------------------------------------------------------------- */
.bc-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bc-testimonial {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 40px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	position: relative;
}

.bc-testimonial::before {
	content: '\201C';
	font-family: var(--bc-font-heading);
	font-size: 80px;
	color: var(--bc-orange);
	opacity: 0.2;
	position: absolute;
	top: 10px;
	left: 25px;
	line-height: 1;
}

.bc-testimonial__text {
	font-size: 16px;
	font-style: italic;
	line-height: 1.7;
	color: var(--bc-gray-text);
	margin-bottom: 24px;
}

.bc-testimonial__author {
	font-family: var(--bc-font-heading);
	font-weight: 600;
	font-size: 16px;
	color: var(--bc-blue-dark);
}

.bc-testimonial__role {
	font-size: 14px;
	color: var(--bc-blue-secondary);
}

/* --------------------------------------------------------------------------
   9. Process Steps
   -------------------------------------------------------------------------- */
.bc-process {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	counter-reset: step;
}

.bc-process__step {
	text-align: center;
	position: relative;
	counter-increment: step;
}

.bc-process__step::before {
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--bc-orange);
	color: var(--bc-white);
	font-family: var(--bc-font-heading);
	font-size: 22px;
	font-weight: 700;
	margin: 0 auto 20px;
}

.bc-process__step::after {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(50% + 36px);
	width: calc(100% - 72px);
	height: 2px;
	background-color: var(--bc-gray-mid);
}

.bc-process__step:last-child::after {
	display: none;
}

.bc-process__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.bc-process__text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--bc-gray-text);
}

/* --------------------------------------------------------------------------
   10. FAQ Accordion
   -------------------------------------------------------------------------- */
.bc-faq__item {
	border-bottom: 1px solid var(--bc-gray-mid);
}

.bc-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 24px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--bc-font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--bc-blue-dark);
	text-align: left;
}

.bc-faq__question:hover {
	color: var(--bc-orange);
}

.bc-faq__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-left: 20px;
	position: relative;
	transition: transform var(--bc-transition);
}

.bc-faq__icon::before,
.bc-faq__icon::after {
	content: '';
	position: absolute;
	background-color: var(--bc-blue-dark);
	transition: transform var(--bc-transition);
}

.bc-faq__icon::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.bc-faq__icon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.bc-faq__item.is-open .bc-faq__icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.bc-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.bc-faq__item.is-open .bc-faq__answer {
	max-height: 500px;
}

.bc-faq__answer p {
	padding-bottom: 24px;
	font-size: 16px;
	line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. CTA Section
   -------------------------------------------------------------------------- */
.bc-cta {
	background: linear-gradient(135deg, var(--bc-charcoal) 0%, var(--bc-blue-dark) 100%);
	text-align: center;
	padding: 100px 0;
}

.bc-cta h2 {
	color: var(--bc-white);
	margin-bottom: 16px;
}

.bc-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto 40px;
}

.bc-cta__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   12. Contact Form
   -------------------------------------------------------------------------- */
.bc-contact-form {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 50px;
	box-shadow: 0 4px 30px rgba(35, 56, 106, 0.1);
}

.bc-contact-form label {
	display: block;
	font-family: var(--bc-font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--bc-blue-dark);
	margin-bottom: 8px;
}

.bc-contact-form input[type="text"],
.bc-contact-form input[type="email"],
.bc-contact-form input[type="tel"],
.bc-contact-form select,
.bc-contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--bc-gray-mid);
	border-radius: 10px;
	font-family: var(--bc-font-body);
	font-size: 15px;
	color: var(--bc-charcoal);
	transition: border-color var(--bc-transition);
	margin-bottom: 20px;
}

.bc-contact-form input:focus,
.bc-contact-form select:focus,
.bc-contact-form textarea:focus {
	outline: none;
	border-color: var(--bc-blue-secondary);
}

.bc-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.bc-contact-form .bc-btn {
	width: 100%;
}

.bc-contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.bc-contact-info__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.bc-contact-info__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: rgba(223, 124, 60, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bc-orange);
	font-size: 20px;
}

.bc-contact-info__label {
	font-family: var(--bc-font-heading);
	font-weight: 600;
	font-size: 16px;
	color: var(--bc-blue-dark);
	margin-bottom: 4px;
}

.bc-contact-info__value {
	font-size: 15px;
	color: var(--bc-gray-text);
}

.bc-contact-info__value a {
	color: var(--bc-gray-text);
	text-decoration: none;
}

.bc-contact-info__value a:hover {
	color: var(--bc-orange);
}

/* --------------------------------------------------------------------------
   13. Values Grid
   -------------------------------------------------------------------------- */
.bc-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.bc-value {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.bc-value__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--bc-blue-dark) 0%, var(--bc-blue-secondary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bc-white);
	font-size: 22px;
}

.bc-value__title {
	font-size: 20px;
	margin-bottom: 8px;
}

.bc-value__text {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Case Study Feature
   -------------------------------------------------------------------------- */
.bc-case-study {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.bc-case-study__label {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-orange);
	margin-bottom: 12px;
}

.bc-case-study__title {
	font-size: 32px;
	margin-bottom: 20px;
}

.bc-case-study__metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 30px 0;
}

.bc-case-study__metric-value {
	font-family: var(--bc-font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--bc-orange);
	line-height: 1;
}

.bc-case-study__metric-label {
	font-size: 14px;
	color: var(--bc-gray-text);
	margin-top: 4px;
}

.bc-case-study__visual {
	background: var(--bc-gray-light);
	border-radius: var(--bc-radius);
	padding: 60px;
	text-align: center;
	min-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --------------------------------------------------------------------------
   15. "What Happens Next" Steps
   -------------------------------------------------------------------------- */
.bc-next-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	counter-reset: nextstep;
}

.bc-next-step {
	text-align: center;
	counter-increment: nextstep;
}

.bc-next-step::before {
	content: counter(nextstep);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--bc-blue-dark);
	color: var(--bc-white);
	font-family: var(--bc-font-heading);
	font-size: 20px;
	font-weight: 700;
	margin: 0 auto 16px;
}

.bc-next-step__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.bc-next-step__text {
	font-size: 14px;
	color: var(--bc-gray-text);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   16. Service Detail Sections
   -------------------------------------------------------------------------- */
.bc-service-detail {
	border: 1px solid var(--bc-gray-mid);
	border-radius: var(--bc-radius);
	padding: 40px;
	margin-bottom: 30px;
}

.bc-service-detail__header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.bc-service-detail__title {
	font-size: 24px;
}

.bc-service-detail__includes {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.bc-service-detail__includes li {
	padding: 6px 0 6px 28px;
	position: relative;
	font-size: 15px;
	color: var(--bc-gray-text);
}

.bc-service-detail__includes li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--bc-orange);
	font-weight: 700;
}

.bc-service-detail__meta {
	display: flex;
	gap: 40px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--bc-gray-mid);
}

.bc-service-detail__meta-item {
	font-size: 14px;
}

.bc-service-detail__meta-label {
	font-weight: 700;
	color: var(--bc-blue-dark);
}

/* --------------------------------------------------------------------------
   17. About Page — Team Teaser & Partners
   -------------------------------------------------------------------------- */
.bc-team-teaser,
.bc-partners-teaser {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.bc-team-teaser__visual,
.bc-partners-teaser__visual {
	background: var(--bc-gray-light);
	border-radius: var(--bc-radius);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--bc-gray-text);
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 921px) {
	.bc-section {
		padding: 60px 0;
	}

	h1 { font-size: 38px; }
	h2 { font-size: 30px; }
	h3 { font-size: 24px; }

	.bc-hero {
		padding: 80px 0 60px;
	}

	.bc-hero h1 {
		font-size: 40px;
	}

	.bc-grid--3,
	.bc-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.bc-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.bc-testimonials__grid {
		grid-template-columns: 1fr;
	}

	.bc-process {
		grid-template-columns: repeat(3, 1fr);
	}

	.bc-process__step::after {
		display: none;
	}

	.bc-case-study {
		grid-template-columns: 1fr;
	}

	.bc-values {
		grid-template-columns: 1fr;
	}

	.bc-team-teaser,
	.bc-partners-teaser {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.bc-next-steps {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bc-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bc-blog-featured {
		grid-template-columns: 1fr;
	}

	.bc-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bc-pricing {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.bc-partner--featured {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bc-case-single__quote {
		padding: 30px;
	}
}

@media (max-width: 544px) {
	.bc-section {
		padding: 40px 0;
	}

	.bc-container {
		padding: 0 20px;
	}

	h1 { font-size: 30px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }

	.bc-hero {
		padding: 60px 0 50px;
	}

	.bc-hero h1 {
		font-size: 32px;
	}

	.bc-hero__subtitle {
		font-size: 17px;
	}

	.bc-grid--2,
	.bc-grid--3,
	.bc-grid--4 {
		grid-template-columns: 1fr;
	}

	.bc-stats__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bc-stats__number {
		font-size: 40px;
	}

	.bc-process {
		grid-template-columns: 1fr;
	}

	.bc-btn + .bc-btn {
		margin-left: 0;
		margin-top: 12px;
	}

	.bc-hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.bc-contact-form {
		padding: 30px 20px;
	}

	.bc-service-detail__meta {
		flex-direction: column;
		gap: 12px;
	}

	.bc-team-grid {
		grid-template-columns: 1fr;
	}

	.bc-blog-grid {
		grid-template-columns: 1fr;
	}

	.bc-filter-bar {
		gap: 8px;
	}

	.bc-filter-bar__btn {
		font-size: 12px;
		padding: 8px 16px;
	}

	.bc-case-single__quote {
		padding: 24px;
	}

	.bc-case-single__quote p {
		font-size: 17px;
	}
}

/* --------------------------------------------------------------------------
   19. Team Member Cards
   -------------------------------------------------------------------------- */
.bc-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bc-team-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 40px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	text-align: center;
}

.bc-team-card__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--bc-blue-dark) 0%, var(--bc-blue-secondary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--bc-white);
	font-family: var(--bc-font-heading);
	font-size: 42px;
	font-weight: 700;
}

.bc-team-card__name {
	font-size: 22px;
	margin-bottom: 4px;
}

.bc-team-card__title {
	font-family: var(--bc-font-button);
	font-size: 14px;
	font-weight: 500;
	color: var(--bc-orange);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.bc-team-card__bio {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.65;
	margin-bottom: 16px;
}

.bc-team-card__linkedin {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--bc-font-button);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--bc-blue-dark);
	text-decoration: none;
}

.bc-team-card__linkedin:hover {
	color: var(--bc-orange);
}

/* --------------------------------------------------------------------------
   20. Case Study Cards (Listing Page)
   -------------------------------------------------------------------------- */
.bc-case-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 35px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	transition: transform var(--bc-transition), box-shadow var(--bc-transition);
	display: flex;
	flex-direction: column;
}

.bc-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(35, 56, 106, 0.14);
}

.bc-case-card__tag {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-orange);
	margin-bottom: 12px;
}

.bc-case-card__title {
	font-size: 22px;
	margin-bottom: 12px;
}

.bc-case-card__excerpt {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.65;
	margin-bottom: 20px;
	flex-grow: 1;
}

.bc-case-card__metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.bc-case-card__metric {
	display: inline-block;
	font-size: 13px;
	color: var(--bc-charcoal);
	background: var(--bc-gray-light);
	border-radius: var(--bc-radius-btn);
	padding: 6px 14px;
}

.bc-case-card__metric strong {
	color: var(--bc-orange);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   21. Case Study Single Page
   -------------------------------------------------------------------------- */
.bc-case-single__meta {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-orange);
	margin-bottom: 12px;
}

.bc-case-single__sidebar {
	background: var(--bc-gray-light);
	border-radius: var(--bc-radius);
	padding: 40px;
}

.bc-case-single__sidebar h3 {
	font-size: 20px;
	margin-bottom: 24px;
}

.bc-case-single__metric {
	margin-bottom: 24px;
	text-align: center;
}

.bc-case-single__metric:last-child {
	margin-bottom: 0;
}

.bc-case-single__metric-value {
	font-family: var(--bc-font-heading);
	font-size: 42px;
	font-weight: 700;
	color: var(--bc-orange);
	line-height: 1;
}

.bc-case-single__metric-label {
	font-size: 14px;
	color: var(--bc-gray-text);
	margin-top: 4px;
}

.bc-case-single__quote {
	background: var(--bc-gray-light);
	border-left: 4px solid var(--bc-orange);
	border-radius: 0 var(--bc-radius) var(--bc-radius) 0;
	padding: 40px 50px;
	margin: 0;
}

.bc-case-single__quote p {
	font-size: 20px;
	font-style: italic;
	line-height: 1.7;
	color: var(--bc-charcoal);
	margin-bottom: 16px;
}

.bc-case-single__quote cite {
	font-style: normal;
	font-family: var(--bc-font-heading);
	font-weight: 600;
	font-size: 16px;
	color: var(--bc-blue-dark);
}

.bc-case-single__takeaways {
	counter-reset: takeaway;
	list-style: none;
	padding: 0;
}

.bc-case-single__takeaways li {
	counter-increment: takeaway;
	padding: 12px 0 12px 44px;
	position: relative;
	font-size: 16px;
	color: var(--bc-gray-text);
	line-height: 1.6;
	border-bottom: 1px solid var(--bc-gray-mid);
}

.bc-case-single__takeaways li:last-child {
	border-bottom: none;
}

.bc-case-single__takeaways li::before {
	content: counter(takeaway);
	position: absolute;
	left: 0;
	top: 12px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--bc-orange);
	color: var(--bc-white);
	font-family: var(--bc-font-heading);
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* --------------------------------------------------------------------------
   22. Blog Listing
   -------------------------------------------------------------------------- */
.bc-blog-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	margin-bottom: 60px;
}

.bc-blog-featured__image {
	min-height: 350px;
	background: var(--bc-gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bc-blog-featured__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-blog-featured__content {
	padding: 40px;
}

.bc-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bc-blog-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}

.bc-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(35, 56, 106, 0.14);
}

.bc-blog-card__image {
	height: 200px;
	background: var(--bc-gray-light);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bc-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-blog-card__placeholder {
	color: var(--bc-gray-mid);
}

.bc-blog-card__content {
	padding: 28px;
}

.bc-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: var(--bc-gray-text);
	margin-bottom: 12px;
}

.bc-blog-card__cat {
	font-family: var(--bc-font-button);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--bc-orange);
	font-size: 11px;
}

.bc-blog-card__title {
	font-size: 20px;
	margin-bottom: 10px;
}

.bc-blog-card__title a {
	color: var(--bc-blue-dark);
	text-decoration: none;
}

.bc-blog-card__title a:hover {
	color: var(--bc-orange);
}

.bc-blog-card__excerpt {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.6;
	margin-bottom: 16px;
}

.bc-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 60px;
}

.bc-pagination a,
.bc-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-family: var(--bc-font-heading);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--bc-transition);
}

.bc-pagination a {
	color: var(--bc-blue-dark);
	border: 1px solid var(--bc-gray-mid);
}

.bc-pagination a:hover {
	background-color: var(--bc-blue-dark);
	border-color: var(--bc-blue-dark);
	color: var(--bc-white);
}

.bc-pagination .current {
	background-color: var(--bc-orange);
	color: var(--bc-white);
	border: 1px solid var(--bc-orange);
}

/* --------------------------------------------------------------------------
   23. Resource Cards
   -------------------------------------------------------------------------- */
.bc-resource-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 35px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bc-resource-card__icon {
	width: 60px;
	height: 60px;
	background-color: rgba(223, 124, 60, 0.1);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--bc-orange);
}

.bc-resource-card__category {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-blue-secondary);
	margin-bottom: 12px;
}

.bc-resource-card__title {
	font-size: 20px;
	margin-bottom: 10px;
}

.bc-resource-card__text {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.6;
	margin-bottom: 24px;
	flex-grow: 1;
}

/* --------------------------------------------------------------------------
   24. Partner Cards
   -------------------------------------------------------------------------- */
.bc-partner-card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 35px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	text-align: center;
}

.bc-partner-card__logo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--bc-gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-family: var(--bc-font-heading);
	font-size: 32px;
	font-weight: 700;
	color: var(--bc-blue-dark);
}

.bc-partner-card__name {
	font-size: 20px;
	margin-bottom: 4px;
}

.bc-partner-card__type {
	display: inline-block;
	font-family: var(--bc-font-button);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--bc-blue-secondary);
	margin-bottom: 12px;
}

.bc-partner-card__desc {
	font-size: 15px;
	color: var(--bc-gray-text);
	line-height: 1.6;
	margin-bottom: 16px;
}

.bc-partner--featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 50px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	text-align: left;
}

.bc-partner--featured__logo {
	background: var(--bc-gray-light);
	border-radius: var(--bc-radius);
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--bc-gray-text);
}

/* --------------------------------------------------------------------------
   25. Filter Bar
   -------------------------------------------------------------------------- */
.bc-filter-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.bc-filter-bar__btn {
	font-family: var(--bc-font-button);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 10px 24px;
	border-radius: var(--bc-radius-btn);
	border: 2px solid var(--bc-gray-mid);
	background: transparent;
	color: var(--bc-gray-text);
	cursor: pointer;
	transition: all var(--bc-transition);
}

.bc-filter-bar__btn:hover {
	border-color: var(--bc-blue-dark);
	color: var(--bc-blue-dark);
}

.bc-filter-bar__btn--active {
	background-color: var(--bc-orange);
	border-color: var(--bc-orange);
	color: var(--bc-white);
}

.bc-filter-bar__btn--active:hover {
	background-color: #c96a2f;
	border-color: #c96a2f;
	color: var(--bc-white);
}

/* --------------------------------------------------------------------------
   26. Pricing / Packages
   -------------------------------------------------------------------------- */
.bc-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bc-pricing__card {
	background: var(--bc-white);
	border-radius: var(--bc-radius);
	padding: 40px 30px;
	box-shadow: 0 4px 24px rgba(35, 56, 106, 0.08);
	text-align: center;
	border: 2px solid transparent;
	transition: transform var(--bc-transition);
}

.bc-pricing__card:hover {
	transform: translateY(-4px);
}

.bc-pricing__card--featured {
	border-color: var(--bc-orange);
	position: relative;
}

.bc-pricing__card--featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--bc-font-button);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bc-white);
	background-color: var(--bc-orange);
	padding: 4px 20px;
	border-radius: var(--bc-radius-btn);
}

.bc-pricing__name {
	font-size: 22px;
	margin-bottom: 8px;
}

.bc-pricing__price {
	font-family: var(--bc-font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--bc-orange);
	margin-bottom: 8px;
}

.bc-pricing__period {
	font-size: 14px;
	color: var(--bc-gray-text);
	margin-bottom: 24px;
}

.bc-pricing__features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	text-align: left;
}

.bc-pricing__features li {
	padding: 10px 0 10px 28px;
	position: relative;
	font-size: 15px;
	color: var(--bc-gray-text);
	border-bottom: 1px solid var(--bc-gray-mid);
}

.bc-pricing__features li:last-child {
	border-bottom: none;
}

.bc-pricing__features li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--bc-orange);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   27. Thank You Page
   -------------------------------------------------------------------------- */
.bc-thank-you {
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
	padding: 40px 0;
}

.bc-thank-you__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba(223, 124, 60, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	color: var(--bc-orange);
}

.bc-thank-you__message h2 {
	margin-bottom: 16px;
}

.bc-thank-you__message p {
	font-size: 18px;
	max-width: 500px;
	margin: 0 auto 30px;
}

.bc-thank-you__links {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.bc-thank-you__links a {
	font-family: var(--bc-font-button);
	font-size: 14px;
	font-weight: 500;
	color: var(--bc-blue-dark);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
}

.bc-thank-you__links a:hover {
	color: var(--bc-orange);
	border-bottom-color: var(--bc-orange);
}

