body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    position: relative;
}

.bg-gradient-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.service-icon-wrapper {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: #10b981;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

@keyframes blob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
}

.accordion-content.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.hero-inner-overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.8) 100%);
}

.check-list li {
    transition: transform 0.3s ease;
}

.check-list li:hover {
    transform: translateX(5px);
}

    margin-bottom: 1rem;
    line-height: 1.7;
}

.bp-prose h2,
.bp-prose h3 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.bp-prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.bp-prose a {
    color: #2563eb;
    text-decoration: underline;
}

.bp-form-success {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bp-form-error {
    color: #dc2626;
    margin-bottom: 1rem;
}

.bp-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.footer-heading {
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 0.25rem;
    background: #10b981;
    border-radius: 9999px;
}
