/**
 * Captain Service Archive — /services/
 *
 * 1. Variables
 * 2. Base & Layout
 * 3. Hero
 * 4. Process Intro
 * 5. Services Grid
 * 6. SEO Content Block
 * 7. FAQ
 * 8. Final CTA & Empty State
 * 9. Accessibility & Motion
 * 10. Responsive
 *
 * @package alcaptin_theme
 */

/* ==========================================================================
   1. Variables
   ========================================================================== */

:root {
	--cas-font-family: 'Cairo', sans-serif;
	--cas-color-dark-blue: #003560;
	--cas-color-blue: #004e89;
	--cas-color-orange: #ff6b35;
	--cas-color-light-orange: #ff8c5a;
	--cas-color-white: #ffffff;
	--cas-color-muted-blue: #b0c4de;
	--cas-color-light-bg: #f8f9fa;
	--cas-color-text: #212529;
	--cas-color-text-light: var(--cas-color-white);
	--cas-border-radius: 12px;
	--cas-shadow: 0 4px 15px rgba(0, 53, 96, 0.07);
	--cas-shadow-hover: 0 8px 25px rgba(0, 53, 96, 0.1);
	--cas-transition: all 0.3s ease;
}

/* ==========================================================================
   2. Base & Layout
   ========================================================================== */

.capServiceArchive {
	font-family: var(--cas-font-family);
	background-color: var(--cas-color-white);
	color: var(--cas-color-text);
	line-height: 1.7;
	direction: rtl;
	overflow-x: hidden;
}

.capServiceArchive__container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.capServiceArchive__section {
	padding: 80px 0;
}

.capServiceArchive__section--dark {
	background-color: var(--cas-color-dark-blue);
	color: var(--cas-color-text-light);
}

.capServiceArchive__section--light {
	background-color: var(--cas-color-light-bg);
}

.capServiceArchive__section-title {
	font-size: clamp(1.75rem, 5vw, 2.25rem);
	font-weight: 800;
	color: var(--cas-color-dark-blue);
	text-align: center;
	margin-top: 0;
	margin-bottom: 48px;
}

/* ==========================================================================
   3. Hero
   ========================================================================== */

.capServiceArchive__hero {
	padding: 100px 0;
	text-align: center;
	position: relative;
	background: linear-gradient(145deg, var(--cas-color-dark-blue), var(--cas-color-blue));
	overflow: hidden;
}

.capServiceArchive__hero::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0) 70%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.capServiceArchive__hero-title {
	font-size: clamp(2rem, 6vw, 3rem);
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
	color: var(--cas-color-white);
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.capServiceArchive__hero-lead {
	font-size: 1.1rem;
	max-width: 650px;
	margin: 0 auto 2.5rem;
	color: var(--cas-color-muted-blue);
}

.capServiceArchive__cta-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.capServiceArchive__cta {
	display: inline-block;
	padding: 14px 32px;
	border-radius: var(--cas-border-radius);
	text-decoration: none;
	font-weight: 700;
	border: 2px solid transparent;
	transition: var(--cas-transition);
}

.capServiceArchive__cta--primary {
	background-color: var(--cas-color-orange);
	color: var(--cas-color-white);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.capServiceArchive__cta--secondary {
	background-color: transparent;
	color: var(--cas-color-white);
	border-color: var(--cas-color-muted-blue);
}

.capServiceArchive__trust-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.capServiceArchive__trust-chip {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	color: var(--cas-color-muted-blue);
}

/* ==========================================================================
   4. Process Intro
   ========================================================================== */
.capServiceArchive__process {
	border-bottom: 1px solid #e9ecef;
	background-color: var(--cas-color-light-bg);
}

.capServiceArchive__process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.capServiceArchive__process-item {
	position: relative;
}

.capServiceArchive__process-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -1rem;
	top: 30px;
	width: calc(100% - 40px);
	height: 2px;
	background: linear-gradient(to left, var(--cas-color-orange), var(--cas-color-light-orange), transparent);
	opacity: 0.3;
	transform: translate(50%, -50%) scaleX(-1);
}

.capServiceArchive__process-icon {
	font-size: 2.5rem;
	line-height: 1;
	margin-bottom: 1rem;
	display: inline-block;
	transition: var(--cas-transition);
}

.capServiceArchive__process-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
	color: var(--cas-color-dark-blue);
}

/* ==========================================================================
   5. Services Grid
   ========================================================================== */

.capServiceArchive__grid {
	display: grid;
	gap: 2.5rem;
}

.capServiceArchive__featured-card {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	background-color: var(--cas-color-white);
	border-radius: var(--cas-border-radius);
	box-shadow: var(--cas-shadow);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: var(--cas-transition);
}

.capServiceArchive__featured-img-wrap {
	position: relative;
	overflow: hidden;
}

