
/* Special Offer CTA Section */
#special-offer-cta {
	position: relative;
	margin-top: -100px;
	padding: 20px 0 60px 0;
	z-index: 10;
}

#special-offer-cta .container {
	padding-left: 15px;
	padding-right: 15px;
}

.offer-cta-card {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 20px;
	padding: 45px 50px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
	border: 2px solid #f39c12;
	position: relative;
	overflow: visible;
}

/* .offer-cta-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    border-radius: 18px 18px 0 0;
} */
.offer-badge {
	position: absolute;
	top: -15px;
	left: 50px;
	background: #fff;
	color: #f39c12;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 700;
	font-size: .75rem;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
	border: 2px solid #f39c12;
}

.offer-heading {
	color: #fff;
	font-weight: 700;
	font-size: 1.85rem;
	line-height: 1.3;
	margin-bottom: .5rem;
}

.offer-heading .highlight {
	color: #f39c12;
	text-shadow: 0 0 20px rgba(243, 156, 18, .5);
}

.offer-subtext {
	color: rgba(255, 255, 255, .9);
	font-size: 1.05rem;
}

.btn-offer {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	border: none;
	color: #fff;
	font-weight: 700;
	padding: 16px 40px;
	border-radius: 50px;
	transition: all .3s ease;
	box-shadow: 0 6px 20px rgba(243, 156, 18, .4);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.btn-offer:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 30px rgba(243, 156, 18, .6);
	color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
	#special-offer-cta {
		margin-top: -40px;
		padding: 20px 15px 40px 15px;
	}
	
	.offer-cta-card {
		padding: 35px 25px;
		text-align: center;
	}
	
	.offer-badge {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.offer-heading {
		font-size: 1.5rem;
	}
	
	.offer-subtext {
		font-size: .95rem;
		margin-bottom: 1rem !important;
	}
	
	.btn-offer {
		width: 100%;
	}
}

@media (max-width: 575px) {
	#special-offer-cta {
		padding: 20px 10px 40px 10px;
	}
	
	.offer-cta-card {
		padding: 30px 15px;
		border-radius: 15px;
	}
	
	.offer-heading {
		font-size: 1.3rem;
	}
	
	.btn-offer {
		padding: 14px 30px;
		font-size: .9rem;
	}
}

/* Hero Section */
#homehero {
	padding: 140px 0 90px 0;
	min-height: 600px;
	color: #fff;
	background: linear-gradient(135deg, rgba(248, 113, 62, .2) 0%, rgba(255, 140, 90, .85) 100%), url("https://cdn-ileicod.nitrocdn.com/nLKlsLabiulTGvuJovEgporLMugwwIFa/assets/images/optimized/rev-a1010ae/www.smasupport.us/wp-content/uploads/2024/03/testimonials-hero.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#homehero.nitro-lazy {
	background: none !important;
}

#homehero .homehero-inner {
	padding: 0 0 50px 0;
}

#homehero h1 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

#homehero p {
	color: #fff;
}

#homehero .homehero-content-left {
	padding-right: 20px;
	color: #fff;
}

/* Testimonial Badge */
.testimonial-badge-wrapper {
	animation: fadeInDown .6s ease-out;
}

.testimonial-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .95);
	color: var(--primary);
	font-size: .875rem;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: var(--shadow-lg);
	letter-spacing: .5px;
	transition: all var(--transition-medium) ease;
}

.testimonial-badge:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.testimonial-badge i {
	color: var(--accent);
	font-size: 1rem;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Testimonial Slider Container (Wraps everything) */
.testimonial-slider-hero {
	background: rgba(255, 255, 255, .15);
	border-radius: 16px;
	padding: 30px 25px 25px 25px;
	backdrop-filter: blur(15px);
	box-shadow: var(--shadow-xl);
	border: 1px solid rgba(255, 255, 255, .2);
	transition: all var(--transition-medium) ease;
}

.testimonial-slider-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* Video Slider (inside the container) */
.testimonial-video-slider {
	margin-bottom: 0;
}

/* Video Wrapper */
.testimonial-slide-hero .video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
	border: 2px solid rgba(255, 255, 255, .3);
	background: #000;
	transition: all var(--transition-medium) ease;
}

.testimonial-slide-hero .video-wrapper:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
	border-color: rgba(255, 255, 255, .5);
}

.testimonial-slide-hero .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

/* Controls Container (Title + Dots + Arrows) */
.testimonial-controls-hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	gap: 20px;
}

