/* ============================================================
   FCW — Modular Service Components
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. SERVICE HERO (fcw-sv-hero)
   ──────────────────────────────────────────────────────────── */
.fcw-sv-hero {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #ede0f0 100%);
	font-family: 'Inter', sans-serif;
	overflow: hidden;
}

.fcw-sv-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.fcw-sv-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 1024px) {
	.fcw-sv-hero__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.fcw-sv-hero__badge {
	font-size: 0.875rem;
	font-weight: 600;
	color: #862780;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.fcw-sv-hero__heading {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #111827;
	line-height: 1.15;
	margin: 0 0 24px;
}

.fcw-sv-hero__desc {
	font-size: 1.125rem;
	color: #4b5563;
	line-height: 1.65;
	margin: 0 0 32px;
}

.fcw-sv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.fcw-sv-hero__btn-primary {
	background-color: #862780;
	color: #ffffff;
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fcw-sv-hero__btn-primary:hover {
	background-color: #6b1f66;
	box-shadow: 0 10px 20px rgba(134, 39, 128, 0.2);
}

.fcw-sv-hero__btn-secondary {
	background-color: transparent;
	border: 2px solid #862780;
	color: #862780;
	padding: 14px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.25s, color 0.25s, transform 0.25s;
}

.fcw-sv-hero__btn-secondary:hover {
	background-color: #862780;
	color: #ffffff;
}

.fcw-sv-hero__image-wrapper {
	width: 100%;
	transform: rotate(3deg);
	transition: transform 0.3s ease;
}

.fcw-sv-hero__image-wrapper:hover {
	transform: rotate(0deg);
}

.fcw-sv-hero__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ────────────────────────────────────────────────────────────
   2. SERVICE PROBLEMS (fcw-sv-problems)
   ──────────────────────────────────────────────────────────── */
.fcw-sv-problems {
	padding: 80px 0;
	background: #ffffff;
	font-family: 'Inter', sans-serif;
}

.fcw-sv-problems__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.fcw-sv-problems__header {
	text-align: center;
	margin-bottom: 56px;
}

.fcw-sv-problems__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.fcw-sv-problems__subtitle {
	font-size: 1.125rem;
	color: #4b5563;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.fcw-sv-problems__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.fcw-sv-problems__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.fcw-sv-problems__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.fcw-sv-problems__card {
	background-color: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s, box-shadow 0.25s;
}

.fcw-sv-problems__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.fcw-sv-problems__card-icon-box {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(134, 39, 128, 0.08);
	border-radius: 12px;
	margin-bottom: 24px;
}

.fcw-sv-problems__card-icon-box i {
	font-size: 1.75rem;
	color: #862780;
}

.fcw-sv-problems__card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111827;
	margin: 0 0 12px;
}

.fcw-sv-problems__card-desc {
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

/* ────────────────────────────────────────────────────────────
   3. SERVICE OFFERINGS GRID (fcw-sv-grid)
   ──────────────────────────────────────────────────────────── */
.fcw-sv-grid {
	padding: 80px 0;
	background: #f9fafb;
	font-family: 'Inter', sans-serif;
}

.fcw-sv-grid__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.fcw-sv-grid__header {
	text-align: center;
	margin-bottom: 56px;
}

.fcw-sv-grid__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.fcw-sv-grid__subtitle {
	font-size: 1.125rem;
	color: #4b5563;
	margin: 0;
}

.fcw-sv-grid__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.fcw-sv-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.fcw-sv-grid__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.fcw-sv-grid__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 16px;
	padding: 24px;
	text-decoration: none;
	transition: background-color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fcw-sv-grid__card:hover {
	background-color: #862780;
	border-color: #862780;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(134, 39, 128, 0.15);
}

.fcw-sv-grid__card-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.fcw-sv-grid__card-icon-box {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f3f4f6;
	border-radius: 8px;
	transition: background-color 0.25s;
}

.fcw-sv-grid__card:hover .fcw-sv-grid__card-icon-box {
	background-color: rgba(255, 255, 255, 0.2);
}

.fcw-sv-grid__card-icon-box i {
	font-size: 1.5rem;
	color: #862780;
	transition: color 0.25s;
}

.fcw-sv-grid__card:hover .fcw-sv-grid__card-icon-box i {
	color: #ffffff;
}

.fcw-sv-grid__card-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #111827;
	margin: 0;
	transition: color 0.25s;
}

.fcw-sv-grid__card:hover .fcw-sv-grid__card-title {
	color: #ffffff;
}

.fcw-sv-grid__card-arrow i {
	font-size: 1.25rem;
	color: #9ca3af;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 0.25s, transform 0.25s, color 0.25s;
}

.fcw-sv-grid__card:hover .fcw-sv-grid__card-arrow i {
	opacity: 1;
	transform: translateX(0);
	color: #ffffff;
}

/* ────────────────────────────────────────────────────────────
   4. SERVICE BENEFITS (fcw-sv-benefits)
   ──────────────────────────────────────────────────────────── */
.fcw-sv-benefits {
	padding: 80px 0;
	background: #ffffff;
	font-family: 'Inter', sans-serif;
}

.fcw-sv-benefits__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 64px;
	align-items: center;
}