.capServiceArchive__featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.capServiceArchive__featured-body {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.capServiceArchive__featured-title {
	font-size: clamp(1.5rem, 4vw, 1.75rem);
	font-weight: 800;
	color: var(--cas-color-dark-blue);
	margin: 0 0 1rem;
}

.capServiceArchive__featured-desc {
	margin: 0 0 2rem;
	font-size: 1rem;
	color: #495057;
}

.capServiceArchive__services-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.capServiceArchive__card {
	background-color: var(--cas-color-white);
	border-radius: var(--cas-border-radius);
	box-shadow: var(--cas-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--cas-transition);
	text-decoration: none;
	color: inherit;
}

.capServiceArchive__card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.capServiceArchive__card-img-wrap {
	position: relative;
	overflow: hidden;
}

.capServiceArchive__card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background-color: var(--cas-color-blue);
	transition: transform 0.4s ease;
}

.capServiceArchive__card-icon {
	position: absolute;
	bottom: -15px;
	left: 20px;
	background-color: var(--cas-color-orange);
	color: var(--cas-color-white);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	border: 3px solid var(--cas-color-white);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.capServiceArchive__card-body {
	padding: 1.5rem;
	flex-grow: 1;
}

.capServiceArchive__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: var(--cas-color-dark-blue);
}

.capServiceArchive__card-desc {
	margin: 0;
	font-size: 0.95rem;
	color: #495057;
	line-height: 1.6;
}

.capServiceArchive__card-footer {
	padding: 1rem 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid #e9ecef;
	margin-top: auto;
}

.capServiceArchive__card-cta {
	font-weight: 700;
	text-decoration: none;
	transition: var(--cas-transition);
	padding: 6px 12px;
	border-radius: 6px;
}

.capServiceArchive__card-cta--details {
	color: var(--cas-color-blue);
}

.capServiceArchive__card-cta--wa {
	color: #25D366;
}

/* ==========================================================================
   6. SEO Content Block
   ========================================================================== */

.capServiceArchive__seo-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}
.capServiceArchive__seo-content h2,
.capServiceArchive__seo-content h3 {
	font-weight: 700;
	color: var(--cas-color-dark-blue);
	margin-bottom: 1rem;
}
.capServiceArchive__seo-content p {
	margin-bottom: 1.5rem;
	color: #495057;
}

/* ==========================================================================
   7. FAQ
   ========================================================================== */

.capServiceArchive__faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.capServiceArchive__faq-item {
	border: 1px solid #dee2e6;
	border-radius: var(--cas-border-radius);
	background-color: var(--cas-color-white);
	transition: var(--cas-transition);
}
.capServiceArchive__faq-item:hover {
	border-color: var(--cas-color-muted-blue);
}

.capServiceArchive__faq-item[open] {
	border-color: var(--cas-color-blue);
}

.capServiceArchive__faq-item[open] summary {
	border-bottom: 1px solid #dee2e6;
	color: var(--cas-color-dark-blue);
}

.capServiceArchive__faq-question {
	padding: 1.25rem 1.5rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--cas-transition);
}

.capServiceArchive__faq-question::-webkit-details-marker {
	display: none;
}

.capServiceArchive__faq-question::after {
	content: '+';
	font-size: 1.75rem;
	color: var(--cas-color-orange);
	transition: transform 0.3s ease;
	margin-left: auto;
}

.capServiceArchive__faq-item[open] .capServiceArchive__faq-question::after {
	transform: rotate(45deg);
}

.capServiceArchive__faq-answer {
	padding: 1.5rem;
	line-height: 1.8;
	color: #495057;
}
.capServiceArchive__faq-answer p:first-child {
	margin-top: 0;
}
.capServiceArchive__faq-answer p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   8. Final CTA & Empty State
   ========================================================================== */

.capServiceArchive__final-cta {
	text-align: center;
	background: linear-gradient(145deg, var(--cas-color-dark-blue), var(--cas-color-blue));
}