/* Testimonial Author */
.testimonial-author-hero {
	text-align: left;
	flex: 1;
	min-width: 0;
	color: #fff;
}

.testimonial-author-hero h4 {
	font-size: 1.15rem;
	margin-bottom: 2px;
	font-weight: 600;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
}

.testimonial-author-hero .testi-name {
	font-size: .85rem;
	opacity: .85;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
}

/* Pagination Dots */
.testi-pagination-hero {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testi-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	border: 2px solid rgba(255, 255, 255, .6);
	cursor: pointer;
	transition: all var(--transition-medium) ease;
}

.testi-dot:hover {
	background: rgba(255, 255, 255, .7);
	transform: scale(1.2);
}

.testi-dot.active {
	background: var(--secondary);
	border-color: var(--secondary);
	width: 12px;
	height: 12px;
	box-shadow: 0 0 10px rgba(13, 19, 27, .5);
}

/* Arrow Navigation */
.testi-arrows-hero {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-arrow-btn {
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, .3);
	color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-medium) ease;
	box-shadow: var(--shadow-md);
}

.testi-arrow-btn:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(13, 19, 27, .4);
}

.testi-arrow-btn:active {
	transform: scale(.95);
}

.testi-arrow-btn i {
	font-size: 1.2rem;
	transition: transform var(--transition-fast) ease;
	color: #fff;
}

.testi-arrow-btn:hover i {
	transform: translateX(0);
}

.testi-arrow-btn.prev-hero:hover i {
	transform: translateX(-3px);
}

.testi-arrow-btn.next-hero:hover i {
	transform: translateX(3px);
}

/* Mobile Adjustments for Hero */
@media (max-width: 991px) {
	#homehero {
		padding: 100px 0 70px 0;
	}
	
	#homehero .homehero-inner {
		padding: 50px 0 40px 0;
	}
	
	#homehero h1 {
		font-size: 2rem;
	}
	
	#homehero .homehero-content-left {
		text-align: center;
		padding-right: 0;
		margin-bottom: 40px;
	}
	
	#homehero .homehero-btns {
		justify-content: center;
	}
	
	.testimonial-badge {
		font-size: .75rem;
		padding: 8px 16px;
	}
	
	.testimonial-slider-hero {
		padding: 20px 15px 15px 15px;
	}
	
	.testimonial-controls-hero {
		flex-wrap: wrap;
		gap: 15px;
		padding-top: 15px;
		margin-top: 20px;
	}
	
	.testimonial-author-hero {
		flex: 1 1 100%;
		text-align: center;
		order: 1;
	}
	
	.testimonial-author-hero h4 {
		font-size: 1rem;
	}
	
	.testimonial-author-hero .testi-name {
		font-size: .85rem;
	}
	
	.testi-pagination-hero {
		flex: 1 1 auto;
		justify-content: center;
		gap: 8px;
		order: 2;
	}
	
	.testi-arrows-hero {
		flex: 0 0 auto;
		order: 3;
	}
	
	.testi-dot {
		width: 8px;
		height: 8px;
	}
	
	.testi-dot.active {
		width: 10px;
		height: 10px;
	}
	
	.testi-arrow-btn {
		width: 40px;
		height: 40px;
	}
	
	.testi-arrow-btn i {
		font-size: 1rem;
	}
}

/* Hero Lead Section */
#hero-lead {
	background-color: #fff;
	font-size: 1.1rem;
	color: var(--secondary);
}

/* Problem/Solution Section - Enhanced Card Design */
#problem-solution {
	padding: 80px 0;
}

#problem-solution h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

#problem-solution .lead {
	font-size: 1.15rem;
	color: var(--secondary);
	line-height: 1.6;
}

.problem-solution-card {
	background: #fff;
	border-radius: 15px;
	min-height: 400px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
	transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.problem-solution-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

/* Problem Face */
.problem-face {
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	opacity: 1;
	transition: opacity .4s ease;
	background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
}

.problem-icon-badge {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f8713e 0%, #ff8c5a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	box-shadow: 0 8px 20px rgba(248, 113, 62, .3);
}

.problem-icon-badge i, .problem-icon-badge svg {
	font-size: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	color: #fff;
}

.problem-title {
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--secondary);
	text-align: center;
	margin-bottom: 20px;
}

.hover-indicator {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: rgba(248, 113, 62, .1);
	border-radius: 25px;
	color: var(--primary);
	font-weight: 600;
	font-size: .9rem;
	transition: all .3s ease;
}