@media (min-width: 1024px) {
	.fcw-sv-benefits__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

.fcw-sv-benefits__inner--reverse .fcw-sv-benefits__media {
	order: 0;
}

@media (min-width: 1024px) {
	.fcw-sv-benefits__inner--reverse .fcw-sv-benefits__media {
		order: 1;
	}
}

.fcw-sv-benefits__image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fcw-sv-benefits__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 24px;
}

.fcw-sv-benefits__desc {
	font-size: 1.125rem;
	color: #4b5563;
	line-height: 1.65;
	margin: 0 0 32px;
}

.fcw-sv-benefits__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.fcw-sv-benefits__list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.fcw-sv-benefits__list-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #862780;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 2px;
}

.fcw-sv-benefits__list-icon i {
	font-size: 0.875rem;
	color: #ffffff;
}

.fcw-sv-benefits__list-text {
	font-size: 1rem;
	color: #374151;
	margin: 0;
	line-height: 1.5;
}

/* Quote container box */
.fcw-sv-benefits__quote-container {
	border-left: 4px solid #862780;
	background-color: rgba(134, 39, 128, 0.05);
	padding: 24px;
	border-radius: 0 16px 16px 0;
}

.fcw-sv-benefits__quote-text {
	font-size: 0.9375rem;
	font-style: italic;
	color: #374151;
	line-height: 1.6;
	margin: 0 0 16px;
}

.fcw-sv-benefits__quote-author-box {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fcw-sv-benefits__quote-avatar {
	width: 40px;
	height: 40px;
	background-color: #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #4b5563;
	font-size: 0.875rem;
}

.fcw-sv-benefits__quote-author-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #111827;
	margin: 0 0 2px;
}

.fcw-sv-benefits__quote-author-role {
	font-size: 0.75rem;
	color: #6b7280;
}

/* ────────────────────────────────────────────────────────────
   5. SERVICE PROCESS (fcw-sv-process)
   ──────────────────────────────────────────────────────────── */
.fcw-sv-process {
	padding: 80px 0;
	background: #ffffff;
	font-family: 'Inter', sans-serif;
}

.fcw-sv-process__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.fcw-sv-process__header {
	text-align: center;
	margin-bottom: 56px;
}

.fcw-sv-process__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
}

.fcw-sv-process__subtitle {
	font-size: 1.125rem;
	color: #4b5563;
	margin: 0;
}

.fcw-sv-process__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 640px) {
	.fcw-sv-process__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.fcw-sv-process__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.fcw-sv-process__step {
	text-align: center;
}

.fcw-sv-process__step-number {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #862780 0%, #6b1f66 100%);
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 24px;
	box-shadow: 0 10px 20px rgba(134, 39, 128, 0.2);
}

.fcw-sv-process__step-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111827;
	margin: 0 0 12px;
}

.fcw-sv-process__step-desc {
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}