.capServiceArchive__final-cta-title {
	font-size: clamp(1.75rem, 5vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 1rem;
	color: var(--cas-color-white);
}

.capServiceArchive__final-cta-lead {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	color: var(--cas-color-muted-blue);
}

.capServiceArchive__empty-state {
	text-align: center;
	padding: 60px 30px;
	background-color: var(--cas-color-light-bg);
	border: 2px dashed var(--cas-color-muted-blue);
	border-radius: var(--cas-border-radius);
}
.capServiceArchive__empty-state p {
	margin: 0 0 1.5rem;
	font-size: 1.1rem;
}
.capServiceArchive__empty-state a {
	color: var(--cas-color-orange);
	font-weight: 700;
}

/* ==========================================================================
   9. Accessibility & Motion
   ========================================================================== */

.capServiceArchive__cta:focus-visible,
.capServiceArchive__card:focus-visible,
.capServiceArchive__featured-card:focus-visible,
.capServiceArchive__faq-question:focus-visible,
.capServiceArchive__card-cta:focus-visible {
	outline: 3px solid var(--cas-color-orange);
	outline-offset: 3px;
	box-shadow: none;
}

@media (hover: hover) {
	.capServiceArchive__cta--primary:hover {
		background-color: var(--cas-color-light-orange);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
	}
	.capServiceArchive__cta--secondary:hover {
		background-color: var(--cas-color-muted-blue);
		border-color: var(--cas-color-muted-blue);
		color: var(--cas-color-dark-blue);
		transform: translateY(-2px);
	}
	.capServiceArchive__card:hover,
	.capServiceArchive__featured-card:hover {
		transform: translateY(-8px);
		box-shadow: var(--cas-shadow-hover);
	}
	.capServiceArchive__card:hover .capServiceArchive__card-img,
	.capServiceArchive__featured-card:hover .capServiceArchive__featured-img {
		transform: scale(1.05);
	}
	.capServiceArchive__process-item:hover .capServiceArchive__process-icon {
		transform: scale(1.1) rotate(-5deg);
	}
	.capServiceArchive__card-cta--details:hover {
		background-color: var(--cas-color-light-bg);
	}
	.capServiceArchive__card-cta--wa:hover {
		background-color: #e6f8ec;
	}
}

@media (prefers-reduced-motion: reduce) {
	:root {
		--cas-transition: none;
	}
	.capServiceArchive__cta,
	.capServiceArchive__card,
	.capServiceArchive__featured-card,
	.capServiceArchive__card-img,
	.capServiceArchive__featured-img,
	.capServiceArchive__process-icon,
	.capServiceArchive__faq-question::after {
		transition: none;
	}
}

/* ==========================================================================
   10. Responsive
   ========================================================================== */

@media (max-width: 992px) {
	.capServiceArchive__featured-card {
		grid-template-columns: 1fr;
	}
	.capServiceArchive__featured-img {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 768px) {
	.capServiceArchive__section {
		padding: 60px 0;
	}
	.capServiceArchive__process-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 1.5rem;
	}
	.capServiceArchive__process-item:not(:last-child)::after {
		display: none;
	}
	.capServiceArchive__services-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.capServiceArchive__process-list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.capServiceArchive__cta-bar {
		flex-direction: column;
		gap: 0.75rem;
	}
}


/* ==========================================================================
   1. Variables
   ========================================================================== */

:root {
	--cas-font-family: 'Cairo', sans-serif;
	--cas-color-brand: #004e89;
	--cas-color-accent: #ff6b35;
	--cas-color-dark: #001d3d;
	--cas-color-light: #f9f9f9;
	--cas-color-text: #333;
	--cas-color-text-light: #fff;
	--cas-border-radius: 8px;
	--cas-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   2. Base
   ========================================================================== */

.capServiceArchive {
	font-family: var(--cas-font-family);
	background-color: #fff;
	color: var(--cas-color-text);
	line-height: 1.7;
	direction: rtl;
}

.capServiceArchive .container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.capServiceArchive__section {
	padding: 60px 0;
}

.capServiceArchive__section--dark {
	background-color: var(--cas-color-dark);
	color: var(--cas-color-text-light);
}

.capServiceArchive__section--light {
	background-color: var(--cas-color-light);
}

.capServiceArchive__section-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--cas-color-brand);
	text-align: center;
	margin-top: 0;
	margin-bottom: 40px;
}

/* ==========================================================================
   3. Hero
   ========================================================================== */

.capServiceArchive__hero {
	background-color: var(--cas-color-dark);
	color: var(--cas-color-text-light);
	padding: 80px 0;
	text-align: center;
}

.capServiceArchive__hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.capServiceArchive__hero-lead {
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto 2rem;
	opacity: 0.9;
}

.capServiceArchive__cta-bar {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.capServiceArchive__cta {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--cas-border-radius);
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.2s, background-color 0.2s;
}

.capServiceArchive__cta--primary {
	background-color: var(--cas-color-accent);
	color: #fff;
}

.capServiceArchive__cta--secondary {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.capServiceArchive__cta:hover {
	transform: translateY(-2px);
}
.capServiceArchive__cta--primary:hover {
	background-color: #ff8552;
}
.capServiceArchive__cta--secondary:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.capServiceArchive__trust-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.capServiceArchive__trust-chip {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
}

/* ==========================================================================
   4. Process Intro
   ========================================================================== */
.capServiceArchive__process {
	border-bottom: 1px solid #eee;
}

.capServiceArchive__process-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.capServiceArchive__process-item {
	position: relative;
}

.capServiceArchive__process-item:not(:last-child)::after {
	content: '→';
	position: absolute;
	right: -1rem; /* Changed from left to right for RTL */
	top: 50%;
	transform: translateY(-50%) scaleX(-1); /* Flip the arrow for RTL */
	color: var(--cas-color-accent);
	font-size: 1.5rem;
	font-weight: bold;
}

.capServiceArchive__process-icon {
	font-size: 2.5rem;
	color: var(--cas-color-accent);
	margin-bottom: 0.5rem;
	display: block;
}

.capServiceArchive__process-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
	color: var(--cas-color-dark);
}