.problem-solution-card:hover .hover-indicator {
	background: var(--primary);
	color: #fff;
}

/* Solution Face */
.solution-face {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .4s ease;
	background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
	border: 3px solid var(--primary);
}

.problem-solution-card:hover .problem-face {
	opacity: 0;
}

.problem-solution-card:hover .solution-face {
	opacity: 1;
}

.solution-icon-badge {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f8713e 0%, #ff8c5a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 8px 20px rgba(248, 113, 62, .3);
}

.solution-icon-badge i, .solution-icon-badge svg {
	font-size: 2.25rem;
	width: 2.25rem;
	height: 2.25rem;
	color: #fff;
}

.solution-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 15px;
	text-align: center;
}

.solution-description {
	font-size: .95rem;
	color: var(--secondary);
	text-align: center;
	line-height: 1.6;
	margin-bottom: 20px;
}

.solution-benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	width: 100%;
}

.solution-benefits li {
	color: var(--secondary);
	font-size: .9rem;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-benefits li i {
	color: var(--primary);
	margin-right: 10px;
	font-size: 1.1rem;
}

.btn-solution {
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 8px;
	transition: all .3s ease;
	border: 2px solid var(--primary);
}

.btn-solution:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	color: #fff;
	transform: translateY(-2px);
}

/* Mobile: Click to reveal */
@media (max-width: 768px) {
	.problem-solution-card.active .problem-face {
		opacity: 0;
	}
	
	.problem-solution-card.active .solution-face {
		opacity: 1;
	}
	
	.problem-solution-card {
		min-height: 380px;
	}
	
	.problem-face, .solution-face {
		min-height: 380px;
		padding: 30px 20px;
	}
}

/* How It Works Section - Timeline Layout */
#how-it-works {
	background-color: #fff;
	padding: 60px 0;
}

#how-it-works h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

#how-it-works .lead {
	font-size: 1.1rem;
	color: var(--secondary);
	margin-bottom: 40px;
}

/* Timeline Structure */
.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 0;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	background: var(--primary);
	transform: translateX(-50%);
	z-index: 1;
}

.timeline-step {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.timeline-step:nth-child(odd) {
	flex-direction: row;
}

.timeline-step:nth-child(even) {
	flex-direction: row-reverse;
	text-align: right;
}

.timeline-marker {
	width: 20px;
	height: 20px;
	background: var(--primary);
	border: 4px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.timeline-content {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
	width: 45%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
	transition: all .3s ease;
}

.timeline-content:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
}

.timeline-icon {
	width: 60px;
	height: 60px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	margin-bottom: 10px;
	transition: background .3s ease;
}

.timeline-icon:hover {
	background: var(--secondary);
}

.timeline-content h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
	font-weight: 600;
	text-align: left;
}

.timeline-content p {
	font-size: .9rem;
	color: var(--secondary);
	margin-bottom: 5px;
	text-align: left;
}

/* CTA Section with Stats - Enhanced Design */
#cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

/* Decorative background elements */
.cta-decoration {
	position: absolute;
	border-radius: 50%;
	opacity: .15;
}

.cta-decoration-1 {
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, .1);
	top: -100px;
	right: -100px;
	animation: float 6s ease-in-out infinite;
}

.cta-decoration-2 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, .1);
	bottom: -80px;
	left: -80px;
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	
	50% {
		transform: translateY(-20px);
	}
}

/* Stat Cards */
.cta-stat-card {
	background: rgba(255, 255, 255, .15);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, .2);
	border-radius: 15px;
	padding: 35px 25px;
	transition: all .4s cubic-bezier(.4, 0, .2, 1);
	height: 100%;
}

.cta-stat-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, .25);
	border-color: rgba(255, 255, 255, .4);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.stat-icon-wrapper {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all .3s ease;
}

.cta-stat-card:hover .stat-icon-wrapper {
	background: #fff;
	transform: scale(1.1);
}

.stat-icon-wrapper i, .stat-icon-wrapper svg {
	font-size: 1.75rem;
	width: 1.75rem;
	height: 1.75rem;
	color: #fff;
	transition: color .3s ease;
}

.cta-stat-card:hover .stat-icon-wrapper i, .cta-stat-card:hover .stat-icon-wrapper svg {
	color: var(--primary);
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
	line-height: 1;
}

.stat-label {
	font-size: 1rem;
	color: rgba(255, 255, 255, .95);
	font-weight: 500;
}

