/* --- Extracted Inline Styles --- */

/* Hero Search Icon */
.hero-search-icon-wrapper {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
}

/* Features List Animation */
.hero-features-list {
    margin-top: 1rem;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 0.9s;
}

/* Section Backgrounds */
.section-bg-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-bg-blue-dark {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

/* Process Section */
.process-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

.process-bg-blur-circle-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.process-bg-blur-circle-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.process-content-container {
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.process-heading {
    color: white !important;
    margin-bottom: 0.5rem;
}

.process-subheading {
    color: #fff !important;
    max-width: 600px;
    margin: 0 auto;
}

.process-step-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Testimonials */
.bg-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(#1e3a8a 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.testimonial-container {
    position: relative;
    z-index: 1;
}

/* CTA Floating Shapes */
.floating-shape-blur-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    filter: blur(40px);
}

.floating-shape-blur-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(30px);
}

.floating-shape-sq {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-cta-white {
    background: white;
    color: var(--primary-blue);
    font-weight: 700;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-departments-view-all {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Fonts & Text */
.text-primary-blue {
    color: var(--primary-blue);
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

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

.text-right {
    text-align: right;
}

.group:hover .group-link-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}