body {
    font-family: 'Inter', sans-serif;
    color: #111;
    background-color: #fff;
}

.bg-light-gray {
    background-color: #f5f5f7;
}

.neon-green-badge {
    background-color: #c7fb55;
    color: #000;
    padding: 3px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.try-free-btn {
    background: linear-gradient(to bottom, #1e1e1e, #000000);
    border-radius: 9999px;
    color: white;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
}

.plus-icon {
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    width: 20px;
    height: 20px;
}

.grid-cell {
    background-color: #eee;
    border-radius: 1px;
}

.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 110px;
    height: 110px;
    margin: 0 8px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.api-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 16px;
    border-radius: 20px;
    background-color: transparent;
    font-weight: 500;
    color: #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.get-started-btn {
    background-color: #000;
    color: white;
    border-radius: 9999px;
    padding: 10px 20px;
    font-weight: 300;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    color: #555;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    width: 100px;
}

.feature-icon {
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    background-color: #f5f5f5;
    border-radius: 999px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    position: relative;
    margin: 0 auto 30px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
}