/* Main CTA Button */
.cta-main-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 50px;
	background: #fff;
	color: var(--secondary);
	font-size: 1.25rem;
	font-weight: 700;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	transition: all .4s cubic-bezier(.4, 0, .2, 1);
	border: 3px solid #fff;
	position: relative;
	overflow: hidden;
}

.cta-main-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--secondary);
	transition: width .6s ease, height .6s ease;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.cta-main-button:hover::before {
	width: 400px;
	height: 400px;
}

.cta-main-button span, .cta-main-button i {
	position: relative;
	z-index: 1;
	transition: color .3s ease;
}

.cta-main-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
	color: #fff;
}

.cta-main-button:hover i {
	transform: translateX(5px);
}

/* Mobile Adjustments for CTA */
@media (max-width: 768px) {
	#cta-section {
		padding: 70px 0;
	}
	
	.cta-stat-card {
		padding: 25px 20px;
		margin-bottom: 15px;
	}
	
	.stat-number {
		font-size: 2.75rem;
	}
	
	.stat-label {
		font-size: .9rem;
	}
	
	.cta-main-button {
		padding: 16px 36px;
		font-size: 1.1rem;
	}
	
	.cta-decoration-1, .cta-decoration-2 {
		display: none;
	}
}

/* FAQ Section */
#faqs {
	background-color: #fff;
	padding: 60px 0;
}

#faqs h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

#faqs .lead {
	font-size: 1.1rem;
	color: var(--secondary);
	margin-bottom: 40px;
}

/* FAQ Section */
#faqs {
	background-color: #fff;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

#faqs h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--primary);
}

#faqs .lead {
	font-size: 1.1rem;
	color: var(--secondary);
	margin-bottom: 40px;
}

/* Decorative Element: Background Accent */
#faqs::before {
	content: "";
	position: absolute;
	top: -30px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: var(--primary);
	opacity: .1;
	border-radius: 50%;
	z-index: 0;
}

#faqs::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: -50px;
	width: 100px;
	height: 100px;
	background: var(--primary);
	opacity: .1;
	border-radius: 50%;
	z-index: 0;
}

/* FAQ Accordion Styles */
.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	z-index: 1;
}

.faq-item {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
	transition: all .3s ease;
}

.faq-item:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	transform: translateY(-2px);
}

.faq-question {
	background: #fff;
	border: none;
	width: 100%;
	text-align: left;
	padding: 15px 20px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background .3s ease, color .3s ease;
}

.faq-question:hover {
	background: #fff8f0;
	/* Light orange background on hover */
	color: var(--primary);
}

.faq-toggle {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" fill=\"%23f97316\"><path d=\"M12 16.5l-4-4h8l-4 4z\"/></svg>") no-repeat center center;
	background-size: contain;
	transition: transform .3s ease;
}

.faq-toggle.nitro-lazy {
	background: none !important;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

.faq-answer {
	display: none;
	padding: 15px 20px;
	font-size: .95rem;
	color: var(--secondary);
	background: #fff8f0;
	/* Light orange accent for answers */
	border-left: 4px solid var(--primary);
	border-radius: 0 0 8px 8px;
	transition: all .3s ease;
}

/* FAQ Interaction Hover */
.faq-item.active {
	border-left: 4px solid var(--primary);
	background: #fff8f0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	.faq-question {
		font-size: .95rem;
		padding: 12px 15px;
	}
	
	.faq-answer {
		font-size: .9rem;
		padding: 10px 15px;
	}
}

/* Timeline Mobile Adjustments */
@media (max-width: 768px) {
	.timeline::before {
		left: 20px;
	}
	
	.timeline-step {
		flex-direction: column;
		text-align: left !important;
		margin-left: 40px;
	}
	
	.timeline-step:nth-child(even) {
		flex-direction: column;
	}
	
	.timeline-marker {
		left: 20px;
	}
	
	.timeline-content {
		width: 100%;
		margin-top: 10px;
	}
	
	.timeline-icon {
		margin: 0 0 10px 0;
	}
	
	.timeline-step:nth-child(even) .timeline-content {
		text-align: left;
		align-items: flex-start;
	}
	
	.timeline-step:nth-child(even) .timeline-content h4, .timeline-step:nth-child(even) .timeline-content p {
		text-align: left;
	}
}

/* General Mobile Adjustments */
@media (max-width: 768px) {
	.hero-buttons a {
		display: block;
		margin-bottom: 10px;
	}
}