/* ==========================================================================
   5. Services Grid
   ========================================================================== */

.capServiceArchive__grid {
	display: grid;
	gap: 2rem;
}

.capServiceArchive__featured-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	background-color: #fff;
	border-radius: var(--cas-border-radius);
	box-shadow: var(--cas-shadow);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}
.capServiceArchive__featured-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.capServiceArchive__featured-img-wrap {
	position: relative;
}

.capServiceArchive__featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.capServiceArchive__featured-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.capServiceArchive__featured-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--cas-color-brand);
	margin: 0 0 1rem;
}

.capServiceArchive__featured-desc {
	margin: 0 0 1.5rem;
	font-size: 1rem;
}

.capServiceArchive__services-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.capServiceArchive__card {
	background-color: #fff;
	border-radius: var(--cas-border-radius);
	box-shadow: var(--cas-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
}
.capServiceArchive__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.capServiceArchive__card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.capServiceArchive__card-img-wrap {
	position: relative;
}

.capServiceArchive__card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background-color: var(--cas-color-brand);
}

.capServiceArchive__card-icon {
	position: absolute;
	bottom: -10px;
	left: 15px; /* Changed from right to left for RTL */
	background-color: var(--cas-color-accent);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	border: 2px solid #fff;
}

.capServiceArchive__card-body {
	padding: 1.5rem;
	flex-grow: 1;
}

.capServiceArchive__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--cas-color-brand);
}

.capServiceArchive__card-desc {
	margin: 0;
	font-size: 0.95rem;
}

.capServiceArchive__card-footer {
	padding: 0 1.5rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	border-top: 1px solid #eee;
	margin-top: auto;
	padding-top: 1rem;
}

.capServiceArchive__card-cta {
	font-weight: 700;
	text-decoration: none;
}

.capServiceArchive__card-cta--details {
	color: var(--cas-color-brand);
}

.capServiceArchive__card-cta--wa {
	color: #25D366;
	font-size: 0.9rem;
}

.capServiceArchive__empty-state {
	text-align: center;
	padding: 40px;
	background-color: var(--cas-color-light);
	border-radius: var(--cas-border-radius);
}

/* ==========================================================================
   6. SEO Content Block
   ========================================================================== */

.capServiceArchive__seo-content {
	max-width: 800px;
	margin: 0 auto;
}
.capServiceArchive__seo-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--cas-color-brand);
	margin-bottom: 1rem;
}

/* ==========================================================================
   7. FAQ
   ========================================================================== */

.capServiceArchive__faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.capServiceArchive__faq-item {
	border: 1px solid #e0e0e0;
	border-radius: var(--cas-border-radius);
}

.capServiceArchive__faq-item[open] summary {
	border-bottom: 1px solid #e0e0e0;
}

.capServiceArchive__faq-question {
	padding: 1rem 1.5rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.capServiceArchive__faq-question::-webkit-details-marker {
	display: none;
}

.capServiceArchive__faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--cas-color-accent);
	transition: transform 0.2s;
	margin-left: auto; /* Push the icon to the end in RTL */
}

.capServiceArchive__faq-item[open] .capServiceArchive__faq-question::after {
	transform: rotate(45deg);
}

.capServiceArchive__faq-answer {
	padding: 1rem 1.5rem;
}
.capServiceArchive__faq-answer p:first-child {
	margin-top: 0;
}
.capServiceArchive__faq-answer p:last-child {
	margin-bottom: 0;
}


/* ==========================================================================
   8. Final CTA
   ========================================================================== */

.capServiceArchive__final-cta {
	text-align: center;
}

.capServiceArchive__final-cta-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.capServiceArchive__final-cta-lead {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	opacity: 0.9;
}

/* ==========================================================================
   9. Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.capServiceArchive__hero-title {
		font-size: 2rem;
	}
	.capServiceArchive__section-title {
		font-size: 1.75rem;
	}
	.capServiceArchive__process-list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.capServiceArchive__process-item:not(:last-child)::after {
		content: '↓';
		left: 50%;
		right: auto; /* Reset right property */
		top: auto;
		bottom: -1rem;
		transform: translateX(-50%);
	}
	.capServiceArchive__featured-card {
		grid-template-columns: 1fr;
	}
	.capServiceArchive__featured-img {
		aspect-ratio: 16 / 9;
	}
}
