.nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: #0284c7;
    transform: translateY(-2px);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.input-style {
    width: 100%;
    border: 1px solid #e5e7eb;
    padding: 12px;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}
.input-style:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.footer-link {
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: #38bdf8;
    transform: translateX(4px);
}
.feature-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.stat-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 28px 18px;
    backdrop-filter: blur(10px);
}
.stat-card h3 {
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
}
.stat-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}
.step-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 34px 22px 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.step-number {
    width: 38px;
    height: 38px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.step-card h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.step-card p {
    color: #6b7280;
    font-size: 0.9rem;
}
.cta-primary,
.cta-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 12px;
    font-weight: 700;
}
.cta-primary {
    background: #fff;
    color: #2563eb;
}
.cta-secondary {
    border: 2px solid #fff;
    color: #fff;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
}
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: #6b7280;
    font-size: 0.95rem;
}
