.lang-switcher {
    text-transform: uppercase;
}

.lang-switcher a {
    text-decoration: none;
    color: white;
	font-weight: 400;
}

.step-number {
    background-color: #b83517;

    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 400;
    font-size: 24px;
    line-height: 50px;
    margin: 0 auto 20px auto;
}

.icon-symbol, [data-lucide] {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    vertical-align: middle;
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	color: #b83517;
	stroke-width: 1.0;
}


.compass-icon {
    width: 80px;
    height: 80px;
    color: #b83517;
    stroke-width: 1;
	margin-bottom: 1rem;
}

@keyframes subtleRotate {
	0% { transform: rotate(-10deg); }
	100% { transform: rotate(60deg); }
}

.compass-icon {
	transform: rotate(-10deg);
	animation: subtleRotate 5s ease-out 2s forwards;
}

@media screen and (max-width: 736px) {
	.compass-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 0.5rem;
	}
}

.faq-accordion {
	margin-bottom: 2rem;
}

.faq-item {
	margin-bottom: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	overflow: hidden;
}

.faq-question {
	background: #f8f9fa;
	padding: 1.5rem 3rem 1.5rem 1.5rem;
	cursor: pointer;
	position: relative;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 400;
	transition: background-color 0.3s ease;
	user-select: none;
}

.faq-question:hover {
	background: #ecf0f1;
}

.faq-question.active {
	background: #b83517;
	color: white;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background: white;
}

.faq-answer.active {
	max-height: 500px;
	padding: 1.5rem;
}

.faq-answer p {
	margin-bottom: 1rem;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer a {
    color: #b83517;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #8a2711;
}

#back-to-top {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: none !important;
	border: none !important;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 1000;
	padding: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	display: block;
	line-height: 0;
}

#back-to-top.visible {
	opacity: 0.4;
	visibility: visible;
}

#back-to-top:hover {
	opacity: 1;
	background: none !important;
	border: none !important;
}

#back-to-top svg {
	width: 2.5rem;
	height: 2.5rem;
	stroke: #b83517;
	stroke-width: 2;
	fill: none;
	display: block;
}

@media screen and (max-width: 736px) {
	#back-to-top {
		bottom: 1rem;
	}
	
	#back-to-top svg {
		width: 2rem;
		height: 2rem;
	}
}

.banner-questions.desktop-only {
    margin: 1.5rem 0 3.5rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.banner-questions.desktop-only p {
    margin: 0 0 0 0 !important;
    white-space: nowrap;
}

.banner-questions.desktop-only .divider {
    width: 2px;
    height: 4em;
    background: currentColor;
}

.banner-questions.mobile-only {
    margin: 1rem 0 1rem 0 !important;
    display: none;
    text-align: center;
}

.banner-questions.mobile-only p {
    margin: 0 0 0 0 !important;
}

@media screen and (max-width: 980px) {
    .banner-questions.desktop-only {
        display: none !important;
    }
    .banner-questions.mobile-only {
        display: block !important;
    }
}

.testimonials {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1;
}

.testimonial h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    margin: 0;
    max-width: none;
}

@media screen and (max-width: 980px) {
    .testimonials {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial {
        max-width: 35rem;
        margin: 0 auto;
    }
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }

.profile {
  transition: transform 0.3s ease;
}

.profile:hover {
  transform: translateY(-8px);
}

.spotlight {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.spotlight.visible {
  opacity: 1;
  transform: translateX(0);
}

.spotlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 53, 23, 0.3);
}

/* --- TRUST BANNER CONTAINER --- */
#trust-banner {
    background-color: #fafafa;
    padding: 1em 0 0em 0;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    min-height: 180px;
    opacity: 1 !important;
    visibility: visible !important; 
    display: block !important;
    z-index: 10;            
}

#trust-banner .minor-heading h3 {
    text-align: center;
    margin-bottom: 1.5em;        
    font-size: 0.85em;        
    font-weight: 700;
    color: #a0a0a0;           
    text-transform: uppercase;
    letter-spacing: 3px;       
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100px; 
    display: flex;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.5s ease-in;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.slider-container.loaded {
    opacity: 1 !important;
}

.slider-track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    animation: scroll 60s linear infinite;
}

/* .slider-track:hover {
    animation-play-state: paused;
} */

.client-logo {
    padding: 0 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    border: none;
}

.client-logo img {
    height: 50px;       
    width: auto;        
    max-width: 100px;   
	object-fit: contain;
    filter: grayscale(100%);   
    opacity: 0.6;              
    transition: all 0.4s ease; 
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;           
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
    .client-logo {
        padding: 0 30px;
    }
    .client-logo img {
        height: 30px; 
    }
    #trust-banner {
        padding: 1em 0 0em 0;
    }
}

/* LENIS RECOMMENDED CSS */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}