body {
    font-family: 'Inter', sans-serif;
}
.gradient-text {
    background: linear-gradient(90deg, #FF4500, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color: transparent; */
}
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #EF4444;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.solution-card {
     transition: all 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(60, 64, 67, 0.15);
    border-color: #EF4444;
}
/* Typing animation for AI response */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: pre-wrap;
    animation: typing 4s steps(150, end);
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@media (max-width: 640px) {
  .search-bar-text {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
} 